A WCF service which hosts a UnitOfWork making it available for distributed access as specified in the IDistributedUnitOfWorkContract.

Namespace:  Mindscape.LightSpeed.ServiceModel
Assembly:  Mindscape.LightSpeed.ServiceModel (in Mindscape.LightSpeed.ServiceModel.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
[ServiceBehaviorAttribute(InstanceContextMode = InstanceContextMode.Single, IncludeExceptionDetailInFaults = true)]
public class DistributedUnitOfWorkService : IDistributedUnitOfWorkContract, 
	IDisposable
Visual Basic (Declaration)
<ServiceBehaviorAttribute(InstanceContextMode := InstanceContextMode.Single, IncludeExceptionDetailInFaults := True)> _
Public Class DistributedUnitOfWorkService _
	Implements IDistributedUnitOfWorkContract, IDisposable

Remarks

This service can either be self hosted by starting it up via a ServiceHost, or it can be hosted through IIS .svc hosting.

Inheritance Hierarchy

System..::.Object
  Mindscape.LightSpeed.ServiceModel..::.DistributedUnitOfWorkService

See Also