3.1.4.9.3.2 DeleteResult

Namespace: http://schemas.microsoft.com/office/Access/2010/11/Server/WebServices/ApplicationDesignService

Specifies the result of the delete operation.

 <xs:complexType name="DeleteResult" xmlns:xs="http://www.w3.org/2001/XMLSchema">
   <xs:complexContent mixed="false">
     <xs:extension base="tns:ServiceResult">
       <xs:sequence>
         <xs:element minOccurs="1" maxOccurs="1" name="Error" nillable="true" type="tns:ServiceError"/>
         <xs:element minOccurs="0" maxOccurs="1" name="AccessObject" type="tns:AccessObject"/>
       </xs:sequence>
       <xs:attribute name="ID" type="xs:int" use="required"/>
     </xs:extension>
   </xs:complexContent>
 </xs:complexType>

Error: A ServiceError element (section 2.2.4.13) that specifies an error that occurred on the protocol server. If the delete operation succeeded, this element MUST be nil ([XMLSCHEMA1/2] section 2.7.2) and the AccessObject element MUST NOT be present. If this element is not nil, then the Objects list MUST contain the latest version of the object specified in the ID attribute of the DeleteParameters (section 3.1.4.9.3.1) element..

AccessObject: An AccessObject element (section 2.2.4.1) that specifies an object.

ID: An int ([XMLSCHEMA2] section 3.3.17) attribute that specifies the identifier of the object. MUST be the same as the ID attribute of the DeleteParameters element from the request.