Example #1
0
 /// <remarks/>
 public void InsertEncryptedTokenAsync(CHECK_WEBTOKEN webToken) {
     this.InsertEncryptedTokenAsync(webToken, null);
 }
Example #2
0
 /// <remarks/>
 public void InsertEncryptedTokenAsync(CHECK_WEBTOKEN webToken, object userState) {
     if ((this.InsertEncryptedTokenOperationCompleted == null)) {
         this.InsertEncryptedTokenOperationCompleted = new System.Threading.SendOrPostCallback(this.OnInsertEncryptedTokenOperationCompleted);
     }
     this.InvokeAsync("InsertEncryptedToken", new object[] {
                 webToken}, this.InsertEncryptedTokenOperationCompleted, userState);
 }
Example #3
0
 public Response InsertEncryptedToken(CHECK_WEBTOKEN webToken) {
     object[] results = this.Invoke("InsertEncryptedToken", new object[] {
                 webToken});
     return ((Response)(results[0]));
 }