Ejemplo n.º 1
0
 public System.IAsyncResult BeginLogout(www.tannguyen.com.types.LogoutRequest request, System.AsyncCallback callback, object asyncState)
 {
     object[] _args = new object[1];
     _args[0] = request;
     System.IAsyncResult _result = base.BeginInvoke("Logout", _args, callback, asyncState);
     return(_result);
 }
Ejemplo n.º 2
0
 public void LogoutAsync(www.tannguyen.com.types.LogoutRequest request, object userState)
 {
     if ((this.onBeginLogoutDelegate == null))
     {
         this.onBeginLogoutDelegate = new BeginOperationDelegate(this.OnBeginLogout);
     }
     if ((this.onEndLogoutDelegate == null))
     {
         this.onEndLogoutDelegate = new EndOperationDelegate(this.OnEndLogout);
     }
     if ((this.onLogoutCompletedDelegate == null))
     {
         this.onLogoutCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnLogoutCompleted);
     }
     base.InvokeAsync(this.onBeginLogoutDelegate, new object[] {
         request
     }, this.onEndLogoutDelegate, this.onLogoutCompletedDelegate, userState);
 }
Ejemplo n.º 3
0
 public void LogoutAsync(www.tannguyen.com.types.LogoutRequest request)
 {
     this.LogoutAsync(request, null);
 }
Ejemplo n.º 4
0
 private System.IAsyncResult OnBeginLogout(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     www.tannguyen.com.types.LogoutRequest request = ((www.tannguyen.com.types.LogoutRequest)(inValues[0]));
     return(((IMainService)(this)).BeginLogout(request, callback, asyncState));
 }
Ejemplo n.º 5
0
 System.IAsyncResult IMainService.BeginLogout(www.tannguyen.com.types.LogoutRequest request, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginLogout(request, callback, asyncState));
 }