XmlRootAttribute.Namespace 属性

定义

获取或设置 XML 根元素的命名空间。

public:
 property System::String ^ Namespace { System::String ^ get(); void set(System::String ^ value); };
public string Namespace { get; set; }
public string? Namespace { get; set; }
member this.Namespace : string with get, set
Public Property Namespace As String

属性值

String

XML 元素的命名空间。

示例

以下示例将 XmlRootAttribute 应用于类并设置 Namespace 属性。


[XmlRoot(Namespace="http://www.cpandl.com")]
public ref class Group{};
[XmlRoot(Namespace = "http://www.cpandl.com")]
public class Group
{
   // Insert the members of the Group class.
}
<XmlRoot(Namespace := "http://www.cpandl.com")> _
Public Class Group
    ' Insert the members of the Group class.
End Class

注解

Namespace 属性符合 XML 中名为命名空间的万维网联盟规范。

若要在 XML 文档中创建带前缀的命名空间,请创建包含 XmlSerializerNamespaces 所有前缀命名空间对的对象。 为每个 XmlArrayAttribute 设置的命名空间必须包含在对象中 XmlSerializerNamespacesXmlSerializer生成文档时,它会正确为每个数组项的元素名称添加前缀。

适用于

另请参阅