XhtmlTextWriter.AddRecognizedAttribute(String, String) 方法

定义

将特性添加到 XHTML 元素中。 XhtmlTextWriter 对象的特定于元素的特性的集合由 ElementSpecificAttributes 属性引用。

public:
 virtual void AddRecognizedAttribute(System::String ^ elementName, System::String ^ attributeName);
public virtual void AddRecognizedAttribute (string elementName, string attributeName);
abstract member AddRecognizedAttribute : string * string -> unit
override this.AddRecognizedAttribute : string * string -> unit
Public Overridable Sub AddRecognizedAttribute (elementName As String, attributeName As String)

参数

elementName
String

要添加特性的 XHTML 元素。

attributeName
String

要添加的特性。

注解

使用该方法 AddRecognizedAttribute 将属性添加到 XHTML 元素。 然后,该对象可以识别和呈现 XhtmlTextWriter 添加的属性。 若要防止编写器呈现 XHTML 元素的通用属性,请使用 RemoveRecognizedAttribute 该方法。

适用于

另请参阅