コード例 #1
0
ファイル: Action102.cs プロジェクト: JoeChen999/scut
 public Action102(ActionGetter actionGetter)
     : base((short)102, actionGetter)
 {
     m_RequestPacket  = null;
     m_ResponsePacket = new LCGetLocalNotifications();
     m_UserId         = 0;
 }
コード例 #2
0
ファイル: Action102.cs プロジェクト: JoeChen999/scut
 public override bool GetUrlElement()
 {
     m_UserId        = actionGetter.GetSession().UserId;
     m_RequestPacket = ProtoBufUtils.Deserialize <CLGetLocalNotifications>((byte[])actionGetter.GetMessage());
     return(true);
 }