responseBody Property (ServerXMLHTTPRequest/IServerXMLHTTPRequest)
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. Depending on what the server sent, this can appear as binary-encoded data (UTF-8, UCS-2, UCS-4, Shift_JIS, and so on).
[Script]
Script Syntax
strValue = oServerXMLHTTPRequest.responseBody;
[Visual Basic]
Visual Basic Syntax
strValue = oServerXMLHTTPRequest.responseBody
[C/C++]
C/C++ Syntax
HRESULT get_responseBody(VARIANT* pvarVal);
Parameters
- pvarVal [out, retval]
- The response entity body as an array of unsigned bytes.
C/C++ Return Values
- S_OK
- The value returned if successful.
- E_PENDING
- The value returned if the data is unavailable.
Remarks
This property represents only one of several forms in which the HTTP response can be returned.
To view reference information for Visual Basic, C/C++, or Script only, click the Language Filter button in the upper-left corner of the page.
See Also
responseStream Property | responseText Property | responseXML Property
Applies to: IServerXMLHTTPRequest/ServerXMLHTTP