Aegis.Network.Session.Session C# (CSharp) Method

Session() public method

public Session ( ) : System
return System
        public Session()
        {
            Interlocked.Increment(ref NextSessionId);
            SessionId = NextSessionId;

            AwaitableMethod = new AwaitableMethod(this);
            MethodType = NetworkMethodType.AsyncResult;
            _method = new SessionMethodAsyncResult(this);
        }

Same methods

Session::Session ( NetworkMethodType methodType ) : System