Share via


status Property (IXMLHTTPRequest) (Windows CE 5.0)

Send Feedback

Represents the HTTP status code returned by a request.

[Script]

Script Syntax

lValue= oXMLHttpRequest.status;

Script Parameters

None.

Script Return Value

Long integer. Returned status code.

[C/C++]

C/C++ Syntax

HRESULT get_status(long* plStatus);

C/C++ Parameters

  • plStatus
    [out, retval] Returned status code, as a long integer.

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

OS Versions: Windows CE .NET 4.0 and later.
Header: Msxml2.h, Msxml2.idl.

General Remarks

It represents the returned status code as a long integer. 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

send Method | statusText Property

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.