XhtmlTextWriter.AddRecognizedAttribute(String, String) Method

Definition

Adds an attribute to an XHTML element. The collection of element-specific attributes for the XhtmlTextWriter object is referenced by the ElementSpecificAttributes property.

public virtual void AddRecognizedAttribute(string elementName, string attributeName);

Parameters

elementName
String

The XHTML element to add the attribute to.

attributeName
String

The attribute to add.

Remarks

Use the AddRecognizedAttribute method to add an attribute to an XHTML element. The added attribute can then be recognized and rendered by the XhtmlTextWriter object. To prevent the writer from rendering a common attribute of an XHTML element, use the RemoveRecognizedAttribute method.

Applies to

Product Versions
.NET Framework 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