WebUtility.HtmlDecode Method (String, TextWriter)
Converts a string that has been HTML-encoded into a decoded string, and sends the decoded string to a TextWriter output stream.
Namespace: System.Net
Assembly: System (in System.dll)
Parameters
- value
- Type: System.String
The string to decode.
- output
- Type: System.IO.TextWriter
A TextWriter stream of output.
| Exception | Condition |
|---|---|
| ArgumentNullException | The output parameter cannot be null if the value parameter is not null. |
If characters such as blanks and punctuation are passed in an HTTP stream, they might be misinterpreted at the receiving end. HTML encoding converts characters that are not allowed in HTML into character-entity equivalents; HTML decoding reverses the encoding. For example, when embedded in a block of text, the characters < and > are encoded as < and > for HTTP transmission.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.