Share via


statusText Property (IXMLHTTPRequest) (Windows Embedded CE 6.0)

1/6/2010

Represents the HTTP response line status.

Script Syntax

            strValue = oXMLHttpRequest.statusText;

Remarks

Ee503421.collapse(en-US,WinEmbedded.60).gifScript Parameters

None.

Ee503421.collapse(en-US,WinEmbedded.60).gifScript Return Value

String. HTTP response as a BSTR value.

Ee503421.collapse(en-US,WinEmbedded.60).gifC/C++ Syntax

HRESULT get_statusText(
  BSTR* pbstrStatus
);

Remarks

Ee503421.collapse(en-US,WinEmbedded.60).gifC/C++ Parameters

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

Ee503421.collapse(en-US,WinEmbedded.60).gifC/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.

Ee503421.collapse(en-US,WinEmbedded.60).gifRequirements

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

XML HTTP Properties
IXMLHTTPRequest

Other Resources

send