XmlSchemaSimpleTypeList | System.Xml.Schema (system.xml.dll) class |
public class XmlSchemaSimpleTypeList : XmlSchemaSimpleTypeContent {
// Public Constructors
public XmlSchemaSimpleTypeList( );
// Public Instance Properties
public XmlSchemaSimpleType ItemType{set; get; }
public XmlQualifiedName ItemTypeName{set; get; }
} | |
This type is used to
represent the xs:list schema element, which is
used to derive a new simple type whose value is a
whitespace-delimited list of values of the base type. The
ItemType property contains the
XmlSchemaSimpleType whose value the type is based
on, and the ItemTypeName property contains the
System.Xml.XmlQualifiedName of the base simple
type.
Hierarchy
System.Object XmlSchemaObject
XmlSchemaAnnotated
XmlSchemaSimpleTypeContent
XmlSchemaSimpleTypeList
|