System.Utilities.Validation.IsValidHTTPURI C# (CSharp) Méthode

IsValidHTTPURI() public static méthode

Tests whether input string is a valid phone number.
public static IsValidHTTPURI ( string HTTPURI ) : bool
HTTPURI string Phone number to test.
Résultat bool
        public static bool IsValidHTTPURI(string HTTPURI)
        {
            return MatchHTTPURI.IsMatch(HTTPURI);
        }