roNetworkDetached
Â
This object implements the ifInt interface to report the index of a detached network interface. Instances of this object are posted by roNetworkHotplug when a configured network connection becomes unavailable. The JavaScript equivalent is networkhotplug.
ifInt
GetInt() As Integer
Returns the interface ID of the event. This method returns -1 VLAN interfaces; use GetString()
to retrieve the interface name.
SetInt(value As Integer) As Void
Sets the value that will be returned by GetInt()
.Â
ifString
GetString() As String
Returns the interface name ("eth0", "wlan0", "ppp0") of the roNetworkConfiguration instance associated with the event.Â
SetString(value As String) As Void
Sets the value that will be returned by GetString()
.Â
ifUserData
SetUserData(user_data As Object)
Sets the user data.
GetUserData() As Object
Returns the user data that has previously been set via SetUserData()
 (either on the source or event object). This method will return Invalid if no data has been set.
Â
Â