XmlArrayItemAttribute.Namespace-Eigenschaft
Ruft den Namespace des generierten XML-Elements ab oder legt diesen fest.
Namespace: System.Xml.Serialization
Assembly: System.Xml (in system.xml.dll)
Syntax
'Declaration
Public Property Namespace As String
'Usage
Dim instance As XmlArrayItemAttribute
Dim value As String
value = instance.Namespace
instance.Namespace = value
public string Namespace { get; set; }
public:
property String^ Namespace {
String^ get ();
void set (String^ value);
}
/** @property */
public String get_Namespace ()
/** @property */
public void set_Namespace (String value)
public function get Namespace () : String
public function set Namespace (value : String)
Eigenschaftenwert
Der Namespace des generierten XML-Elements.
Hinweise
Die Namespace-Eigenschaft entspricht der World Wide Web Consortium-Spezifikation (www.w3.org) "Namespaces in XML".
Zum Erstellen von Namespaces, die im XML-Dokument und den zugeordneten Präfixen verwendet werden, müssen Sie XmlSerializerNamespaces mit sämtlichen Paaren aus Präfix und Namespace erstellen. Der für das jeweilige XmlArrayAttribute festgelegte Namespace muss in XmlSerializerNamespaces enthalten sein. Beim Generieren des Dokuments durch XmlSerializer wird allen Elementnamen der Arrayelemente das richtige Präfix vorangestellt.
Beispiel
Im folgenden Beispiel wird ein XmlArrayItemAttribute zugewiesen und die Namespace-Eigenschaft festgelegt.
Public Class Transportation
' Sets the Namespace property.
<XmlArrayItem(GetType(Car), Namespace := "http://www.cpandl.com")> _
Public MyVehicles() As Vehicle
End Class 'Transportation
public class Transportation
{
// Sets the Namespace property.
[XmlArrayItem(typeof(Car), Namespace = "http://www.cpandl.com")]
public Vehicle[] MyVehicles;
}
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.
/** @attribute XmlArrayItem(Car.class,
Namespace = "http://www.cpandl.com")
*/
public Vehicle myVehicles[];
} //Transportation
Plattformen
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
.NET Compact Framework
Unterstützt in: 2.0, 1.0
Siehe auch
Referenz
XmlArrayItemAttribute-Klasse
XmlArrayItemAttribute-Member
System.Xml.Serialization-Namespace