Inheritance: ISessionState
コード例 #1
0
ファイル: LoginSession.cs プロジェクト: puppt/GW2Emu
 // TODO: add whatever properties are needed in the login server per session here
 // but be careful not to introduce too much state!
 public LoginSession(Client client, IEventAggregator aggregator)
     : base(client, aggregator)
 {
     State = new HandshakeState();
 }
コード例 #2
0
ファイル: LoginSession.cs プロジェクト: ChunHungLiu/GW2Emu
        // TODO: add whatever properties are needed in the login server per session here
        // but be careful not to introduce too much state!


        public LoginSession(Client client, IEventAggregator aggregator) : base(client, aggregator)
        {
            State = new HandshakeState();
        }