AK.F1.Timing.Playback.RecordingMessageReader.RecordingMessageReader C# (CSharp) Method

RecordingMessageReader() public method

Initialises a new instance of the RecordingMessageReader class and specified the inner message reader, the output stream and a value indicating if the decorator owns the output.
/// Thrown when or is /// . ///
public RecordingMessageReader ( IMessageReader inner, Stream output, bool ownsOutput ) : System
inner IMessageReader The inner message reader.
output Stream The output stream.
ownsOutput bool if the decorator owns the specified output /// stream, otherwise; .
return System
        public RecordingMessageReader(IMessageReader inner, Stream output, bool ownsOutput)
        {
            Guard.NotNull(inner, "inner");
            Guard.NotNull(output, "output");

            Initialise(inner, output, ownsOutput);
        }

Same methods

RecordingMessageReader::RecordingMessageReader ( IMessageReader inner, string path ) : System