Coinium.Net.Server.Sockets.ConnectionEventArgs.ConnectionEventArgs C# (CSharp) Method

ConnectionEventArgs() public method

public ConnectionEventArgs ( IConnection connection ) : System
connection IConnection
return System
        public ConnectionEventArgs(IConnection connection)
        {
            if (connection == null)
                throw new ArgumentNullException("connection");

            this.Connection = connection;
        }