Create XmlQualifiedName : XmlQualifiedName « XML « VB.Net






Create XmlQualifiedName

  

Option Explicit On
Option Strict On

Imports System
Imports System.Xml
Imports System.Xml.Schema

Class XMLSchemaExamples
    Public Shared Sub Main()
        Dim schema As New XmlSchema()

        Dim catRef As New XmlSchemaElement()

        catRef.RefName = New XmlQualifiedName("cat")

    End Sub
End Class

   
    
  








Related examples in the same category