XmlAttributes Classe

Definição

Representa uma coleção de objetos de atributos que controlam como serializam XmlSerializer e desserializam um objeto.

public ref class XmlAttributes
public class XmlAttributes
type XmlAttributes = class
Public Class XmlAttributes
Herança
XmlAttributes

Exemplos

O exemplo seguinte serializa uma instância de uma classe chamada Orchestra, que contém um único campo nomeado Instruments que devolve um array de Instrument objetos. Uma segunda classe chamada Brass herda da Instrument classe. O exemplo cria um XmlAttributes objeto para sobrescrever o Instrument campo — permitindo que o campo aceite Brass objetos — e adiciona o XmlAttributes objeto a uma instância da XmlAttributeOverrides classe.

using System;
using System.IO;
using System.Xml.Serialization;

public class Orchestra
{
   public Instrument[] Instruments;
}

public class Instrument
{
   public string Name;
}

public class Brass:Instrument
{
   public bool IsValved;
}

public class Run
{
    public static void Main()
    {
       Run test = new Run();
       test.SerializeObject("Override.xml");
       test.DeserializeObject("Override.xml");
    }

    public void SerializeObject(string filename)
    {
      /* Each overridden field, property, or type requires
      an XmlAttributes object. */
      XmlAttributes attrs = new XmlAttributes();

      /* Create an XmlElementAttribute to override the
      field that returns Instrument objects. The overridden field
      returns Brass objects instead. */
      XmlElementAttribute attr = new XmlElementAttribute();
      attr.ElementName = "Brass";
      attr.Type = typeof(Brass);

      // Add the element to the collection of elements.
      attrs.XmlElements.Add(attr);

      // Create the XmlAttributeOverrides object.
      XmlAttributeOverrides attrOverrides = new XmlAttributeOverrides();

      /* Add the type of the class that contains the overridden
      member and the XmlAttributes to override it with to the
      XmlAttributeOverrides object. */
      attrOverrides.Add(typeof(Orchestra), "Instruments", attrs);

      // Create the XmlSerializer using the XmlAttributeOverrides.
      XmlSerializer s =
      new XmlSerializer(typeof(Orchestra), attrOverrides);

      // Writing the file requires a TextWriter.
      TextWriter writer = new StreamWriter(filename);

      // Create the object that will be serialized.
      Orchestra band = new Orchestra();

      // Create an object of the derived type.
      Brass i = new Brass();
      i.Name = "Trumpet";
      i.IsValved = true;
      Instrument[] myInstruments = {i};
      band.Instruments = myInstruments;

      // Serialize the object.
      s.Serialize(writer,band);
      writer.Close();
   }

   public void DeserializeObject(string filename)
   {
      XmlAttributeOverrides attrOverrides =
         new XmlAttributeOverrides();
      XmlAttributes attrs = new XmlAttributes();

      // Create an XmlElementAttribute to override the Instrument.
      XmlElementAttribute attr = new XmlElementAttribute();
      attr.ElementName = "Brass";
      attr.Type = typeof(Brass);

      // Add the element to the collection of elements.
      attrs.XmlElements.Add(attr);

      attrOverrides.Add(typeof(Orchestra), "Instruments", attrs);

      // Create the XmlSerializer using the XmlAttributeOverrides.
      XmlSerializer s =
      new XmlSerializer(typeof(Orchestra), attrOverrides);

      FileStream fs = new FileStream(filename, FileMode.Open);
      Orchestra band = (Orchestra) s.Deserialize(fs);
      Console.WriteLine("Brass:");

      /* The difference between deserializing the overridden
      XML document and serializing it is this: To read the derived
      object values, you must declare an object of the derived type
      (Brass), and cast the Instrument instance to it. */
      Brass b;
      foreach(Instrument i in band.Instruments)
      {
         b = (Brass)i;
         Console.WriteLine(
         b.Name + "\n" +
         b.IsValved);
      }
   }
}
Imports System.IO
Imports System.Xml.Serialization

Public Class Orchestra
    Public Instruments() As Instrument
End Class

Public Class Instrument
    Public Name As String
End Class

Public Class Brass
    Inherits Instrument
    Public IsValved As Boolean
End Class


