AK.F1.Timing.Proxy.ProxyMessageReader.ProxyMessageReader C# (CSharp) Method

ProxyMessageReader() public method

Initialises a new instance of the ProxyMessageReader class and specifies the proxy endpoint.
/// Thrown when is . ///
public ProxyMessageReader ( IPEndPoint endpoint ) : System.IO
endpoint System.Net.IPEndPoint The proxy endpoint.
return System.IO
        public ProxyMessageReader(IPEndPoint endpoint)
        {
            Guard.NotNull(endpoint, "endpoint");

            _endpoint = endpoint;
        }