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

RecordedMessageReader() public method

Initialises a new instance of the RecordedMessageReader class and specifies the input stream and a value indicating if the stream is owned by the reader.
public RecordedMessageReader ( Stream input, bool ownsInput ) : System.IO
input System.IO.Stream The input stream.
ownsInput bool if the reader owns the specified /// stream, otherwise; .
return System.IO
        public RecordedMessageReader(Stream input, bool ownsInput)
        {
            Guard.NotNull(input, "output");

            Initialise(input, ownsInput);
        }

Same methods

RecordedMessageReader::RecordedMessageReader ( string path ) : System.IO