Html Constructor |
| Name | Description | |
|---|---|---|
| Html(FormattableString) |
Creates a new Html from the given FormattableString.
Static parts of the template will be considered safe and won't be encoded while variable
parts (between '{' and '}') will be html encoded.
This constructor will use the current culture for formatting.
| |
| Html(IHtmlString) |
Creates a new Html from the given IHtmlString.
| |
| Html(IFormatProvider, FormattableString) |
Creates a new Html from the given FormattableString and IFormatProvider.
Static parts of the template will be considered safe and won't be encoded while variable
parts (between '{' and '}') will be html encoded.
|