ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / DNS functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
DNSDeleteAddress (Function)
In french: DNSSupprimeAdresse
Deletes a Name/IP Address relation from a DNS server.
Example
DNSResult is boolean
 
// Deletes an address
DNSResult = DNSDeleteAddress("testAp.towerqual.local.", "192.168.1.1", "Andromeda_2")
IF DNSResult = False THEN
Error(ErrorInfo(errFullDetails))
END
 
// Deletes all addresses
DNSResult = DNSDeleteAddress("testAp.towerqual.local.", "" , "Andromeda_2")
IF DNSResult = False THEN
Error(ErrorInfo(errFullDetails))
END
Syntax
<Result> = DNSDeleteAddress(<Name> [, <IP address> [, <DNS server> [, <User> [, <Password>]]]])
<Result>: Boolean
  • True if the deletion was performed,
  • False otherwise. ErrorInfo returns more information on the error.
<Name>: Unicode string
Name to delete from the DNS. This parameter has the following format: <Computer Name> + "." + <Domain>. Example: "testdoc.pcsoft.com"
<IP address>: Optional character string
IP address associated with the name to delete. This IP address can be a version 4 IP address (in the xxx.xxx.xxx.xxx format) or version 6 (in the aaaa:bbbb:cccc:dddd:eeee:ffff:gggg:hhhh:iiii:jjjj format).
If this parameter corresponds to an empty string (""), all the associations of the name with an IP address will be deleted.
<DNS server>: Optional character string
Address of the DNS server to update. The "IP Address/Name" association will be deleted from this server. By default, the current DNS server is used.
<User>: Optional Unicode character string
Name of the user used to sign the request.
<Password>: Optional Unicode character string
Password associated with the user to sign the request.
Remarks
  • This function supports the Linux and Windows DSN servers that do not require signed requests.
  • This function supports the Linux and Windows DSN servers that require signed requests.
Component: wd270com.dll
See also
Minimum version required
  • Version 16
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help