Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more

Class ConnectionScope

Helper class to control the scope of a connection, built for the "using-pattern".

Inheritance
System.Object
ConnectionScope
Implements
System.IDisposable
Namespace: EPiServer.Data.Providers.Internal
Assembly: EPiServer.Data.dll
Version: 12.0.3
Syntax
public sealed class ConnectionScope : Object, IAsyncConnectionScope, IConnectionScope, IDisposable

Constructors

ConnectionScope(IConnectionContext, Boolean)

Declaration
public ConnectionScope(IConnectionContext context, bool isOwner)
Parameters
Type Name Description
IConnectionContext context
System.Boolean isOwner

ConnectionScope(IConnectionContext, Boolean, Action)

Declaration
public ConnectionScope(IConnectionContext context, bool isOwner, Action completeAction)
Parameters
Type Name Description
IConnectionContext context
System.Boolean isOwner
System.Action completeAction

Properties

Context

Declaration
public IConnectionContext Context { get; }
Property Value
Type Description
IConnectionContext

IsOwner

Determines if the callee owns the connection/transaction and should close it.

Declaration
public bool IsOwner { get; }
Property Value
Type Description
System.Boolean

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
IAsyncConnectionContext

Implements

System.IDisposable

Extension Methods