System.Utilities.Validation.IsValidHTTPURI C# (CSharp) Method

IsValidHTTPURI() public static method

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