ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Show Packages and Classes List |  Packages  |  Classes  |  What's New  |  Index  |  Appendixes
flash.events 

DatagramSocketDataEvent  - AS3

Packageflash.events
Classpublic class DatagramSocketDataEvent
InheritanceDatagramSocketDataEvent Inheritance Event Inheritance Object

Language Version: ActionScript 3.0
Runtime Versions: AIR 2

A DatagramSocketDataEvent object is dispatched when Datagram socket has received data.

Related API Elements



Public Properties
 PropertyDefined By
 Inheritedbubbles : Boolean
[read-only] Indicates whether an event is a bubbling event.
Event
 Inheritedcancelable : Boolean
[read-only] Indicates whether the behavior associated with the event can be prevented.
Event
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
 InheritedcurrentTarget : Object
[read-only] The object that is actively processing the Event object with an event listener.
Event
      data : ByteArray
The datagram packet data.
DatagramSocketDataEvent
      dstAddress : String
The IP address of the DatagramSocket object that dispatched this event.
DatagramSocketDataEvent
      dstPort : int
The port of the DatagramSocket object that dispatched this event.
DatagramSocketDataEvent
 InheritedeventPhase : uint
[read-only] The current phase in the event flow.
Event
      srcAddress : String
The IP address of the machine that sent the packet.
DatagramSocketDataEvent
      srcPort : int
The port on the machine that sent the packet.
DatagramSocketDataEvent
 Inheritedtarget : Object
[read-only] The event target.
Event
 Inheritedtype : String
[read-only] The type of event.
Event
Public Methods
 MethodDefined By
  
    DatagramSocketDataEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, srcAddress:String = "", srcPort:int = 0, dstAddress:String = "", dstPort:int = 0, data:ByteArray = null)
Creates an Event object that contains information about datagram events.
DatagramSocketDataEvent
  
    clone():Event
[override] Creates a copy of the DatagramSocketDataEvent object and sets each property's value to match that of the original.
DatagramSocketDataEvent
 Inherited
formatToString(className:String, ... arguments):String
A utility function for implementing the toString() method in custom ActionScript 3.0 Event classes.
Event
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Checks whether the preventDefault() method has been called on the event.
Event
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Cancels an event's default behavior if that behavior can be canceled.
Event
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Prevents processing of any event listeners in the current node and any subsequent nodes in the event flow.
Event
 Inherited
Prevents processing of any event listeners in nodes subsequent to the current node in the event flow.
Event
 Inherited
Returns the string representation of this object, formatted according to locale-specific conventions.
Object
  
    toString():String
[override] Returns a string that contains all the properties of the DatagramSocketDataEvent object.
DatagramSocketDataEvent
 Inherited
Returns the primitive value of the specified object.
Object
Public Constants
 ConstantDefined By
      DATA : String = "data"
[static] Defines the value of the type property of a data event object.
DatagramSocketDataEvent
Property Detail
    

data

property
data:ByteArray

Language Version: ActionScript 3.0
Runtime Versions: AIR 2

The datagram packet data.



Implementation
    public function get data():ByteArray
    public function set data(value:ByteArray):void
    

dstAddress

property 
dstAddress:String

Language Version: ActionScript 3.0
Runtime Versions: AIR 2

The IP address of the DatagramSocket object that dispatched this event.

Note: If the socket is bound to the special address: 0.0.0.0, then this property will return 0.0.0.0. In order to know the specific IP to which the datagram message is sent, you must bind the socket to an explicit IP address.



Implementation
    public function get dstAddress():String
    public function set dstAddress(value:String):void
    

dstPort

property 
dstPort:int

Language Version: ActionScript 3.0
Runtime Versions: AIR 2

The port of the DatagramSocket object that dispatched this event.



Implementation
    public function get dstPort():int
    public function set dstPort(value:int):void
    

srcAddress

property 
srcAddress:String

Language Version: ActionScript 3.0
Runtime Versions: AIR 2

The IP address of the machine that sent the packet.



Implementation
    public function get srcAddress():String
    public function set srcAddress(value:String):void
    

srcPort

property 
srcPort:int

Language Version: ActionScript 3.0
Runtime Versions: AIR 2

The port on the machine that sent the packet.



Implementation
    public function get srcPort():int
    public function set srcPort(value:int):void
Constructor Detail
    

DatagramSocketDataEvent

()Constructor
public function DatagramSocketDataEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, srcAddress:String = "", srcPort:int = 0, dstAddress:String = "", dstPort:int = 0, data:ByteArray = null)

Language Version: ActionScript 3.0
Runtime Versions: AIR 2

Creates an Event object that contains information about datagram events. Event objects are passed as parameters to event listeners.

Parameters
type:String — The type of the event. Possible values are:DatagramSocketDataEvent.DATA
 
bubbles:Boolean (default = false) — Determines whether the Event object participates in the bubbling stage of the event flow.
 
cancelable:Boolean (default = false) — Determines whether the Event object can be canceled.
 
srcAddress:String (default = "") — The IP address of the machine that sent the packet.
 
srcPort:int (default = 0) — The port on the machine that sent the packet.
 
dstAddress:String (default = "") — The IP address to which the packet is addressed.
 
dstPort:int (default = 0) — The port to which the packet is addressed.
 
data:ByteArray (default = null) — The datagram packet data.
Method Detail

    clone

()method
override public function clone():Event

Language Version: ActionScript 3.0
Runtime Versions: AIR 2

Creates a copy of the DatagramSocketDataEvent object and sets each property's value to match that of the original.

Returns
Event — A new DatagramSocketDataEvent object with property values that match those of the original.

    toString

()method 
override public function toString():String

Language Version: ActionScript 3.0
Runtime Versions: AIR 2

Returns a string that contains all the properties of the DatagramSocketDataEvent object. The string is in the following format:

[DatagramSocketDataEvent type=value bubbles=value cancelable=value srcAddress=value srcPort=value dstAddress=value dstPort=value data=value]

Returns
String — A string that contains all the properties of the ProgressEvent object.
Constant Detail
    

DATA

Constant
public static const DATA:String = "data"

Language Version: ActionScript 3.0
Runtime Versions: AIR 2

Defines the value of the type property of a data event object.

Related API Elements