|
The DNS Query is a component from the Clever Internet .NET Suite library. It can retrieve information about the host / domain by performing a general DNS lookup as specified in RFC 1034, RFC 1035, RFC 1183 and other documents.
- 100% managed code
- Retrieve any DNS record
- Resolve MX by email address (MX lookup)
- Resolve IP by host name and host by IP address (A and PTR lookups)
- Resolve Name Servers (NS lookup)
- Custom DNS Query Support
- Free one year upgrades and support
Using DNS Query component you can easily get Mail Servers collection associated with interested email address. DNS Query extracts all major Mail Server details: IP address, Preference, Time-to-live and many more.
dnsQuery1.DnsServer = “192.168.0.1”; dnsQuery1.ResolveMX(“John@domain.com”); foreach (MailServerInfo mx in dnsQuery1.MailServers) { txtMXInfo.Text += "Name: " + mx.Name + txtMXInfo.Text += "Preference: " + mx.Preference.ToString() + txtMXInfo.Text += "IP: " + mx.IPAddress + "\r\n"; } |
Please see the Demos code (DnsLookup) and also the indexed Help documentation provided with the Clever Internet .NET Suite installation to learn more about using this component in your application.
When Purchasing the Clever Internet .NET Suite you receive the full sources for all suite components and also free unlimited support.
|