Aracılığıyla paylaş


XmlAttributeOverrides Sınıf

Tanım

bir nesneyi seri hale getirmek veya seri durumdan çıkarmak için kullanırken XmlSerializer özelliğini, alanını ve sınıf özniteliklerini geçersiz kılmanıza olanak tanır.

public ref class XmlAttributeOverrides
public class XmlAttributeOverrides
type XmlAttributeOverrides = class
Public Class XmlAttributeOverrides
Devralma
XmlAttributeOverrides

Örnekler

Aşağıdaki örnek, adlı Orchestrabir sınıfı serileştirir. Bu sınıf, bir nesne dizisi Instrument döndüren adlı Instruments tek bir alan içerir. adlı Brass ikinci bir sınıf sınıfından devralır Instrument . Örnek, sınıfın XmlAttributeOverrides bir örneğini kullanarak alanı geçersiz kılar Instrument ve alanın nesneleri kabul Brass etmesine izin verir.

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 XmlElementAttribute to the collection of objects.
      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);
      }
   }
}
Option Explicit
Option Strict

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(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 XmlElementAttribute to the collection of objects.
        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)
        Next i
    End Sub
End Class

Açıklamalar

, XmlAttributeOverrides bir nesne kümesini seri hale getirmenin varsayılan yolunu geçersiz kılmasını sağlar XmlSerializer . Serileştirmeyi bu şekilde geçersiz kılmanın iki kullanımı vardır: İlk olarak, kaynağa erişiminiz olmasa bile DLL'de bulunan nesnelerin seri hale getirilmesini denetleyebilir ve artırabilirsiniz; ikinci olarak, bir dizi serileştirilebilir sınıf oluşturabilir, ancak nesneleri birden çok şekilde seri hale getirebilirsiniz. Örneğin, bir sınıf örneğinin üyelerini XML öğeleri olarak serileştirmek yerine, bunları XML öznitelikleri olarak seri hale getirerek daha verimli bir belgenin taşınmasına neden olabilirsiniz.

Bir XmlAttributeOverrides nesne oluşturduktan sonra, bunu oluşturucuya XmlSerializer bağımsız değişken olarak geçirirsiniz. Sonuçta XmlSerializer , nesnelerin nasıl seri hale getirildiğini denetleen öznitelikleri geçersiz kılmak için öğesinin içerdiği XmlAttributeOverrides veriler kullanılır. Bunu başarmak için, XmlAttributeOverrides geçersiz kılınan nesne türlerinin bir koleksiyonunu ve her geçersiz kılınan nesne türüyle ilişkilendirilmiş bir XmlAttributes nesneyi içerir. Nesnenin XmlAttributes kendisi, her alanın, özelliğin veya sınıfın nasıl serileştirildiğini denetleen uygun bir öznitelik nesneleri kümesi içerir.

Nesne oluşturma ve kullanma XmlAttributeOverrides işlemi aşağıdaki gibidir:

  1. Bir XmlAttributes nesne oluşturun.

  2. Geçersiz kılınan nesneye uygun bir öznitelik nesnesi oluşturun. Örneğin, bir alanı veya özelliği geçersiz kılmak için yeni, türetilmiş türü kullanarak bir XmlElementAttributeoluşturun. İsteğe bağlı olarak, temel sınıfın öznitelik adını veya Namespace ad alanını geçersiz kılan yeni ElementNamebir atayabilirsiniz.

  3. Öznitelik nesnesini uygun XmlAttributes özelliğe veya koleksiyona ekleyin. Örneğin, geçersiz kılınan üye adını belirterek nesnesinin koleksiyonuna XmlAttributes öğesini ekleyebilirsiniz.XmlElementAttributeXmlElements

  4. Bir XmlAttributeOverrides nesne oluşturun.

  5. Add yöntemini kullanarak nesnesini nesnesine XmlAttributeOverrides ekleyinXmlAttributes. Geçersiz kılınan nesne bir XmlRootAttribute veya XmlTypeAttributeise, yalnızca geçersiz kılınan nesnenin türünü belirtmeniz gerekir. Ancak bir alanı veya özelliği geçersiz kılıyorsanız, geçersiz kılınan üyenin adını da belirtmeniz gerekir.

  6. oluştururken XmlSerializeroluşturucuya XmlSerializer geçirinXmlAttributeOverrides.

  7. Türetilmiş sınıf nesnelerini serileştirmek veya seri durumdan çıkarmak için sonucunu XmlSerializer kullanın.

Oluşturucular

Name Description
XmlAttributeOverrides()

XmlAttributeOverrides sınıfının yeni bir örneğini başlatır.

Özellikler

Name Description
Item[Type, String]

Belirtilen (temel sınıf) türüyle ilişkili nesneyi alır. member parametresi geçersiz kılınan temel sınıf üyesini belirtir.

Item[Type]

Belirtilen temel sınıf türüyle ilişkili nesneyi alır.

Yöntemler

Name Description
Add(Type, String, XmlAttributes)

Nesne koleksiyonuna XmlAttributes bir XmlAttributes nesne ekler. type parametresi geçersiz kılınacak bir nesne belirtir. member parametresi geçersiz kılınan bir üyenin adını belirtir.

Add(Type, XmlAttributes)

Nesne koleksiyonuna XmlAttributes bir XmlAttributes nesne ekler. type parametresi, nesne tarafından XmlAttributes geçersiz kılınacak bir nesne belirtir.

Equals(Object)

Belirtilen nesnenin geçerli nesneye eşit olup olmadığını belirler.

(Devralındığı yer: Object)
GetHashCode()

Varsayılan karma işlevi işlevi görür.

(Devralındığı yer: Object)
GetType()

Geçerli örneğin Type alır.

(Devralındığı yer: Object)
MemberwiseClone()

Geçerli Objectbasit bir kopyasını oluşturur.

(Devralındığı yer: Object)
ToString()

Geçerli nesneyi temsil eden bir dize döndürür.

(Devralındığı yer: Object)

Şunlara uygulanır

Ayrıca bkz.