Length Element Binding Support

The .NET Framework does not provide binding support for the <length> element.

With the exception of the <enumeration> facet, there are no bindings between simple type restrictions using the XML Schema's facets and class definitions in the .NET Framework.

Explanation

The XML Schema definition language provides various mechanisms for deriving new simple types by constraining the values of the base simple types. These constraints are called facets and are specified as children of the <restriction> element in a <simpleType> (or <simpleContent>) definition, located via the XPath simpleType/restriction/facetName, where facetName is the particular facet. The <length> element specifies one such facet.

With the exception of the <enumeration> facet, there are no bindings between simple type restrictions using the XML Schema facets and class definitions in the .NET Framework. This means the following:

  • When generating source code from an XML Schema document, Xsd.exe ignores restrictions on simple types; it simply produces the .NET Framework type corresponding to the base simple type. (The one exception, the <enumeration> element, is recognized only when it is applied to string-based simple types.)

  • The XmlSerializer class disregards these restrictions when serializing objects to XML and deserializing from XML.

Concerning the Schema Object Model, the System.Xml.Schema namespace has a class for each of the XML Schema's restriction facets, including the XmlSchemaLengthFacet class. Objects of these classes can be used to programmatically create a schema object model that restricts via facets.

Possible Attributes Binding Support

fixed

Since the .NET Framework does not bind the <length> element, it does not bind the element's attributes.

See the Fixed Attribute Binding Support attribute.

id

Since the .NET Framework does not bind the <id> element, it does not bind the element's attributes.

value

Since the .NET Framework does not bind the <value> element, it does not bind the element's attributes.

See the Value Attribute Binding Support attribute.

Possible parent elements: <restriction>

Possible child elements: <annotation>

See Also

Reference

XmlSchemaLengthFacet


© 2007 Microsoft Corporation. All rights reserved.
Last Published: 2010-03-21