Exemplo n.º 1
0
 /// <remarks/>
 public System.IAsyncResult BeginAddRecord(string UserName, string Password, DomainRecord d, System.AsyncCallback callback, object asyncState)
 {
     return(this.BeginInvoke("AddRecord", new object[] {
         UserName,
         Password,
         d
     }, callback, asyncState));
 }
Exemplo n.º 2
0
 public DnsResult DeleteRecord(string UserName, string Password, DomainRecord d)
 {
     object[] results = this.Invoke("DeleteRecord", new object[] {
         UserName,
         Password,
         d
     });
     return((DnsResult)(results[0]));
 }
Exemplo n.º 3
0
 public DnsResult UpdateRecord(string UserName, string Password, DomainRecord Old, DomainRecord New)
 {
     object[] results = this.Invoke("UpdateRecord", new object[] {
         UserName,
         Password,
         Old,
         New
     });
     return((DnsResult)(results[0]));
 }
Exemplo n.º 4
0
 /// <remarks/>
 public void DeleteRecordAsync(string UserName, string Password, DomainRecord d, object userState)
 {
     if ((this.DeleteRecordOperationCompleted == null))
     {
         this.DeleteRecordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteRecordOperationCompleted);
     }
     this.InvokeAsync("DeleteRecord", new object[] {
         UserName,
         Password,
         d
     }, this.DeleteRecordOperationCompleted, userState);
 }
Exemplo n.º 5
0
 /// <remarks/>
 public void DeleteRecordAsync(string UserName, string Password, DomainRecord d)
 {
     this.DeleteRecordAsync(UserName, Password, d, null);
 }
Exemplo n.º 6
0
 /// <remarks/>
 public void UpdateRecordAsync(string UserName, string Password, DomainRecord Old, DomainRecord New)
 {
     this.UpdateRecordAsync(UserName, Password, Old, New, null);
 }
Exemplo n.º 7
0
 /// <remarks/>
 public System.IAsyncResult BeginUpdateRecord(string UserName, string Password, DomainRecord Old, DomainRecord New, System.AsyncCallback callback, object asyncState)
 {
     return(this.BeginInvoke("UpdateRecord", new object[] {
         UserName,
         Password,
         Old,
         New
     }, callback, asyncState));
 }