C# Class LinFu.IoC.CompositePreProcessor

Represents an IPreProcessor type that processes multiple IPreProcessor instances at once.
Inheritance: IPreProcessor
Afficher le fichier Open project: philiplaureano/LinFu

Méthodes publiques

Méthode Description
CompositePreProcessor ( IEnumerable preProcessors ) : System.Collections.Generic

Initializes the type using the given preProcessors.

Preprocess ( IServiceRequest request ) : void

A method that passes every request result made to the list of preprocessors.

Method Details

CompositePreProcessor() public méthode

Initializes the type using the given preProcessors.
public CompositePreProcessor ( IEnumerable preProcessors ) : System.Collections.Generic
preProcessors IEnumerable The list of instances that will be handled by this type.
Résultat System.Collections.Generic

Preprocess() public méthode

A method that passes every request result made to the list of preprocessors.
public Preprocess ( IServiceRequest request ) : void
request IServiceRequest The parameter that describes the context of the service request.
Résultat void