XmlArrayItemAttribute.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 元素的命名空间。

示例

以下示例应用 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生成文档时,它会正确为每个数组项的元素名称添加前缀。

适用于