Show / Hide Table of Contents

Class WifiInterfaceInfo

Class for information about WiFi interfaces.

Inheritance
object
WifiInterfaceInfo
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 WifiInterfaceInfo

Constructors

View Source

WifiInterfaceInfo(string, Guid, int, IEnumerable<WifiProfile>)

Initializes a new instance of the WifiInterfaceInfo class.

Declaration
public WifiInterfaceInfo(string description, Guid id, int index, IEnumerable<WifiProfile> profiles)
Parameters
Type Name Description
string description

The description.

Guid id

The id.

int index

The index.

IEnumerable<WifiProfile> profiles

The profile list.

Properties

View Source

Description

Gets the description.

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

Id

Gets the id.

Declaration
public Guid Id { get; }
Property Value
Type Description
Guid
View Source

Index

Gets the index.

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

Profiles

Gets the profile list.

Declaration
public IEnumerable<WifiProfile> Profiles { get; }
Property Value
Type Description
IEnumerable<WifiProfile>
  • View Source
In This Article
Back to top Generated by DocFX