C# Класс LinFu.IoC.CompositePreProcessor

Represents an IPreProcessor type that processes multiple IPreProcessor instances at once.
Наследование: IPreProcessor
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

CompositePreProcessor() публичный Метод

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.
Результат System.Collections.Generic

Preprocess() публичный Метод

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.
Результат void