Adf.Business.ValueObject.Html.ToString C# (CSharp) Method

ToString() public method

Returns a string that represents the current Email.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return string.IsNullOrEmpty(_value) ? string.Empty : _value;
        }

Same methods

Html::ToString ( string format, IFormatProvider formatProvider ) : string