C# Class LinFu.IoC.CompositePreProcessor

Represents an IPreProcessor type that processes multiple IPreProcessor instances at once.
Inheritance: IPreProcessor
Exibir arquivo Open project: philiplaureano/LinFu

Public Methods

Method 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 method

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.
return System.Collections.Generic

Preprocess() public method

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.
return void