Microsoft.Protocols.TestSuites.Common.RFC822AddressParser.IsValidAddress C# (CSharp) 메소드

IsValidAddress() 공개 정적인 메소드

Verify whether the specified email address is compliant with RFC822 or not
public static IsValidAddress ( string emailaddress ) : bool
emailaddress string A string represent a actual email address
리턴 bool
        public static bool IsValidAddress(string emailaddress)
        {
            return addreg.IsMatch(emailaddress);
        }