window.runtime property | window.runtime.flash.net.NetworkInterface |
Inheritance | NetworkInterface Object |
Runtime Versions: | 2 |
You can get a list of network interfaces by calling the
findInterfaces()
method of a NetworkInfo object.
See also
Property | Defined By | ||
---|---|---|---|
active : Boolean
Reports whether this interface is active. | NetworkInterface | ||
addresses : Vector.<InterfaceAddress>
The list of the addresses bound to this network interface. | NetworkInterface | ||
constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | ||
displayName : String
The display name of this network interface. | NetworkInterface | ||
hardwareAddress : String
The hardware address of this network interface. | NetworkInterface | ||
mtu : int
The maximum transmission unit (MTU) of this network interface. | NetworkInterface | ||
name : String
The name of this network interface. | NetworkInterface | ||
parent : NetworkInterface
The NetworkInterface object representing the parent interface (if this interface has a parent). | NetworkInterface | ||
prototype : Object [static]
A reference to the prototype object of a class or function object. | Object | ||
subInterfaces : Vector.<NetworkInterface>
The list of subinterfaces attached to this network interface. | NetworkInterface |
active | property |
active:Boolean
Runtime Versions: | 2 |
Reports whether this interface is active.
addresses | property |
addresses:Vector.<InterfaceAddress>
Runtime Versions: | 2 |
The list of the addresses bound to this network interface.
displayName | property |
displayName:String
Runtime Versions: | 2 |
The display name of this network interface.
hardwareAddress | property |
hardwareAddress:String
Runtime Versions: | 2 |
The hardware address of this network interface.
The hardware address is typically the Media Access Control (MAC) address of the network adapter or interface card.
mtu | property |
mtu:int
Runtime Versions: | 2 |
The maximum transmission unit (MTU) of this network interface.
If the mtu
value is reported as -1
, then the actual MTU is unknown.
name | property |
name:String
Runtime Versions: | 2 |
The name of this network interface.
parent | property |
parent:NetworkInterface
Runtime Versions: | 2 |
The NetworkInterface object representing the parent interface (if this interface has a parent).
This interface could have a parent if it is a subinterface. The parent
property is null
if this interface has no parent.
subInterfaces | property |
subInterfaces:Vector.<NetworkInterface>
Runtime Versions: | 2 |
The list of subinterfaces attached to this network interface.
Subinterfaces are often virtual interfaces. The subInterfaces
property is null
if this interface has no subinterfaces.
Thu Sep 29 2011, 02:34 AM -07:00