Example #1
0
        public void S21Async(InMsg1 request, object userState)
        {
            if ((this.onBeginS21Delegate == null))
            {
                this.onBeginS21Delegate = new BeginOperationDelegate(this.OnBeginS21);
            }

            if ((this.onEndS21Delegate == null))
            {
                this.onEndS21Delegate = new EndOperationDelegate(this.OnEndS21);
            }

            if ((this.onS21CompletedDelegate == null))
            {
                this.onS21CompletedDelegate = new global::System.Threading.SendOrPostCallback(this.OnS21Completed);
            }

            base.InvokeAsync(this.onBeginS21Delegate,
                             new object[] { request },
                             this.onEndS21Delegate,
                             this.onS21CompletedDelegate,
                             userState);
        }
Example #2
0
 public void S21Async(InMsg1 request)
 {
     this.S21Async(request, null);
 }
Example #3
0
 public global::System.IAsyncResult BeginS21(InMsg1 request, global::System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginS21(request, callback, asyncState));
 }
Example #4
0
        private global::System.IAsyncResult OnBeginS21(object[] inValues, global::System.AsyncCallback callback, object asyncState)
        {
            InMsg1 request = (InMsg1)(inValues[0]);

            return(this.BeginS21(request, callback, asyncState));
        }
Example #5
0
 public OutMsg2 S21(InMsg1 request)
 {
     return(base.Channel.S21(request));
 }