| Package | qnx.events |
| Class | public class WebDownloadRequestEvent |
| Inheritance | WebDownloadRequestEvent flash.events.Event |
There is only one type of WebDownloadRequestEvent:
WebDownloadRequestEvent.DOWNLOAD_REQUEST: dispatched when a download is requested. Cannot be cancelled.See also
| Property | Defined By | ||
|---|---|---|---|
| action : String
The action to take. | WebDownloadRequestEvent | ||
| downloadId : uint
The identifier of the download. | WebDownloadRequestEvent | ||
| filename : String
The filename of the file is being downloaded. | WebDownloadRequestEvent | ||
| url : String
The URL where the file is being downloaded from. | WebDownloadRequestEvent | ||
| Method | Defined By | ||
|---|---|---|---|
WebDownloadRequestEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, downloadId:uint = 0, url:String, filename:String, action:String)
Creates a WebDownloadRequestEvent object. | WebDownloadRequestEvent | ||
clone():Event [override]
Duplicates an instance of an Event subclass. | WebDownloadRequestEvent | ||
toString():String [override]
Returns a string that contains all the properties of the WebDownloadRequestEvent object. | WebDownloadRequestEvent | ||
| Constant | Defined By | ||
|---|---|---|---|
| ACTION_DISCARD : String = actionDiscard [static]
Indicates that the download should be cancelled. | WebDownloadRequestEvent | ||
| ACTION_PENDING : String = actionPending [static]
Indicates that the download should marked as pending to be started
or discarded at a later time. | WebDownloadRequestEvent | ||
| ACTION_SAVE : String = actionSave [static]
Indicates that the file should be saved. | WebDownloadRequestEvent | ||
| DOWNLOAD_REQUEST : String = downloadRequest [static]
Signals that a download is about to start. | WebDownloadRequestEvent | ||
| action | property |
action:StringThe action to take.
public function get action():String public function set action(value:String):void| downloadId | property |
downloadId:uintThe identifier of the download. Used to refer to this download in future events and in API calls.
public function get downloadId():uint public function set downloadId(value:uint):void| filename | property |
filename:StringThe filename of the file is being downloaded.
public function get filename():String public function set filename(value:String):void| url | property |
url:StringThe URL where the file is being downloaded from.
public function get url():String public function set url(value:String):void| WebDownloadRequestEvent | () | Constructor |
public function WebDownloadRequestEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, downloadId:uint = 0, url:String, filename:String, action:String)Creates a WebDownloadRequestEvent object.
Parameterstype:String | |
bubbles:Boolean (default = false) | |
cancelable:Boolean (default = false) | |
downloadId:uint (default = 0) | |
url:String | |
filename:String | |
action:String |
| clone | () | method |
override public function clone():EventDuplicates an instance of an Event subclass.
Returns a new Event object that is a copy of the original instance of the Event object.
You do not normally call clone(); the EventDispatcher class calls it automatically
when you redispatch an event—that is, when you call dispatchEvent(event) from a handler
that is handling event.
The new Event object includes all the properties of the original.
When creating your own custom Event class, you must override the
inherited Event.clone() method in order for it to duplicate the
properties of your custom class. If you do not set all the properties that you add
in your event subclass, those properties will not have the correct values when listeners
handle the redispatched event.
Event |
| toString | () | method |
override public function toString():StringReturns a string that contains all the properties of the WebDownloadRequestEvent object. The string is in the following format:
[WebDownloadRequestEvent type=value bubbles=value
cancelable=value eventPhase=value downloadId=value
url=value filename=value action=value
String |
| ACTION_DISCARD | Constant |
public static const ACTION_DISCARD:String = actionDiscardIndicates that the download should be cancelled.
| ACTION_PENDING | Constant |
public static const ACTION_PENDING:String = actionPendingIndicates that the download should marked as pending to be started or discarded at a later time.
| ACTION_SAVE | Constant |
public static const ACTION_SAVE:String = actionSaveIndicates that the file should be saved.
| DOWNLOAD_REQUEST | Constant |
public static const DOWNLOAD_REQUEST:String = downloadRequestSignals that a download is about to start. You must set the action that you wish to take in response to this event. The default action is to discard the download.