HtmlTextWriter.TagRightChar Field

Definition

Represents the closing angle bracket (>) of a markup tag.

C#
public const char TagRightChar;

Field Value

Examples

The following code example shows how to render the closing tag of a <table> element by making calls to overloads of the Write method. To render the final character of the tag, the code example uses the Write method with the TagRightChar field as a parameter.

This code example renders the following markup:

</table>

C#
// Write the closing tag of a table element.
writer.Write(HtmlTextWriter.EndTagLeftChars);
writer.Write("table");
writer.Write(HtmlTextWriter.TagRightChar);
writer.WriteLine();

Remarks

The TagRightChar field is used by the RenderBeginTag, WriteFullBeginTag, and WriteEndTag methods when writing markup tags.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 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

See also