Public Class Run
    
    Public Shared Sub Main()
        Dim test As New Run()
        test.SerializeObject("Override.xml")
        test.DeserializeObject("Override.xml")
    End Sub    
    
    Public Sub SerializeObject(ByVal filename As String)
        ' Each overridden field, property, or type requires
        ' an XmlAttributes object. 
        Dim attrs As New XmlAttributes()
        
        ' Create an XmlElementAttribute to override the
        ' field that returns Instrument objects. The overridden field
        ' returns Brass objects instead. 
        Dim attr As New XmlElementAttribute()
        attr.ElementName = "Brass"
        attr.Type = GetType(Brass)
        
        ' Add the element to the collection of elements.
        attrs.XmlElements.Add(attr)
        
        ' Create the XmlAttributeOverrides object.
        Dim attrOverrides As New XmlAttributeOverrides()
        
        ' Add the type of the class that contains the overridden
        ' member and the XmlAttributes to override it with to the
        ' XmlAttributeOverrides object. 
        attrOverrides.Add(GetType(Orchestra), "Instruments", attrs)
        
        ' Create the XmlSerializer using the XmlAttributeOverrides.
        Dim s As New XmlSerializer(GetType(Orchestra), attrOverrides)
        
        ' Writing the file requires a TextWriter.
        Dim writer As New StreamWriter(filename)
        
        ' Create the object that will be serialized.
        Dim band As New Orchestra()
        
        ' Create an object of the derived type.
        Dim i As New Brass()
        i.Name = "Trumpet"
        i.IsValved = True
        Dim myInstruments() As Instrument = {i}
        band.Instruments = myInstruments
        
        ' Serialize the object.
        s.Serialize(writer, band)
        writer.Close()
    End Sub
    
    
    Public Sub DeserializeObject(ByVal filename As String)
        Dim attrOverrides As New XmlAttributeOverrides()
        Dim attrs As New XmlAttributes()
        
        ' Create an XmlElementAttribute to override the Instrument.
        Dim attr As New XmlElementAttribute()
        attr.ElementName = "Brass"
        attr.Type = GetType(Brass)
        
        ' Add the element to the collection of elements.
        attrs.XmlElements.Add(attr)
        
        attrOverrides.Add(GetType(Orchestra), "Instruments", attrs)
        
        ' Create the XmlSerializer using the XmlAttributeOverrides.
        Dim s As New XmlSerializer(GetType(Orchestra), attrOverrides)
        
        Dim fs As New FileStream(filename, FileMode.Open)
        Dim band As Orchestra = CType(s.Deserialize(fs), Orchestra)
        Console.WriteLine("Brass:")
        
        ' The difference between deserializing the overridden
        ' XML document and serializing it is this: To read the derived
        ' object values, you must declare an object of the derived type
        ' (Brass), and cast the Instrument instance to it. 
        Dim b As Brass
        Dim i As Instrument
        For Each i In  band.Instruments
            b = CType(i, Brass)
            Console.WriteLine(b.Name + ControlChars.Cr + _
                              b.IsValved.ToString())
        Next i
    End Sub
End Class

Observações

Criar o XmlAttributes é parte de um processo que sobrepõe a forma padrão como serializa XmlSerializer as instâncias de classe. Por exemplo, suponha que quer serializar um objeto criado a partir de uma DLL que tem uma fonte inacessível. Ao usar o XmlAttributeOverrides, pode aumentar ou controlar de outra forma como o objeto é serializado.

Os membros da XmlAttributes classe correspondem diretamente a uma família de classes de atributos que controlam a serialização. Por exemplo, a XmlText propriedade deve ser definida para , XmlTextAttributeo que permite sobrepor a serialização de um campo ou propriedade instruindo o XmlSerializer a serializar o valor da propriedade como texto XML. Para uma lista completa de atributos que controlam a serialização, veja o XmlSerializer.

Para mais detalhes sobre a utilização do XmlAttributeOverrides com a XmlAttributes classe, veja Como: Especificar um Nome Alternativo de Elemento para um Fluxo XML.

Construtores

Name Description
XmlAttributes()

Inicializa uma nova instância da XmlAttributes classe.

XmlAttributes(ICustomAttributeProvider)

Inicializa uma nova instância da XmlAttributes classe e personaliza a forma como serializa XmlSerializer e desserializa um objeto.

Propriedades

Name Description
XmlAnyAttribute

Obtém ou define o XmlAnyAttributeAttribute para sobreescrever.

XmlAnyElements

Faz com que a coleção de XmlAnyElementAttribute objetos seja sobreposta.

XmlArray

Recebe ou define um objeto que especifica como serializa XmlSerializer um campo público ou propriedade de leitura/escrita que devolve um array.

XmlArrayItems

Obtém ou define uma coleção de objetos que especificam como serializam XmlSerializer os itens inseridos num array devolvido por um campo público ou propriedade de leitura/escrita.

XmlAttribute

Recebe ou define um objeto que especifica como serializa XmlSerializer um campo público ou propriedade pública de leitura/escrita como um atributo XML.

XmlChoiceIdentifier

Obtém ou define um objeto que permite distinguir entre um conjunto de escolhas.

XmlDefaultValue

Obtém ou define o valor padrão de um elemento ou atributo XML.

XmlElements

Obtém uma coleção de objetos que especificam como serializa XmlSerializer um campo público ou propriedade de leitura/escrita como elemento XML.

XmlEnum

Obtém ou define um objeto que especifica como serializa XmlSerializer um membro de enumeração.

XmlIgnore

Recebe ou define um valor que especifica se serializa XmlSerializer ou não um campo público ou uma propriedade pública de leitura/escrita.

Xmlns

Recebe ou define um valor que especifica se deve manter todas as declarações de namespace quando um objeto contendo um membro que devolve um XmlSerializerNamespaces objeto é sobreposto.

XmlRoot

Obtém ou define um objeto que especifica como serializa XmlSerializer uma classe como elemento raiz XML.

XmlText

Obtém ou define um objeto que instrui a XmlSerializer serializar um campo público ou propriedade pública de leitura/escrita como texto XML.

XmlType

Obtém ou define um objeto que especifica como serializa XmlSerializer uma classe à qual foi aplicada.XmlTypeAttribute

Métodos

Name Description
Equals(Object)

Determina se o objeto especificado é igual ao objeto atual.

(Herdado de Object)
GetHashCode()

Serve como função de hash predefinida.

(Herdado de Object)
GetType()

Obtém o Type da instância atual.

(Herdado de Object)
MemberwiseClone()

Cria uma cópia superficial do atual Object.

(Herdado de Object)
ToString()

Devolve uma cadeia que representa o objeto atual.

(Herdado de Object)

Aplica-se a

Ver também