XmlSchemaType | System.Xml.Schema (system.xml.dll) class |
public class XmlSchemaType : XmlSchemaAnnotated {
// Public Constructors
public XmlSchemaType( );
// Public Instance Properties
public object BaseSchemaType{get; }
public XmlSchemaDatatype Datatype{get; }
public XmlSchemaDerivationMethod DerivedBy{get; }
public XmlSchemaDerivationMethod Final{set; get; }
public XmlSchemaDerivationMethod FinalResolved{get; }
public virtual bool IsMixed{set; get; }
public string Name{set; get; }
public XmlQualifiedName QualifiedName{get; }
} | |
This is the type used as the
base for all simple and complex types. its Final,
IsMixed, and Name properties
provide access to the final,
mixed, and name attributes. The
other properties hold post-compilation (read-only) values.
Hierarchy
System.Object XmlSchemaObject
XmlSchemaAnnotated
XmlSchemaType
|