Compartilhar via


3.1.4.3.2.1 Execute

The Execute element has the following definition:

   <xsd:complexType name="Execute">
     <xsd:sequence>
       <xsd:element name="Command" type="Command" />
       <xsd:element name="Properties" minOccurs="1" maxOccurs="1" >
         <xsd:complexType>
           <xsd:sequence>
             <xsd:element name="PropertyList" minOccurs="0" maxOccurs="1" 
                          type="PropertyList" />
           </xsd:sequence>
         </xsd:complexType>
       </xsd:element>
       <xsd:element name="Parameters" minOccurs="0">
         <xsd:complexType>
           <xsd:sequence>
             <xsd:element name="Parameter" type="ExecuteParameter" 
                          minOccurs="0" maxOccurs="unbounded" />
           </xsd:sequence>
         </xsd:complexType>
       </xsd:element>
     </xsd:sequence>
   </xsd:complexType>

Element

Default value

Description

Command

[Required]

The Command element is defined in section 3.1.4.3.2.1.1. The available commands are described in the subsections to that section.

Properties

[Required]

The Properties element contains a PropertyList element. The PropertyList element is used to set properties on the server. The available properties to be set are described in section 3.1.4.2.2.1.2.1.

Parameters

Empty

A collection of Parameter elements of type ExecuteParameter. Some commands accept parameters, and the values for those parameters SHOULD be set in this collection. The ExecuteParameter type is defined in section 3.1.4.3.2.1.3.1.