本文整理汇总了VB.NET中System.Xml.Serialization.XmlIncludeAttribute.Type属性的典型用法代码示例。如果您正苦于以下问题:VB.NET XmlIncludeAttribute.Type属性的具体用法?VB.NET XmlIncludeAttribute.Type怎么用?VB.NET XmlIncludeAttribute.Type使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。
在下文中一共展示了XmlIncludeAttribute.Type属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的VB.NET代码示例。
示例1: Group
' 导入命名空间
Imports System.IO
Imports System.Xml.Serialization
Public Class Group
Public Employees() As Employee
End Class
' Instruct the XmlSerializer to accept Manager types as well.
<XmlInclude(GetType(Manager))> _
Public Class Employee
Public Name As String
End Class
Public Class Manager
Inherits Employee
Public Level As Integer
End Class
Public Class Run
Public Shared Sub Main()
Dim test As New Run()
test.SerializeObject("IncludeExample.xml")
test.DeserializeObject("IncludeExample.xml")
End Sub
Public Sub SerializeObject(ByVal filename As String)
Dim s As New XmlSerializer(GetType(Group))
Dim writer As New StreamWriter(filename)
Dim group As New Group()
Dim manager As New Manager()
Dim emp1 As New Employee()
Dim emp2 As New Employee()
manager.Name = "Zeus"
manager.Level = 2
emp1.Name = "Ares"
emp2.Name = "Artemis"
Dim emps() As Employee = {manager, emp1, emp2}
group.Employees = emps
s.Serialize(writer, group)
writer.Close()
End Sub
Public Sub DeserializeObject(ByVal filename As String)
Dim fs As New FileStream(filename, FileMode.Open)
Dim x As New XmlSerializer(GetType(Group))
Dim g As Group = CType(x.Deserialize(fs), Group)
Console.Write("Members:")
Dim e As Employee
For Each e In g.Employees
Console.WriteLine(ControlChars.Tab + e.Name)
Next e
End Sub
End Class
开发者ID:VB.NET开发者,项目名称:System.Xml.Serialization,代码行数:64,代码来源:XmlIncludeAttribute.Type
注:本文中的System.Xml.Serialization.XmlIncludeAttribute.Type属性示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论