Click or drag to resize
ArtDatabanken.WebService.Client Namespace

[Missing <summary> documentation for "N:ArtDatabanken.WebService.Client"]

Classes
  ClassDescription
Public classDataSourceBase
Base class for all web service data sources.
Public classCode exampleWebTransaction
Class used to handle transaction that works over the web service interface. Make sure to always end the transaction. The transaction can be ended with a call to Commit(), Rollback() or Dispose().
Examples
Example pseudo code:
using (ITransaction transaction = userContext.StartTransaction())
{
    // Update data.

    transaction.Commit();
}
Interfaces
  InterfaceDescription
Public interfaceITransactionService
Interface to generic transaction handling in web services.