AK.F1.Timing.Server.Proxy.ProxySession.ProxySession C# (CSharp) Метод

ProxySession() публичный Метод

Initialises a new instance of the AK.F1.Timing.Server.Proxy.ProxySession class and specifies the session identifier and client socket.
/// Thrown when is . ///
public ProxySession ( int id, Socket client ) : System
id int The session identifier.
client System.Net.Sockets.Socket The client .
Результат System
        public ProxySession(int id, Socket client)
        {
            Guard.NotNull(client, "client");

            _id = id;
            _client = client;
            _socketOperation.Completed += OnSocketOperationCompleted;
            _socketOperation.SetBuffer(_outputBuffer, 0, 0);
        }