Share via


status Property (IXMLHTTPRequest) (Windows Embedded CE 6.0)

1/6/2010

Represents the HTTP status code returned by a request.

Script Syntax

            lValue = oXMLHttpRequest.status;

Remarks

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

None.

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

Long integer. Returned status code.

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

HRESULT get_status(
  long* plStatus
);

Remarks

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

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

Ee502388.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.

Ee502388.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 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

Reference

XML HTTP Properties

Other Resources

send