Ejemplo n.º 1
0
            public void send_GetPlayingUserInfo(string userId)
            {
                oprot_.WriteMessageBegin(new TMessage("GetPlayingUserInfo", TMessageType.Call, seqid_));
                GetPlayingUserInfo_args args = new GetPlayingUserInfo_args();

                args.UserId = userId;
                args.Write(oprot_);
                oprot_.WriteMessageEnd();
                oprot_.Transport.Flush();
            }
Ejemplo n.º 2
0
            public IAsyncResult send_GetPlayingUserInfo(AsyncCallback callback, object state, string userId)
            {
                oprot_.WriteMessageBegin(new TMessage("GetPlayingUserInfo", TMessageType.Call, seqid_));
                GetPlayingUserInfo_args args = new GetPlayingUserInfo_args();

                args.UserId = userId;
                args.Write(oprot_);
                oprot_.WriteMessageEnd();
                return(oprot_.Transport.BeginFlush(callback, state));
            }
Ejemplo n.º 3
0
            public void send_GetPlayingUserInfo(string appId, string userId)
      #endif
            {
                oprot_.WriteMessageBegin(new TMessage("GetPlayingUserInfo", TMessageType.Call, seqid_));
                GetPlayingUserInfo_args args = new GetPlayingUserInfo_args();

                args.AppId  = appId;
                args.UserId = userId;
                args.Write(oprot_);
                oprot_.WriteMessageEnd();
        #if SILVERLIGHT
                return(oprot_.Transport.BeginFlush(callback, state));
        #else
                oprot_.Transport.Flush();
        #endif
            }