System.ServiceModel.Dispatcher.InputOrReplyRequestProcessor.InputOrReplyRequestProcessor C# (CSharp) Method

InputOrReplyRequestProcessor() public method

public InputOrReplyRequestProcessor ( DispatchRuntime runtime, IChannel replyOrInput ) : System
runtime DispatchRuntime
replyOrInput IChannel
return System
		public InputOrReplyRequestProcessor (DispatchRuntime runtime, IChannel replyOrInput)
		{
			Init (runtime, replyOrInput);

			//initialization
			InitializeChain.AddHandler (new InitializingHandler ());

			//processing
			ProcessingChain.AddHandler (new PostReceiveRequestHandler ()).
							AddHandler (new OperationInvokerHandler (replyOrInput));

			//errors
			ErrorChain.AddHandler (new ErrorProcessingHandler (replyOrInput));

			//finalize
			FinalizationChain.AddHandler (new FinalizeProcessingHandler ());
		}