Class ConnectionScope
Helper class to control the scope of a connection, built for the "using-pattern".
Inheritance
System.Object
ConnectionScope
Namespace: EPiServer.Data.Providers.Internal
Assembly: EPiServer.Data.dll
Version: 12.0.3Syntax
public sealed class ConnectionScope : Object, IAsyncConnectionScope, IConnectionScope, IDisposable
Constructors
ConnectionScope(IConnectionContext, Boolean)
Declaration
public ConnectionScope(IConnectionContext context, bool isOwner)
Parameters
Type | Name | Description |
---|---|---|
IConnection |
context | |
System. |
isOwner |
ConnectionScope(IConnectionContext, Boolean, Action)
Declaration
public ConnectionScope(IConnectionContext context, bool isOwner, Action completeAction)
Parameters
Type | Name | Description |
---|---|---|
IConnection |
context | |
System. |
isOwner | |
System. |
completeAction |
Properties
Context
Declaration
public IConnectionContext Context { get; }
Property Value
Type | Description |
---|---|
IConnection |
IsOwner
Determines if the callee owns the connection/transaction and should close it.
Declaration
public bool IsOwner { get; }
Property Value
Type | Description |
---|---|
System. |
Methods
Complete()
Complete is called when all actions on the connection has been completed for a scope
Declaration
public void Complete()
Dispose()
Declaration
public void Dispose()
Explicit Interface Implementations
IAsyncConnectionScope.Context
Declaration
IAsyncConnectionContext IAsyncConnectionScope.Context { get; }
Returns
Type | Description |
---|---|
IAsync |
Implements
System.IDisposable