2019-12-06 23:12:34 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Unosquare.RaspberryIO.Computer {
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Represents a wireless network information.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class WirelessNetworkInfo {
|
2019-12-04 18:57:18 +01:00
|
|
|
|
/// <summary>
|
2019-12-06 23:12:34 +01:00
|
|
|
|
/// Gets the ESSID of the Wireless network.
|
2019-12-04 18:57:18 +01:00
|
|
|
|
/// </summary>
|
2019-12-08 12:34:43 +01:00
|
|
|
|
public String Name {
|
2019-12-06 23:12:34 +01:00
|
|
|
|
get; internal set;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the network quality.
|
|
|
|
|
/// </summary>
|
2019-12-08 12:34:43 +01:00
|
|
|
|
public String Quality {
|
2019-12-06 23:12:34 +01:00
|
|
|
|
get; internal set;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a value indicating whether this instance is encrypted.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Boolean IsEncrypted {
|
|
|
|
|
get; internal set;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-12-04 18:57:18 +01:00
|
|
|
|
}
|