2.55 Arguments

The Arguments element specifies a collection that is an ordered list of arguments to a function.

The Arguments element MUST contain at least one Arguments.Expression element and can contain more. There MUST be one Arguments.Expression element for each argument that is specified by the function specified by the Function.FunctionName element. The data type and cardinality of each argument MUST match the requirements of the function. These requirements are listed in section 2.64.2.

The following are the parent and child elements of the Arguments element.

Parent elements 

Function

Child elements 

Arguments.Expression

The following is the XML Schema definition of the Arguments element.

 <xsd:complexType name="ExpressionsType">
   <xsd:sequence>
     <xsd:element name="Expression" type="ExpressionType" maxOccurs="unbounded" />
   </xsd:sequence>
 </xsd:complexType>