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

IsValidIPv6() public static method

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