XmlTextWriter.Namespaces 属性

定义

获取或设置一个值,该值指示是否进行命名空间支持。

public:
 property bool Namespaces { bool get(); void set(bool value); };
public bool Namespaces { get; set; }
member this.Namespaces : bool with get, set
Public Property Namespaces As Boolean

属性值

Boolean

如果支持命名空间,则为 true;否则为 false

默认值为 true

例外

只能在处于 WriteState.Start 状态时更改此属性。

注解

备注

从 .NET Framework 2.0 开始,我们建议使用XmlWriter.Create方法和XmlWriterSettings类来创建XmlWriter实例,以利用新功能。

此属性确定编写器是否支持 XML 建议中的 W3C 命名空间。

适用于