Exemple #1
0
 /// <remarks/>
 public void UpdateNameServerAsync(string sCLTRID, Credential credential, Domain[] domainArray, NS[] nsArray) {
     this.UpdateNameServerAsync(sCLTRID, credential, domainArray, nsArray, null);
 }
Exemple #2
0
 /// <remarks/>
 public void UpdateNameServerAsync(string sCLTRID, Credential credential, Domain[] domainArray, NS[] nsArray, object userState) {
     if ((this.UpdateNameServerOperationCompleted == null)) {
         this.UpdateNameServerOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateNameServerOperationCompleted);
     }
     this.InvokeAsync("UpdateNameServer", new object[] {
                 sCLTRID,
                 credential,
                 domainArray,
                 nsArray}, this.UpdateNameServerOperationCompleted, userState);
 }
Exemple #3
0
 public string UpdateNameServer(string sCLTRID, Credential credential, Domain[] domainArray, NS[] nsArray) {
     object[] results = this.Invoke("UpdateNameServer", new object[] {
                 sCLTRID,
                 credential,
                 domainArray,
                 nsArray});
     return ((string)(results[0]));
 }