本文整理汇总了VB.NET中System.Xml.Schema.XmlSchemaCollection.ValidationEventHandler事件的典型用法代码示例。如果您正苦于以下问题:VB.NET XmlSchemaCollection.ValidationEventHandler事件的具体用法?VB.NET XmlSchemaCollection.ValidationEventHandler怎么用?VB.NET XmlSchemaCollection.ValidationEventHandler使用的例子?那么恭喜您, 这里精选的事件代码示例或许可以为您提供帮助。您也可以进一步了解该事件所在类System.Xml.Schema.XmlSchemaCollection
的用法示例。
在下文中一共展示了XmlSchemaCollection.ValidationEventHandler事件的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: Sample
' 导入命名空间
Imports System.IO
Imports System.Xml
Imports System.Xml.Schema
public class Sample
public shared sub Main ()
'Create the schema collection.
Dim xsc as XmlSchemaCollection = new XmlSchemaCollection()
'Set an event handler to manage invalid schemas.
AddHandler xsc.ValidationEventHandler, AddressOf ValidationCallBack
'Add the schema to the collection.
xsc.Add(nothing, "invalid.xsd")
end sub
'Display the schema error information.
Private shared sub ValidationCallBack (sender as object, args as ValidationEventArgs)
Console.WriteLine("Invalid XSD schema: " + args.Exception.Message)
end sub
end class