InternetAddresses Collection



 
The InternetAddresses collection contains all local IP addresses.


Members Table

    The following table lists the members provided by the InternetAddresses collection.

    Members
    Properties Description
    Count The number of IP addresses.
    Methods Description
    Item Returns one item of the collection.

Remarks
    This collection is available through the object Network. Use the InternetAddresses collection to get a list of all local IP addresses.

    Note that the path of a file using SiteKiosk objects must be allowed in the
    SiteKiosk configuration (Security -> Access -> URL's With Script Permission)
    if it is not a browser skin file.
Examples
    The following example shows the number of IP addresses in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Network.InternetAddresses.Count);
    </SCRIPT>
    

Applies to
    SiteKiosk v5.0 (and later versions).

Back to top