C# Class Castle.MonoRail.Framework.Services.DefaultFilterFactory

Standard implementation of IFilterFactory.
Inheritance: IServiceEnabledComponent, IFilterFactory
ファイルを表示 Open project: nats/castle-1.0.3-mono

Public Methods

Method Description
Create ( Type filterType ) : IFilter

Creates a filter instance

Release ( IFilter filter ) : void

Releases a filter instance

Service ( IServiceProvider provider ) : void

Invoked by the framework in order to give a chance to obtain other services

Method Details

Create() public method

Creates a filter instance
public Create ( Type filterType ) : IFilter
filterType System.Type The filter's type
return IFilter

Release() public method

Releases a filter instance
public Release ( IFilter filter ) : void
filter IFilter The filter instance
return void

Service() public method

Invoked by the framework in order to give a chance to obtain other services
public Service ( IServiceProvider provider ) : void
provider IServiceProvider The service proviver
return void