XmlSchemaSimpleContent.Content Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera jeden z elementów XmlSchemaSimpleContentRestriction lub 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
Wartość właściwości
Zawartość zawarta w XmlSchemaSimpleContentRestriction
klasie lub XmlSchemaSimpleContentExtension
.
Przykłady
Przy użyciu elementu następująca simpleContent
deklaracja elementu zawiera complexType
element definiujący zawartość elementu jako typ z pojedynczym atrybutem decimal
(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>
Uwagi
Element simpleContent
umożliwia określenie elementu jako zawierającego prosty typ bez elementów i ograniczenie wartości zawartości elementu lub rozszerzenie zawartości za pomocą atrybutów.