C# 클래스 Deveel.Data.Context

The base implementation of a IContext that defines a scope where to services are stored.
This object is convenient for the implementation of other contexts, since it handles the initialization and disposal of the IScope that it wraps.
상속: IContext
파일 보기 프로젝트 열기: deveel/deveeldb

Private Properties

프로퍼티 타입 설명
InitScope void

공개 메소드들

메소드 설명
Dispose ( ) : void

보호된 메소드들

메소드 설명
Context ( ) : System

Constructs a new context that has no parent.

Context ( IContext parent ) : System

Constructs a context that is the child of the given other context.

The parent context is not required to be not null: if null then this context will have no parent.

Dispose ( bool disposing ) : void

비공개 메소드들

메소드 설명
InitScope ( ) : void

메소드 상세

Context() 보호된 메소드

Constructs a new context that has no parent.
protected Context ( ) : System
리턴 System

Context() 보호된 메소드

Constructs a context that is the child of the given other context.
The parent context is not required to be not null: if null then this context will have no parent.
protected Context ( IContext parent ) : System
parent IContext The optional parent context.
리턴 System

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

Dispose() 보호된 메소드

protected Dispose ( bool disposing ) : void
disposing bool
리턴 void