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

RecordedMessageReader() public method

Initialises a new instance of the RecordedMessageReader class and specifies the input file path.
/// Thrown when is . /// /// Thrown when an IO error occurs whilst creating the internal /// using the supplied arguments. ///
public RecordedMessageReader ( string path ) : System.IO
path string The input file path.
return System.IO
        public RecordedMessageReader(string path)
        {
            Initialise(new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Read), true);
        }

Same methods

RecordedMessageReader::RecordedMessageReader ( Stream input, bool ownsInput ) : System.IO