| Package | qnx.events |
| Class | public class NetworkResourceDoneEvent |
| Inheritance | NetworkResourceDoneEvent flash.events.Event |
QNXStageWebView object dispatches a NetworkResourceDoneEvent object when
a header for the loading resource has been received and is being procesed.
This event is only received if the FILTER action was specified in a NetworkResourceRvquestedEvent.
Cancel to prevent the data from being sent or replace the data by setting the data member.
There is only one type of NetworkResourceDoneEvent:
NetworkResourceDoneEvent.NETWORK_RESOURCE_DONE: dispatched when the resource is done loading. Can be cancelled.See also
| Property | Defined By | ||
|---|---|---|---|
| streamId : int
The ID of the resource to be loaded. | NetworkResourceDoneEvent | ||
| Method | Defined By | ||
|---|---|---|---|
NetworkResourceDoneEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = true, streamId:int = 0)
Creates an NetworkResourceDoneEvent object. | NetworkResourceDoneEvent | ||
clone():Event [override]
Duplicates an instance of an Event subclass. | NetworkResourceDoneEvent | ||
toString():String [override]
Returns a String that contains all the properties of the NetworkResourceDoneEvent object. | NetworkResourceDoneEvent | ||
| Constant | Defined By | ||
|---|---|---|---|
| NETWORK_RESOURCE_DONE : String = networkResourceDone [static]
Indicates that data has been received. | NetworkResourceDoneEvent | ||
| streamId | property |
streamId:intThe ID of the resource to be loaded.
public function get streamId():int public function set streamId(value:int):void| NetworkResourceDoneEvent | () | Constructor |
public function NetworkResourceDoneEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = true, streamId:int = 0)
Creates an NetworkResourceDoneEvent object.
type:String | |
bubbles:Boolean (default = false) | |
cancelable:Boolean (default = true) | |
streamId:int (default = 0) |
| 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():String
Returns a String that contains all the properties of the NetworkResourceDoneEvent object.
The string is in the following format:
[NetworkResourceDoneEvent type=value bubbles=value
cancelable=value eventPhase=value streamId=value data=value
String |
| NETWORK_RESOURCE_DONE | Constant |
public static const NETWORK_RESOURCE_DONE:String = networkResourceDoneIndicates that data has been received. The data can be modified here.