C# 클래스 LinFu.IoC.CompositePreProcessor

Represents an IPreProcessor type that processes multiple IPreProcessor instances at once.
상속: IPreProcessor
파일 보기 프로젝트 열기: philiplaureano/LinFu

공개 메소드들

메소드 설명
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