XmlSchemaAttribute Class represents attribute element from XML Schema : XML Schema « XML « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » XML » XML SchemaScreenshots 
XmlSchemaAttribute Class represents attribute element from XML Schema
 

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 attributeBase As New XmlSchemaAttribute()
        schema.Items.Add(attributeBase)
        attributeBase.Name = "mybaseattribute"

        Dim simpleType As New XmlSchemaSimpleType()
        attributeBase.SchemaType = simpleType

        Dim restriction As New XmlSchemaSimpleTypeRestriction()
        simpleType.Content = restriction
        restriction.BaseTypeName = New XmlQualifiedName("integer""http://www.w3.org/2001/XMLSchema")

        Dim maxInclusive As New XmlSchemaMaxInclusiveFacet()
        restriction.Facets.Add(maxInclusive)
        maxInclusive.Value = "1000"

        Dim complexType As New XmlSchemaComplexType()
        schema.Items.Add(complexType)
        complexType.Name = "myComplexType"

        Dim attributeBaseRef As New XmlSchemaAttribute()
        complexType.Attributes.Add(attributeBaseRef)
        attributeBaseRef.RefName = New XmlQualifiedName("mybaseattribute")
    End Sub
End Class

   
  
Related examples in the same category
1.Compare the XML document generated from DataSet and Original one
2.Read XML without schema and output its structureRead XML without schema and output its structure
3.Output data relation from XML document
4.Generate XML Schema from XML document
5.XMl schema generatorXMl schema generator
6.Validating XML documents against Schemas
7.Validating a Document using the Validate Method
8.XDocument XML schema validation
9.XmlSchema represents an XML Schema
10.Add XmlSchemaElement to XmlSchema
11.Create XmlSchemaComplexType
12.XmlSchemaAll Class represents the World Wide Web Consortium (W3C) all element (compositor).
13.XmlSchemaAny Class represents the World Wide Web Consortium (W3C) any element.
14.XmlSchemaAnyAttribute Class represents the World Wide Web Consortium (W3C) anyAttribute element.
15.XmlSchemaAppInfo Class represents the World Wide Web Consortium (W3C) appinfo element.
16.XmlSchemaAttributeGroup Class represents attributeGroup element from XML Schema
17.XmlSchemaChoice Class represents choice element from XML Schema
18.XmlSchemaComplexContent represents complexContent element from XML Schema
19.XmlSchemaElement MinOccurs MaxOccursString
20.XmlSchemaComplexType Class represents complexType element from XML Schema
21.XmlSchemaDocumentation Class represents documentation element from XML Schema
22.XmlSchemaEnumerationFacet Class represents enumeration facet from XML Schema
23.XmlSchemaException Class returns detailed information about the schema exception.
24.XmlSchemaFractionDigitsFacet Class sets a restriction for the fraction value of a simpleType element
25.XmlSchemaGroup Class represents group element from XML Schema
26.XmlSchemaInclude Class represents include element from XML Schema
27.XmlSchemaLengthFacet Class represents the length facet from XML Schema
28.XmlSchemaMaxExclusiveFacet Class represents the maxExclusive element from XML Schema
29.XmlSchemaNotation represents the notation element from XML Schema
30.XmlSchemaSimpleContent Class represents simpleContent element from XML Schema
31.XmlSchemaSimpleTypeUnion Class represents the union element for simple types from XML Schema
32.XmlSchemaWhiteSpaceFacet Class tepresents the World Wide Web Consortium (W3C) whiteSpace facet.
33.XmlSchemaAnnotation Class represents the World Wide Web Consortium (W3C) annotation element.
34.XmlSchemaAttribute Class represents the attribute element from the XML Schema
35.XmlSchemaAttributeGroup Class represents the attributeGroup element from the XML Schema
36.XmlSchemaComplexContent Class represents complexContent element from XML Schema
37.Extensions.Validate validates that an XAttribute conforms to a specified XmlSchemaObject and an XmlSchemaSet.
38.Extensions.Validate validates that an XDocument conforms to an XSD in an XmlSchemaSet.
39.Validates that an XDocument conforms to an XSD in an XmlSchemaSet
40.Validates that an XElement sub-tree conforms to a specified XmlSchemaObject and an XmlSchemaSet.
41.XmlSchemaObject Class represents the root class for the Xml schema object model
42.XmlSchemaSet contains a cache of XML Schema definition language (XSD) schemas.
43.Create substitutionGroup
w__w__w_.j_a_v_a2_s.___c_o_m___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.