responseBody Property (IXMLHTTPRequest) (Windows CE 5.0)
Represents only one of several forms in which the HTTP response can be returned.
[Script]
Script Syntax
strValue= oXMLHttpRequest.responseBody;
Script Parameters
None.
Script Return Value
Variant. Response entity body as an array of unsigned bytes.
[C/C++]
C/C++ Syntax
HRESULT get_responseBody(VARIANT* pvarBody);
C/C++ Parameters
- pvarBody
[out, retval] Response entity body as an array of unsigned bytes.
C/C++ Return Values
- S_OK
Value returned if successful. - E_PENDING
Value returned if the data is unavailable.
Requirements
OS Versions: Windows CE .NET 4.0 and later.
Header: Msxml2.h, Msxml2.idl.
General Remarks
Represents the response entity body as an array of unsigned bytes, namely a SAFEARRAY of type VT_ARRAY | VT_UI1. This contains the raw undecoded bytes as received directly from the server. Therefore, depending on what the server sent, this may appear as binary-encoded data (UTF-8, UCS-2, UCS-4, Shift_JIS, and so on).
The property is read-only, and applies to the following interface:
See Also
responseStream Property | responseText Property | responseXML Property (IXMLHTTPRequest)
Send Feedback on this topic to the authors