XmlSchemaDatatype | System.Xml.Schema (system.xml.dll) abstract class |
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.
|