XmlSchemaSimpleContent.Content Property

Definition

public override System.Xml.Schema.XmlSchemaContent? Content { get; set; }
public override System.Xml.Schema.XmlSchemaContent Content { get; set; }

Property Value

The content contained within the XmlSchemaSimpleContentRestriction or XmlSchemaSimpleContentExtension class.

Examples

Using the simpleContent element, the following element declaration contains a complexType that defines the content of the element as a decimal type with a single attribute (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>  

Remarks

The simpleContent element enables you to specify an element as containing a simple type with no elements and restrict the value of the element's content or extend the content with attributes.

Applies to

Product Versions
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1