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; } }
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; } }
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; } }