C# 클래스 Castle.MicroKernel.Facilities.AbstractFacility

Base class for facilities.
상속: IFacility, IDisposable
파일 보기 프로젝트 열기: castleproject/Windsor

보호된 메소드들

메소드 설명
Dispose ( ) : void

Performs the tasks associated with freeing, releasing, or resetting the facility resources.

It can be overriden.

Init ( ) : void

The custom initialization for the Facility.

It must be overridden.

비공개 메소드들

메소드 설명
IDisposable ( ) : void
IFacility ( ) : void

Terminates the Facility, invokes the Dispose method and sets the Kernel to a null reference.

IFacility ( IKernel kernel, IConfiguration facilityConfig ) : void

Initializes the facility. First it performs the initialization common for all facilities, setting the Kernel and the FacilityConfig. After it, the Init method is invoked and the custom initilization is perfomed.

메소드 상세

Dispose() 보호된 메소드

Performs the tasks associated with freeing, releasing, or resetting the facility resources.
It can be overriden.
protected Dispose ( ) : void
리턴 void

Init() 보호된 추상적인 메소드

The custom initialization for the Facility.
It must be overridden.
protected abstract Init ( ) : void
리턴 void