コード例 #1
0
ファイル: imageProcService.cs プロジェクト: ykoshimizu/Demo
            public void send_Revert(byte[] image, int width, int height)
#endif
            {
                this.oprot_.WriteMessageBegin(new TMessage("Revert", TMessageType.Call, this.seqid_));
                Revert_args args = new Revert_args();

                args.Image  = image;
                args.Width  = width;
                args.Height = height;
                args.Write(this.oprot_);
                this.oprot_.WriteMessageEnd();
#if SILVERLIGHT
                return(oprot_.Transport.BeginFlush(callback, state));
      #else
                this.oprot_.Transport.Flush();
#endif
            }