Server.Misc.Email.IsValid C# (CSharp) Méthode

IsValid() public static méthode

public static IsValid ( string address ) : bool
address string
Résultat bool
		public static bool IsValid( string address )
		{
			if ( address == null || address.Length > 320 )
				return false;

			return _pattern.IsMatch( address );
		}