API Reference
Class
DnsWireUpdateTcp
Sends DNS UPDATE messages using TCP transport.
Inheritance
- Object
- DnsWireUpdateTcp
Methods
DeleteRecordAsync(System.String dnsServer, System.Int32 port, System.String zone, System.String name, DnsClientX.DnsRecordType type, System.Boolean debug, DnsClientX.Configuration endpointConfiguration, System.Threading.CancellationToken cancellationToken) #Sends a DNS UPDATE message to delete a record.
Parameters
- dnsServer System.String
- Server address.
- port System.Int32
- Server port.
- zone System.String
- Zone containing the record.
- name System.String
- Record name.
- type DnsClientX.DnsRecordType
- Record type.
- debug System.Boolean
- Whether debugging is enabled.
- endpointConfiguration DnsClientX.Configuration
- Endpoint settings.
- cancellationToken System.Threading.CancellationToken
- Token used to cancel the request.
Returns
Response from the DNS server.
UpdateRecordAsync(System.String dnsServer, System.Int32 port, System.String zone, System.String name, DnsClientX.DnsRecordType type, System.String data, System.Int32 ttl, System.Boolean debug, DnsClientX.Configuration endpointConfiguration, System.Threading.CancellationToken cancellationToken) #Sends a DNS UPDATE message to add or modify a record.
Parameters
- dnsServer System.String
- Server address.
- port System.Int32
- Server port.
- zone System.String
- Zone to update.
- name System.String
- Record name.
- type DnsClientX.DnsRecordType
- Record type.
- data System.String
- Record data.
- ttl System.Int32
- Record TTL.
- debug System.Boolean
- Whether debugging is enabled.
- endpointConfiguration DnsClientX.Configuration
- Endpoint settings.
- cancellationToken System.Threading.CancellationToken
- Token used to cancel the request.
Returns
Response from the DNS server.