DnsClient.NET

DnsClient.NET is a simple yet very powerful and high performant open source library for the .NET Framework to do DNS lookups (by MichaCo)

DnsClient.NET Alternatives

Similar projects and alternatives to DnsClient.NET

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better DnsClient.NET alternative or higher similarity.

DnsClient.NET reviews and mentions

Posts with mentions or reviews of DnsClient.NET. We have used some of these posts to build our list of alternatives and similar projects.
  • Send and Receive Emails in ASP.NET C#
    1 project | dev.to | 20 Sep 2022
    // in the top of the file // requires installation of https://www.nuget.org/packages/DnsClient using System.Net; using System.Net.Mail; using DnsClient; MailAddress to = new MailAddress("[email protected]"); MailAddress from = new MailAddress("[email protected]"); MailMessage message = new MailMessage(from, to); message.Subject = "See you Monday?"; message.Body = "Elizabeth, I didn't hear back from you. Let me know if we're still scheduled for Monday."; LookupClient lookup = new LookupClient(); IDnsQueryResponse response = lookup.Query("westminster.co.uk", QueryType.MX); foreach(DnsClient.Protocol.MxRecord record in response.Answers) { Console.WriteLine(ObjectDumper.Dump(record.Exchange)); SmtpClient client = new SmtpClient(record.Exchange, 25); try { client.Send(message); // if we reached this point, our email was sent and we can break the loop break; } catch(SmtpException ex) { Console.WriteLine(ex.ToString()); } }
  • MS Teams DNS App
    1 project | /r/dns | 8 Sep 2021
    Since there's .NET SDK for MS Teams apps and there's a ready-to-use nuget for DNS it's pretty straightforward for .NET devs who got the time. However, I don't see the real value of such apps when you can just share the link for the queries from sites such as DiG GUI or Dig web interface. If you really want to, you can just create a PowerApps to return the result from those sites without any coding

Stats

Basic DnsClient.NET repo stats
2
749
6.4
17 days ago

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com