Class WifiNetwork
WiFi network info.
Inherited Members
Namespace: Microsoft.XboxStudios.DeviceConsole.Environments.Network
Assembly: DeviceConsole.Environments.dll
Syntax
public class WifiNetwork
Constructors
View SourceWifiNetwork(bool, string, int, string, bool, string, bool, string, string, bool, int, IEnumerable<int>, IEnumerable<string>)
Initializes a new instance of the WifiNetwork class.
Declaration
public WifiNetwork(bool isConnected, string authenticationAlgorithm, int channel, string cipherAlgorithm, bool isConnectable, string infrastructureType, bool isProfileAvailable, string profileName, string ssid, bool isSecurityEnabled, int signalQuality, IEnumerable<int> bssid, IEnumerable<string> networkTypes)
Parameters
Type | Name | Description |
---|---|---|
bool | isConnected | Is this already connected to this network. |
string | authenticationAlgorithm | The authentication algorithm. |
int | channel | The channel. |
string | cipherAlgorithm | The cipher algorithm. |
bool | isConnectable | Is this network connectable. |
string | infrastructureType | The infrastructure type. |
bool | isProfileAvailable | Is a profile available. |
string | profileName | The profile name. |
string | ssid | The SSID. |
bool | isSecurityEnabled | Is security enabled. |
int | signalQuality | The signal quality. |
IEnumerable<int> | bssid | The BSSID. |
IEnumerable<string> | networkTypes | The physical types. |
Properties
View SourceAuthenticationAlgorithm
Gets the authentication algorithm.
Declaration
public string AuthenticationAlgorithm { get; }
Property Value
Type | Description |
---|---|
string |
Bssid
Gets the BSSID.
Declaration
public IReadOnlyList<int> Bssid { get; }
Property Value
Type | Description |
---|---|
IReadOnlyList<int> |
Channel
Gets the channel.
Declaration
public int Channel { get; }
Property Value
Type | Description |
---|---|
int |
CipherAlgorithm
Gets the cipher algorithm.
Declaration
public string CipherAlgorithm { get; }
Property Value
Type | Description |
---|---|
string |
InfrastructureType
Gets the infrastructure type - ad hoc or standard.
Declaration
public string InfrastructureType { get; }
Property Value
Type | Description |
---|---|
string |
IsConnectable
Gets a value indicating whether this network is connectable.
Declaration
public bool IsConnectable { get; }
Property Value
Type | Description |
---|---|
bool |
IsConnected
Gets a value indicating whether the device is already connected to this network.
Declaration
public bool IsConnected { get; }
Property Value
Type | Description |
---|---|
bool |
IsProfileAvailable
Gets a value indicating whether a profile is available.
Declaration
public bool IsProfileAvailable { get; }
Property Value
Type | Description |
---|---|
bool |
IsSecurityEnabled
Gets a value indicating whether security is enabled.
Declaration
public bool IsSecurityEnabled { get; }
Property Value
Type | Description |
---|---|
bool |
NetworkTypes
Gets the physical types.
Declaration
public IReadOnlyList<string> NetworkTypes { get; }
Property Value
Type | Description |
---|---|
IReadOnlyList<string> |
ProfileName
Gets the profile name.
Declaration
public string ProfileName { get; }
Property Value
Type | Description |
---|---|
string |
SignalQuality
Gets the signal quality.
Declaration
public int SignalQuality { get; }
Property Value
Type | Description |
---|---|
int |
Ssid
Gets the SSID.
Declaration
public string Ssid { get; }
Property Value
Type | Description |
---|---|
string |