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

IsValidIPv4() public static méthode

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