statusText Property (IXMLHTTPRequest)

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

Represents the HTTP response line status.

Script Syntax

            strValue = oXMLHttpRequest.statusText;

Remarks

Script Parameters

None.

Script Return Value

String. HTTP response as a BSTR value.

C/C++ Syntax

HRESULT get_statusText(
  BSTR* pbstrStatus
);

Remarks

C/C++ Parameters

  • pbstrStatus
    [out, retval] HTTP response as a BSTR value.

C/C++ Return Values

  • S_OK
    Value returned if successful.
  • E_FAIL
    Value returned if an error occurs.
  • E_INVALIDARG
    Value returned if the input argument is Null.

Requirements

Header msxml2.h, msxml2.idl
Windows Embedded CE Windows CE .NET 4.0 and later

General Remarks

It represents the HTTP response as a BSTR value. This value is valid only after the send method returns successfully.

The property is read-only, and applies to the following interface:

IXMLHTTPRequest

See Also

Reference

IXMLHTTPRequest

Other Resources

send