StatusText Property
Gets the current status of the Downloader object request.
XAML |
Cannot be used in XAML.
|
Scripting |
value = downloaderObject.StatusText
|
Property Value
string
A string value that corresponds to the Status property value of a Downloader object request.
This property is read-only. The default value is an empty string.
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 anything matching the request URI. |
Applies To
See Also
Using a Downloader Object
Completed
GetResponseText
ResponseText
Status