XmlArrayItemAttribute.Namespace 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置生成的 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
属性值
生成的 XML 元素的命名空间。
示例
以下示例应用 XmlArrayItemAttribute 并设置属性 Namespace 。
public ref class Transportation
{
public:
// Sets the Namespace property.
[XmlArrayItem(Car::typeid,Namespace="http://www.cpandl.com")]
array<Vehicle^>^MyVehicles;
};
public class Transportation
{
// Sets the Namespace property.
[XmlArrayItem(typeof(Car), Namespace = "http://www.cpandl.com")]
public Vehicle[] MyVehicles;
}
Public Class Transportation
' Sets the Namespace property.
<XmlArrayItem(GetType(Car), Namespace := "http://www.cpandl.com")> _
Public MyVehicles() As Vehicle
End Class
注解
该 Namespace 属性符合 XML 中的万维网联盟规范命名空间。
若要创建要在 XML 文档和关联的前缀中使用的命名空间,必须创建包含 XmlSerializerNamespaces 所有前缀和命名空间对的命名空间。 为每个XmlArrayAttribute设置的命名空间必须包含在 .XmlSerializerNamespaces XmlSerializer生成文档时,它会正确为每个数组项的元素名称添加前缀。