Feedback

C# - Prüfen ob URL gültig ist

Veröffentlicht von am 4/1/2007
(1 Bewertungen)
Prüft ob die URL aufgelößt werden kann.
/// <summary>
/// Check if the URL is valid.
/// </summary>
/// <param name="smtpHost">The URL.</param>
/// <returns></returns>
public static bool IsUrlValid(string smtpHost)
{
    bool response = false;
    try
    {
        IPHostEntry ipHost = Dns.Resolve(smtpHost);
        response = true;
    }
    catch (SocketException se)
    {
        response = false;
    }
    return response;
}
Abgelegt unter URL.

1 Kommentare zum Snippet

horstfh schrieb am 2/17/2015:
VB
Jetzt geht es so:

Function URLOk(ByVal Tx As String) As Boolean
Try
Dim hostInfo As System.Net.IPHostEntry _
= System.Net.Dns.GetHostEntry(Tx)
Return True
Catch
Return False
End Try
End Function
 

Logge dich ein, um hier zu kommentieren!