Пример #1
0
 public string UpdateBluecatDescriptionDNS(string ObjectAddress, string Description)
 {
     try
     {
         Bluecat bluecat = new Bluecat("UpdateDNSforPNC");
         return(bluecat.UpdateDescription(ObjectAddress, Description));
     }
     catch (SoapException ex)
     {
         throw ex;
     }
 }
Пример #2
0
 public string DeleteBluecatDNS(string ObjectAddress, string ObjectName, bool IncludeStaging, bool Decommission)
 {
     try
     {
         Bluecat bluecat = new Bluecat("DeleteDNSforPNC");
         return(bluecat.Delete(ObjectAddress, ObjectName, IncludeStaging, false, Decommission));
     }
     catch (SoapException ex)
     {
         throw ex;
     }
 }
Пример #3
0
 public string SearchBluecatDNS(string ObjectAddress, string ObjectName)
 {
     try
     {
         Bluecat bluecat = new Bluecat("SearchDNSforPNC");
         return(bluecat.Search(ObjectAddress, ObjectName));
     }
     catch (SoapException ex)
     {
         throw ex;
     }
 }
Пример #4
0
 public string UpdateBluecatDNS(string ObjectAddress, string ObjectName, string Description, string MacAddress)
 {
     try
     {
         Bluecat bluecat = new Bluecat("UpdateDNSforPNC");
         return(bluecat.Update(ObjectAddress, ObjectName, Description, MacAddress));
     }
     catch (SoapException ex)
     {
         throw ex;
     }
 }