Name

XmlSchemaDatatype — System.Xml.Schema (system.xml.dll)   abstract class 

Synopsis

public abstract class XmlSchemaDatatype {
// Protected Constructors
   protected XmlSchemaDatatype( );  
// Public Instance Properties
   public abstract XmlTokenizedType TokenizedType{get; } 
   public abstract Type ValueType{get; } 
// Public Instance Methods
   public abstract object ParseValue( string s, System.Xml.XmlNameTable nameTable, System.Xml.XmlNamespaceManager nsmgr);  
}

This abstract type is used to map XML Schema data types to .NET Framework types. The TokenizedType property returns an System.Xml.XmlTokenizedType for the data type, which allows the type to be referenced as an XML type. The ValueType property returns a System.Type object corresponding to the data type.

Get .NET & XML now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.