Show / Hide Table of Contents

Class WifiNetwork

WiFi network info.

Inheritance
object
WifiNetwork
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Microsoft.XboxStudios.DeviceConsole.Environments.Network
Assembly: DeviceConsole.Environments.dll
Syntax
public class WifiNetwork

Constructors

View Source

WifiNetwork(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 Source

AuthenticationAlgorithm

Gets the authentication algorithm.

Declaration
public string AuthenticationAlgorithm { get; }
Property Value
Type Description
string
View Source

Bssid

Gets the BSSID.

Declaration
public IReadOnlyList<int> Bssid { get; }
Property Value
Type Description
IReadOnlyList<int>
View Source

Channel

Gets the channel.

Declaration
public int Channel { get; }
Property Value
Type Description
int
View Source

CipherAlgorithm

Gets the cipher algorithm.

Declaration
public string CipherAlgorithm { get; }
Property Value
Type Description
string
View Source

InfrastructureType

Gets the infrastructure type - ad hoc or standard.

Declaration
public string InfrastructureType { get; }
Property Value
Type Description
string
View Source

IsConnectable

Gets a value indicating whether this network is connectable.

Declaration
public bool IsConnectable { get; }
Property Value
Type Description
bool
View Source

IsConnected

Gets a value indicating whether the device is already connected to this network.

Declaration
public bool IsConnected { get; }
Property Value
Type Description
bool
View Source

IsProfileAvailable

Gets a value indicating whether a profile is available.

Declaration
public bool IsProfileAvailable { get; }
Property Value
Type Description
bool
View Source

IsSecurityEnabled

Gets a value indicating whether security is enabled.

Declaration
public bool IsSecurityEnabled { get; }
Property Value
Type Description
bool
View Source

NetworkTypes

Gets the physical types.

Declaration
public IReadOnlyList<string> NetworkTypes { get; }
Property Value
Type Description
IReadOnlyList<string>
View Source

ProfileName

Gets the profile name.

Declaration
public string ProfileName { get; }
Property Value
Type Description
string
View Source

SignalQuality

Gets the signal quality.

Declaration
public int SignalQuality { get; }
Property Value
Type Description
int
View Source

Ssid

Gets the SSID.

Declaration
public string Ssid { get; }
Property Value
Type Description
string
  • View Source
In This Article
Back to top Generated by DocFX