WebUtility.HtmlDecode Method

Definition

Converts a string that has been HTML-encoded for HTTP transmission into a decoded string.

Overloads

HtmlDecode(String)

Converts a string that has been HTML-encoded for HTTP transmission into a decoded string.

HtmlDecode(String, TextWriter)

Converts a string that has been HTML-encoded into a decoded string, and sends the decoded string to a TextWriter output stream.

HtmlDecode(String)

Source:
WebUtility.cs
Source:
WebUtility.cs
Source:
WebUtility.cs

Converts a string that has been HTML-encoded for HTTP transmission into a decoded string.

C#
public static string HtmlDecode(string value);
C#
public static string? HtmlDecode(string? value);

Parameters

value
String

The string to decode.

Returns

A decoded string.

Remarks

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 &lt; and &gt; for HTTP transmission.

If the value parameter is null, then the returned decoded string is null. If the value parameter is an empty string, then the returned decoded string is an empty string.

See also

Applies to

.NET 10 i druge verzije
Proizvod Verzije
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0

HtmlDecode(String, TextWriter)

Source:
WebUtility.cs
Source:
WebUtility.cs
Source:
WebUtility.cs

Converts a string that has been HTML-encoded into a decoded string, and sends the decoded string to a TextWriter output stream.

C#
public static void HtmlDecode(string? value, System.IO.TextWriter output);
C#
public static void HtmlDecode(string value, System.IO.TextWriter output);

Parameters

value
String

The string to decode.

output
TextWriter

A TextWriter stream of output.

Exceptions

The output parameter cannot be null if the value parameter is not null.

Remarks

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 &lt; and &gt; for HTTP transmission.

See also

Applies to

.NET 10 i druge verzije
Proizvod Verzije
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1