Definition Type: Attribute
Name: method
Namespace: http://www.w3.org/2002/xforms
Type: <Simple Type Union>:http://www.w3.org/2001/XMLSchema
Containing Schema: XForms-Schema.xsd
ContentType Union
Use Required
Collapse XSD Schema Diagram:
XSD Diagram of method in schema xforms-schema_xsd (W3C XForms)
Collapse XSD Schema Code:
<xsd:attribute name="method" use="required">
    <xsd:simpleType>
        <xsd:union memberTypes="xforms:QNameButNotNCNAME">
            <xsd:simpleType>
                <xsd:restriction base="xsd:string">
                    <xsd:enumeration value="post" />
                    <xsd:enumeration value="put" />
                    <xsd:enumeration value="get" />
                    <xsd:enumeration value="multipart-post" />
                    <xsd:enumeration value="form-data-post" />
                    <xsd:enumeration value="urlencoded-post" />
                </xsd:restriction>
            </xsd:simpleType>
        </xsd:union>
    </xsd:simpleType>
</xsd:attribute>