C# Class Castle.ActiveRecord.Scopes.AbstractThreadScopeInfo

Base IThreadScopeInfo implementation. It's up to derived classes to provide a correct implementation of CurrentStack only
Inheritance: IThreadScopeInfo
Show file Open project: shosca/ActiveRecord

Public Methods

Method Description
GetRegisteredScope ( ) : ISessionScope

Gets the registered scope.

RegisterScope ( ISessionScope scope ) : void

Registers the scope.

UnRegisterScope ( ISessionScope scope ) : void

Unregister the scope.

Method Details

GetRegisteredScope() public method

Gets the registered scope.
public GetRegisteredScope ( ) : ISessionScope
return ISessionScope

RegisterScope() public method

Registers the scope.
public RegisterScope ( ISessionScope scope ) : void
scope ISessionScope The scope.
return void

UnRegisterScope() public method

Unregister the scope.
public UnRegisterScope ( ISessionScope scope ) : void
scope ISessionScope The scope.
return void