예제 #1
0
 public void ResendPasswordAsync(QAManagement.AssessmentAgent.UserService.ResendPasswordRequest request, object userState)
 {
     if ((this.onBeginResendPasswordDelegate == null))
     {
         this.onBeginResendPasswordDelegate = new BeginOperationDelegate(this.OnBeginResendPassword);
     }
     if ((this.onEndResendPasswordDelegate == null))
     {
         this.onEndResendPasswordDelegate = new EndOperationDelegate(this.OnEndResendPassword);
     }
     if ((this.onResendPasswordCompletedDelegate == null))
     {
         this.onResendPasswordCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnResendPasswordCompleted);
     }
     base.InvokeAsync(this.onBeginResendPasswordDelegate, new object[] {
         request
     }, this.onEndResendPasswordDelegate, this.onResendPasswordCompletedDelegate, userState);
 }
예제 #2
0
 public void ResendPasswordAsync(QAManagement.AssessmentAgent.UserService.ResendPasswordRequest request)
 {
     this.ResendPasswordAsync(request, null);
 }
예제 #3
0
 public System.IAsyncResult BeginResendPassword(QAManagement.AssessmentAgent.UserService.ResendPasswordRequest request, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginResendPassword(request, callback, asyncState));
 }
예제 #4
0
 private System.IAsyncResult OnBeginResendPassword(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     QAManagement.AssessmentAgent.UserService.ResendPasswordRequest request = ((QAManagement.AssessmentAgent.UserService.ResendPasswordRequest)(inValues[0]));
     return(this.BeginResendPassword(request, callback, asyncState));
 }
예제 #5
0
 public QAManagement.AssessmentAgent.UserService.ResendPasswordResponse ResendPassword(QAManagement.AssessmentAgent.UserService.ResendPasswordRequest request)
 {
     return(base.Channel.ResendPassword(request));
 }