DotNetWorkQueue.MessageInterceptorResult.MessageInterceptorResult C# (CSharp) Method

MessageInterceptorResult() public method

Initializes a new instance of the MessageInterceptorResult class.
public MessageInterceptorResult ( byte output, bool addToGraph, Type interceptorType ) : System
output byte The output.
addToGraph bool if set to true [the interceptor has injected itself].
interceptorType System.Type Type of the interceptor.
return System
        public MessageInterceptorResult(byte[] output, bool addToGraph, Type interceptorType)
        {
            Output = output;
            AddToGraph = addToGraph;
            BaseType = interceptorType;
        }
        /// <summary>
MessageInterceptorResult