Freigeben über


XmlSerializerNamespaces.Add-Methode

Fügt einem XmlSerializerNamespaces-Objekt ein Paar aus Präfix und Namespace hinzu.

Namespace: System.Xml.Serialization
Assembly: System.Xml (in system.xml.dll)

Syntax

'Declaration
Public Sub Add ( _
    prefix As String, _
    ns As String _
)
'Usage
Dim instance As XmlSerializerNamespaces
Dim prefix As String
Dim ns As String

instance.Add(prefix, ns)
public void Add (
    string prefix,
    string ns
)
public:
void Add (
    String^ prefix, 
    String^ ns
)
public void Add (
    String prefix, 
    String ns
)
public function Add (
    prefix : String, 
    ns : String
)

Parameter

  • prefix
    Das einem XML-Namespace zugeordnete Präfix.
  • ns
    Ein XML-Namespace.

Hinweise

Wenn XmlSerializer den Element- und Attributnamen in einem XML-Dokument vollständig angeben soll, müssen Sie die Paare aus Präfix und Namespace mithilfe von Add einem XmlSerializerNamespaces-Objekt hinzufügen.

Alle hinzugefügten Namespaces müssen der von www.w3.org angegebenen Spezifikation Namespaces in XML entsprechen.

Beispiel

Im folgenden Beispiel wird ein XmlSerializerNamespaces-Objekt erstellt. Diesem werden durch einen Aufruf der Add-Methode drei Paare aus Präfix und Namespace hinzugefügt.

Private Function AddNamespaces() As XmlSerializerNamespaces
    Dim xmlNamespaces As New XmlSerializerNamespaces()
    
    ' Add three prefix-namespace pairs.
    xmlNamespaces.Add("money", "http://www.cpandl.com")
    xmlNamespaces.Add("books", "http://www.cohowinery.com")
    xmlNamespaces.Add("software", "https://www.microsoft.com")
    
    Return xmlNamespaces
End Function
private XmlSerializerNamespaces AddNamespaces()
{
   XmlSerializerNamespaces xmlNamespaces = 
   new XmlSerializerNamespaces();

   // Add three prefix-namespace pairs.
   xmlNamespaces.Add("money", "http://www.cpandl.com");
   xmlNamespaces.Add("books", "http://www.cohowinery.com");
   xmlNamespaces.Add("software", "https://www.microsoft.com");

   return xmlNamespaces;
}
private:
   XmlSerializerNamespaces^ AddNamespaces()
   {
      XmlSerializerNamespaces^ xmlNamespaces =
         gcnew XmlSerializerNamespaces;
      
      // Add three prefix-namespace pairs.
      xmlNamespaces->Add( "money", "http://www.cpandl.com" );
      xmlNamespaces->Add( "books", "http://www.cohowinery.com" );
      xmlNamespaces->Add( "software", "https://www.microsoft.com" );

      return xmlNamespaces;
   }
private XmlSerializerNamespaces AddNamespaces()
{
    XmlSerializerNamespaces xmlNamespaces = new XmlSerializerNamespaces();

    // Add three prefix-namespace pairs.
    xmlNamespaces.Add("money", "http://www.cpandl.com");
    xmlNamespaces.Add("books", "http://www.cohowinery.com");
    xmlNamespaces.Add("software", "https://www.microsoft.com");
    return xmlNamespaces;     
} //AddNamespaces

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

XmlSerializerNamespaces-Klasse
XmlSerializerNamespaces-Member
System.Xml.Serialization-Namespace