Status Property

Gets the current status of the Downloader object request.

XAML
Cannot be used in XAML.
Scripting
value = downloaderObject.Status

Property Value

integer

Gets the HTTP status code value that represents the current state of the Downloader object request.

This property is read-only. The default value is 0.

Remarks

The HTTP status code reflects the current state of the Downloader request as specified by the verb parameter in the Open method. For example, if the verb parameter is "GET" and the resulting download was successful, the value of Status is 200, and the value of StatusText is "OK".

The following table lists the HTTP status codes that the Downloader reports. For more information, see HTTP Status Codes.

Status code Status text Description
200 OK The request completed successfully.
204 No content The server has not found any content matching the request URI.

Applies To

Downloader

See Also

Using a Downloader Object
Completed
GetResponseText
StatusText