XhtmlMobileTextWriter.WriteAttribute(String, String, Boolean) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
使用提供的属性和值将一个属性及其值写入当前元素中,如果指定,还会对值进行编码。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。
public:
override void WriteAttribute(System::String ^ attribute, System::String ^ value, bool encode);
public override void WriteAttribute (string attribute, string value, bool encode);
override this.WriteAttribute : string * string * bool -> unit
Public Overrides Sub WriteAttribute (attribute As String, value As String, encode As Boolean)
参数
- attribute
- String
属性名。
- value
- String
特性的值。
- encode
- Boolean
如果为 true
,则在写入之前对该值进行编码。
注解
如果值为 null
或空字符串,则不会写入任何属性,因为 XHTML 要求所有属性都具有值。
此方法主要由自定义移动页面和控件适配器的开发人员使用。