AK.F1.Timing.F1Timing.Proxy.ReadAndRecord C# (CSharp) Method

ReadAndRecord() public static method

Creates a message reader which reads from the proxy at the specified address and records the messages to the specified path.
/// Thrown when or is /// . /// /// Thrown when is of zero length. /// /// Thrown when an IO error occurs whilst creating the output file. ///
public static ReadAndRecord ( IPAddress address, string path ) : IMessageReader
address System.Net.IPAddress The proxy address.
path string The path to save the messages to.
return IMessageReader
            public static IMessageReader ReadAndRecord(IPAddress address, string path)
            {
                return new RecordingMessageReader(Read(address), path);
            }

Same methods

F1Timing.Proxy::ReadAndRecord ( IPEndPoint endpoint, string path ) : IMessageReader
F1Timing.Proxy