206 Forces the \c XMLHttpRequest to interpret the data received in the next HTTP response,
207 as if it had the MIME type \a mime, rather than the one provided by the server.
208*/
209
210/*!
211 \qmlproperty function XMLHttpRequest::onreadystatechange
212
213 Choose a callback function you want to get invoked whenever the \l {XMLHttpRequest::readyState}{readyState} of the \c XMLHttpRequest object changes.
274 Returns a \c String describing the content type of the last response received.
275 \list
276 \li If the response type is "text" or an empty \c String, the response content is a UTF-16 encoded \c String.
277 \li If the response type is "arraybuffer", it means that the response content is an \c ArrayBuffer containing binary data.
278 \li If the response type is "json", the response content should be a JSON \c Document.
279 \li If the response type is "document", it means that the response content is an XML \c Document, which can be safely read with the \l {XMLHttpRequest::responseXML}{responseXML} property.
280 \endlist
281
282 \sa {XMLHttpRequest::response}{response}
283*/
284
285/*!
286 \qmlproperty int XMLHttpRequest::status
287 \readonly
288
289 Returns the status code for the last response received.