WifiNetworkInterface[] GetInterfaces()

Retrieves a list of all active WiFi interfaces.

Security

Trust Level Required: Full Trust

Return

An array of WifiNetworkInterface objects that represent a list of active WiFi interfaces.

Remarks

This function is synchronous, and will block until the call is completed.

Examples


var interfaces = KioWiFi.GetInterfaces();
for (var i = 0; i < interfaces.length) {
    alert(interfaces[i].interfaceName);
}

Requirements

KioWare for Windows version 8.14 or greater.