Aspectacular.EmailAddress.this C# (CSharp) Method

this() public method

Returns null if parsed string was not of the valid email format. Otherwise return a part of an email address.
public this ( EmailAddressParts part ) : string
part EmailAddressParts
return string
        public string this[EmailAddressParts part]
        {
            get { return this.Match.GetGroupValue(part.ToString()); }
        }