本文整理汇总了VB.NET中System.Xml.Serialization.XmlAttributeOverrides.Add方法的典型用法代码示例。如果您正苦于以下问题:VB.NET XmlAttributeOverrides.Add方法的具体用法?VB.NET XmlAttributeOverrides.Add怎么用?VB.NET XmlAttributeOverrides.Add使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Xml.Serialization.XmlAttributeOverrides
的用法示例。
在下文中一共展示了XmlAttributeOverrides.Add方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: Orchestra
Option Explicit
Option Strict
Imports System.IO
Imports System.Xml.Serialization
' This is the class that will be overridden. The XmlIncludeAttribute
' tells the XmlSerializer that the overriding type exists.
<XmlInclude(GetType(Band))> _
Public Class Orchestra
Public Instruments() As Instrument
End Class
' This is the overriding class.
Public Class Band
Inherits Orchestra
Public BandName As String
End Class
Public Class Instrument
Public Name As String
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 object that is being overridden requires
' an XmlAttributes object.
Dim attrs As New XmlAttributes()
' An XmlRootAttribute allows overriding the Orchestra class.
Dim xmlRoot As New XmlRootAttribute()
' Set the object to the XmlAttribute.XmlRoot property.
attrs.XmlRoot = xmlRoot
' Create an XmlAttributeOverrides object.
Dim attrOverrides As New XmlAttributeOverrides()
' Add the XmlAttributes to the XmlAttributeOverrrides.
attrOverrides.Add(GetType(Orchestra), 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 using the derived class.
Dim band As New Band()
band.BandName = "NewBand"
' Create an Instrument.
Dim i As New Instrument()
i.Name = "Trumpet"
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 attrs As New XmlAttributes()
Dim attr As New XmlRootAttribute()
attrs.XmlRoot = attr
Dim attrOverrides As New XmlAttributeOverrides()
attrOverrides.Add(GetType(Orchestra), "Instruments", attrs)
Dim s As New XmlSerializer(GetType(Orchestra), attrOverrides)
Dim fs As New FileStream(filename, FileMode.Open)
' Deserialize the Band object.
Dim band As Band = CType(s.Deserialize(fs), Band)
Console.WriteLine("Brass:")
Dim i As Instrument
For Each i In band.Instruments
Console.WriteLine(i.Name)
Next i
End Sub
End Class
示例2: Group
' This is the class that will be serialized.
Public Class Group
Public GroupName As String
<XmlAttribute()> Public GroupCode As Integer
End Class
Public Class Sample
Public Function CreateOverrider() As XmlSerializer
' Create an XmlAttributeOverrides object.
Dim xOver As New XmlAttributeOverrides()
' Create an XmlAttributeAttribute to override the base class
' object's XmlAttributeAttribute object. Give the overriding object
' a new attribute name ("Code").
Dim xAtt As New XmlAttributeAttribute()
xAtt.AttributeName = "Code"
' Create an instance of the XmlAttributes class and set the
' XmlAttribute property to the XmlAttributeAttribute object.
Dim attrs As New XmlAttributes()
attrs.XmlAttribute = xAtt
' Add the XmlAttributes object to the XmlAttributeOverrides
' and specify the type and member name to override.
xOver.Add(GetType(Group), "GroupCode", attrs)
Dim xSer As New XmlSerializer(GetType(Group), xOver)
Return xSer
End Function
End Class