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

Standard implementation of IFilterFactory.
Inheritance: IServiceEnabledComponent, IFilterFactory
Afficher le fichier Open project: nats/castle-1.0.3-mono

Méthodes publiques

Méthode 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 méthode

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

Release() public méthode

Releases a filter instance
public Release ( IFilter filter ) : void
filter IFilter The filter instance
Résultat void

Service() public méthode

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