readyState property
Retrieves the current state of the request operation.
Syntax
HRESULT value = object.get_readyState(* p);
Property values
Type: long
READYSTATE_UNINITIALIZED (0)
-
The object has been created, but not initialized (the IHTMLXMLHttpRequest::open method has not been called).
READYSTATE_LOADING (1)
-
A request has been opened, but the IHTMLXMLHttpRequest::send method has not been called.
READYSTATE_LOADED (2)
-
The IHTMLXMLHttpRequest::send method has been called. No data is available yet.
READYSTATE_INTERACTIVE (3)
-
Some data has been received; however, neither IHTMLXMLHttpRequest::responseText nor IHTMLXMLHttpRequest::responseBody is available.
READYSTATE_COMPLETE (4)
-
All the data has been received.
Standards information
- XMLHttpRequest, Section 3.5
Remarks
You cannot call IHTMLXMLHttpRequest::responseBody and IHTMLXMLHttpRequest::responseText properties to obtain partial results (IHTMLXMLHttpRequest::readyState = 3). Doing so will return an error, because the response is not fully received. You must wait until all data has been received.
In comparison, the Microsoft XML (MSXML) version of the IXMLHTTPRequest interface exposes partial results through the responseStream property, which the Windows Internet Explorer native version does not implement. Be aware that this behavior also differs from the IServerXMLHTTPRequest interface, which provides partial results to IHTMLXMLHttpRequest::responseBody and IHTMLXMLHttpRequest::responseText.
In comparison, the MSXML version of the IXMLHTTPRequest interface exposes partial results through the responseStream property. Be aware that this behavior also differs from the IServerXMLHTTPRequest interface, which provides partial results to IHTMLXMLHttpRequest::responseBody and IHTMLXMLHttpRequest::responseText.
IHTMLXMLHttpRequest::readyState was introduced in Windows Internet Explorer 7.
See also
Build date: 11/12/2012