XmlSchemaSimpleContent.Content Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene una de estas clases: XmlSchemaSimpleContentRestriction o XmlSchemaSimpleContentExtension.
public:
virtual property System::Xml::Schema::XmlSchemaContent ^ Content { System::Xml::Schema::XmlSchemaContent ^ get(); void set(System::Xml::Schema::XmlSchemaContent ^ value); };
public override System.Xml.Schema.XmlSchemaContent? Content { get; set; }
public override System.Xml.Schema.XmlSchemaContent Content { get; set; }
member this.Content : System.Xml.Schema.XmlSchemaContent with get, set
Public Overrides Property Content As XmlSchemaContent
Valor de propiedad
Contenido incluido en la clase XmlSchemaSimpleContentRestriction
o XmlSchemaSimpleContentExtension
.
Ejemplos
Con el simpleContent
elemento , la siguiente declaración de elemento contiene un complexType
objeto que define el contenido del elemento como un decimal
tipo con un único atributo (sizing
):
<xs:element name="shoeSize">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:decimal">
<xs:attribute name="sizing">
<xs:restriction base="xs:string">
<xs:enumeration value="US"/>
<xs:enumeration value="European"/>
<xs:enumeration value="UK"/>
<xs:enumeration value="Japan"/>
</xs:restriction>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
Comentarios
El simpleContent
elemento permite especificar un elemento como que contiene un tipo simple sin elementos y restringir el valor del contenido del elemento o extender el contenido con atributos.