コード例 #1
0
        public GetMessageResult GetMessage(PostDataOption option)
        {
            Handler handler = new Message.HandlerGetMessage(option);

            handler.Invoke();
            return((GetMessageResult)handler.Result);
        }
コード例 #2
0
        public Result Logout(PostDataOption option)
        {
            Handler handler = new Soway.Service.User.LogoutHandler(option);

            handler.Invoke();
            return(handler.Result);
        }
コード例 #3
0
ファイル: Authenticate.cs プロジェクト: lixiangyi/FoolFrame
 public Authenticate(PostDataOption postData)
 {
     this.PostData = postData;
 }
コード例 #4
0
 public GetNotifyResult GetNotify(PostDataOption option)
 {
     throw new NotImplementedException();
 }
コード例 #5
0
 public UserResult GetUserInfo(PostDataOption postdata)
 {
     throw new NotImplementedException();
 }
コード例 #6
0
 public AppResult GetAppInfo(PostDataOption postdata)
 {
     throw new NotImplementedException();
 }