C# 클래스 AK.F1.Timing.F1Timing.Proxy

Provides methods for creating AK.F1.Timing.IMessageReaders which read from proxied message streams.
파일 보기 프로젝트 열기: simoneb/ak-f1-timing

공개 메소드들

메소드 설명
Read ( IPAddress address ) : IMessageReader

Creates a message reader which reads from the proxy at the specified address.

Read ( IPEndPoint endpoint ) : IMessageReader

Creates a message reader which reads from the proxy at the specified endpoint.

ReadAndRecord ( IPAddress address, string path ) : IMessageReader

Creates a message reader which reads from the proxy at the specified address and records the messages to the specified path.

ReadAndRecord ( IPEndPoint endpoint, string path ) : IMessageReader

Creates a message reader which reads from the proxy at the specified endpoint and records the messages to the specified path.

메소드 상세

Read() 공개 정적인 메소드

Creates a message reader which reads from the proxy at the specified address.
/// Thrown when is . ///
public static Read ( IPAddress address ) : IMessageReader
address System.Net.IPAddress The proxy address.
리턴 IMessageReader

Read() 공개 정적인 메소드

Creates a message reader which reads from the proxy at the specified endpoint.
/// Thrown when is . ///
public static Read ( IPEndPoint endpoint ) : IMessageReader
endpoint System.Net.IPEndPoint The proxy endpoint.
리턴 IMessageReader

ReadAndRecord() 공개 정적인 메소드

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.
리턴 IMessageReader

ReadAndRecord() 공개 정적인 메소드

Creates a message reader which reads from the proxy at the specified endpoint 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 ( IPEndPoint endpoint, string path ) : IMessageReader
endpoint System.Net.IPEndPoint The proxy endpoint.
path string The path to save the messages to.
리턴 IMessageReader