Adf.Business.ValueObject.Html.Html C# (CSharp) Метод

Html() публичный Метод

Initializes a new instance of the Email class.
If the e-mail address could not be validated, a FormatException exception is thrown.
public Html ( string newvalue ) : System
newvalue string The e-mail address to use.
Результат System
        public Html(string newvalue)
        {
            //initialize
            _value = string.Empty;

            if (string.IsNullOrEmpty(newvalue)) return;

            _value = newvalue;
        }