[]
Decodes an HTML-encoded string and returns the decoded string.
public static string HtmlDecode(string s)
| Type | Name | Description |
|---|---|---|
| string | s | The HTML string to decode. |
| Type | Description |
|---|---|
| string | The decoded text. |
Decodes an HTML-encoded string and sends the resulting output to a TextWriter output stream.
public static void HtmlDecode(string s, TextWriter output)
| Type | Name | Description |
|---|---|---|
| string | s | The HTML string to decode |
| TextWriter | output | The TextWriter output stream containing the decoded string. |