Ejemplo n.º 1
0
 public string DeleteDNSforPNC(string ObjectAddress, string ObjectName, int intUser, bool boolDeleteFiles)
 {
     try
     {
         QIP qip = new QIP("DeleteDNSforPNC");
         return(qip.Delete(ObjectAddress, ObjectName, intUser, boolDeleteFiles));
     }
     catch (SoapException ex)
     {
         throw ex;
     }
 }
Ejemplo n.º 2
0
 public string SearchDNSforPNC(string ObjectAddress, string ObjectName, bool boolIsAlias, bool boolDeleteFiles)
 {
     try
     {
         QIP qip = new QIP("SearchDNSforPNC");
         return(qip.Search(ObjectAddress, ObjectName, boolIsAlias, boolDeleteFiles));
     }
     catch (SoapException ex)
     {
         throw ex;
     }
 }
Ejemplo n.º 3
0
 public string UpdateDNSforPNC(string ObjectAddress, string ObjectName, string ObjectClass, string Aliases, string DomainName, string NameService, string DynamicDNSUpdate, int intUser, int intAnswer, bool boolDeleteFiles)
 {
     try
     {
         QIP qip = new QIP("UpdateDNSforPNC");
         return(qip.Update(ObjectAddress, ObjectName, ObjectClass, Aliases, DomainName, NameService, DynamicDNSUpdate, intUser, intAnswer, boolDeleteFiles, true));
     }
     catch (SoapException ex)
     {
         throw ex;
     }
 }