AK.F1.Timing.F1Timing.Playback.Read C# (CSharp) Method

Read() public static method

Creates a playback reader which reads live-timing messages persisted to the specified file path.
/// Thrown when is . /// /// Thrown when does not exist. /// /// Thrown when an IO error occurs whilst opening the specified . ///
public static Read ( string path ) : IRecordedMessageReader
path string The path of the recorded live-timing message stream.
return IRecordedMessageReader
            public static IRecordedMessageReader Read(string path)
            {
                return new RecordedMessageReader(path);
            }
F1Timing.Playback