2.2.4.10 ServiceResult

Namespace: http://schemas.microsoft.com/server/broadcast/2010/main

A complex type that specifies the result of a protocol method. The protocol server returns this type to the protocol client containing either a successful Result element or an Error element.

 <xs:complexType name="ServiceResult" xmlns:xs="http://www.w3.org/2001/XMLSchema">
   <xs:sequence>
     <xs:element minOccurs="0" maxOccurs="1" name="Result"/>
     <xs:element minOccurs="0" maxOccurs="1" name="Error" type="tns:ServiceError"/>
   </xs:sequence>
 </xs:complexType>

Result:  An optional xs:anyType ([XMLSCHEMA1/2] section 3.4.7) element that specifies a successful result of a protocol message response. This element MUST NOT be present if the Error element is present.

Error: An optional ServiceError (section 2.2.4.9) element that specifies an error result of a protocol message response. This element MUST NOT be present if the Result element is present.