示例#1
0
 /// <remarks/>
 public void EncryptTextAsync(AuthorizationType Authorization, EncryptTextType parameters) {
     this.EncryptTextAsync(Authorization, parameters, null);
 }
示例#2
0
 /// <remarks/>
 public void EncryptTextAsync(AuthorizationType Authorization, EncryptTextType parameters, object userState) {
     if ((this.EncryptTextOperationCompleted == null)) {
         this.EncryptTextOperationCompleted = new System.Threading.SendOrPostCallback(this.OnEncryptTextOperationCompleted);
     }
     this.InvokeAsync("EncryptText", new object[] {
                 Authorization,
                 parameters}, this.EncryptTextOperationCompleted, userState);
 }
示例#3
0
 public EncryptTextResponseType EncryptText(AuthorizationType Authorization, EncryptTextType parameters) {
     object[] results = this.Invoke("EncryptText", new object[] {
                 Authorization,
                 parameters});
     return ((EncryptTextResponseType)(results[0]));
 }