DnsServerCollectionAdd Method (String, Int32) |
Adds a DNS server under the specified IP address and with a particular priority to the collection
and sorts the collection according to the elements priorities.
Namespace: MailBee.DnsMXAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public DnsServer Add(
string host,
int priority
)
Public Function Add (
host As String,
priority As Integer
) As DnsServer
Parameters
- host
- Type: SystemString
IP address of the DNS server to be added to the collection.
The value cannot be a null reference (Nothing in Visual Basic). - priority
- Type: SystemInt32
A preference of the DNS server. Lower values are preferred.
Return Value
Type:
DnsServerA reference to
DnsServer object which was created
based on the given parameter values and then added to the collection.
Exceptions Remarks It's recommended to add elements from higher priority to lower priority.
Thus, the elements will stay in the same order as they were added.
See Also