Aspectacular.EmailHelper.IsValid C# (CSharp) Méthode

IsValid() public static méthode

Same as EmailAddress, but handles null gracefully. Returns false if email is null.
public static IsValid ( this email ) : bool
email this
Résultat bool
        public static bool IsValid(this EmailAddress email)
        {
            return email != null && email.IsValid;
        }