TwclWiFiAvailableNetwork Record

The record contains information about an available wireless network.

Namespace: wclWiFi
type
 TwclWiFiAvailableNetwork = record
 end;

The TwclWiFiAvailableNetwork type exposes the following members.

Show:
 NameDescription
BssType

Specifies whether the network is infrastructure or ad hoc.

DefaultAuthAlgorithm

Indicates the default authentication algorithm used to join this network for the first time.

DefaultCipherAlgorithm

Indicates the default cipher algorithm to be used when joining this network.

Flags

Various flags for the network.

MorePhyTypes

Specifies if there are more than 8 PHY types supported.

When this member is set to True, an application must call EnumBss of the TwclWiFiClient component to get the complete list of PHY types. The returned TwclWiFiBssArray has an array of TwclWiFiBss records. The PhyId member of the TwclWiFiBss record contains the PHY type for an entry.

NetworkConnectable

Indicates whether the network is connectable or not. If set to True, the network is connectable, otherwise the network cannot be connected to.

NotConnectableReason

Indicates why a network cannot be connected to. This member is only valid when NetworkConnectable is False.

NumberOfBssids

Indicates the number of BSSIDs in the network.

PhyTypes

Contains a set of TwclWiFiPhy values that represent the PHY types supported by the available networks. If the netxowkr supports more than 8 PHYs, this set contains only the first 8 PHY types.

ProfileName

Contains the profile name associated with the network. If the network does not have a profile, this member will be empty. If multiple profiles are associated with the network, there will be multiple entries with the same SSID in the visible network list. Profile names are case-sensitive.

SecurityEnabled

Indicates whether security is enabled on the network. A value of True indicates that security is enabled, otherwise it is not.

SignalQuality

A percentage value that represents the signal quality of the network. This member contains a value between 0 and 100. A value of 0 implies an actual RSSI signal strength of -100 dbm. A value of 100 implies an actual RSSI signal strength of -50 dbm. You can calculate the RSSI signal strength value for SignalQuality values between 1 and 99 using linear interpolation.

Ssid

The SSID of the visible wireless network.

Top