Я пытаюсь использовать эту DLL: http://www.eggheadcafe.com/articles/20050129.asp, но не работает. я всегда получаю тайм-аут при запуске. Кто-нибудь знает любой хороший пример DLL или C #, как проверить, существует ли DNS MX для почты?
код:
private static bool CheckDnsEntry(string domain)
{
string[] dnsServer = DnsMx.GetMXRecords(domain);
if (dnsServer.Length > 0)
{
return true;
}
return false;
}
string[] emailparts = email.Split('@');
if (CheckDnsEntry(emailparts[1]))...
ОШИБКА:
Server Error in '/' Application.
Connection timeout
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.ComponentModel.Win32Exception: Connection timeout
Source Error:
Line 462: private static bool CheckDnsEntry(string domain)
Line 463: {
Line 464: string[] dnsServer = DnsMx.GetMXRecords(domain);
Line 465: if (dnsServer.Length > 0)
Line 466: {