2.2.5.6 AppPoolList Element

The AppPoolList XML element specifies an IIS application pool list structure. It is the root element of XML documents that are used in WSRM method parameters.

 <xs:element name="AppPoolList">
   <xs:complexType>
     <xs:sequence>
       <xs:element name="AppPool"
         type="xs:string"
         minOccurs="0"
         maxOccurs="unbounded"
        />
     </xs:sequence>
   </xs:complexType>
 </xs:element>

Child Elements

Element

Type

Description

AppPool

xs:string

A string that specifies the application pool.

The following schema shows a reference to the AppPoolList element from a public XML namespace [XMLNS]:

 <?xml version="1.0" encoding="utf-8"?>
 <xs:schema id="NewDataSet" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
   <xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">
     <xs:complexType>
       <xs:choice minOccurs="0" maxOccurs="unbounded">
         <xs:element ref="AppPoolList" />
       </xs:choice>
     </xs:complexType>
   </xs:element>
 </xs:schema>
  

Additional XML data formats are specified in section 2.2.5.