HtmlTextWriter.WriteFullBeginTag(String) Method

Definition

Writes any tab spacing and the opening tag of the specified markup element to the output stream.

C#
public virtual void WriteFullBeginTag(string tagName);

Parameters

tagName
String

The element to write to the output stream.

Remarks

The WriteFullBeginTag method automatically writes the closing angle bracket (>) of the opening tag of the element, unlike the WriteBeginTag method, which does not write the closing angle bracket. Use WriteFullBeginTag for markup elements that have no attributes.

Applies to

Produkt Verzie
.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