C# Class LinFu.IoC.CompositePostProcessor

Represents an IPostProcessor type that processes multiple IPostProcessor instances at once.
Inheritance: IPostProcessor
Show file Open project: philiplaureano/LinFu

Public Methods

Method Description
PostProcess ( IServiceRequestResult result ) : void

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

Private Methods

Method Description
CompositePostProcessor ( IEnumerable postProcessors ) : System.Collections.Generic

Initializes the type using the given postProcessors.

Method Details

PostProcess() public method

A method that passes every request result made to the list of postprocessors.
public PostProcess ( IServiceRequestResult result ) : void
result IServiceRequestResult The instance that describes the result of the service request.
return void