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 and the output file path.
/// Thrown when or is /// . /// /// Thrown when an IO error occurs whilst creating the internal /// using the supplied arguments. ///
public RecordingMessageReader ( IMessageReader inner, string path ) : System
inner IMessageReader The inner message reader.
path string The output file path.
return System
        public RecordingMessageReader(IMessageReader inner, string path)
        {
            Guard.NotNull(inner, "inner");

            Initialise(inner, new FileStream(path, FileMode.Create, FileAccess.Write, FileShare.None), true);
        }

Same methods

RecordingMessageReader::RecordingMessageReader ( IMessageReader inner, Stream output, bool ownsOutput ) : System