2017-11-13 10:26:30 +01:00
|
|
|
|
/*
|
2024-03-05 18:37:42 +01:00
|
|
|
|
* Copyright (c) 2024 ETH Zürich, IT Services
|
2017-11-13 10:26:30 +01:00
|
|
|
|
*
|
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
*/
|
|
|
|
|
|
2022-04-19 18:21:29 +02:00
|
|
|
|
using SafeExamBrowser.SystemComponents.Contracts.Network;
|
2024-05-21 19:11:42 +02:00
|
|
|
|
using Windows.Devices.WiFi;
|
2017-11-13 10:26:30 +01:00
|
|
|
|
|
2022-04-19 18:21:29 +02:00
|
|
|
|
namespace SafeExamBrowser.SystemComponents.Network
|
2017-11-13 10:26:30 +01:00
|
|
|
|
{
|
2019-09-04 11:46:30 +02:00
|
|
|
|
internal class WirelessNetwork : IWirelessNetwork
|
2017-11-13 10:26:30 +01:00
|
|
|
|
{
|
2024-05-21 19:11:42 +02:00
|
|
|
|
internal WiFiAvailableNetwork Network { get; set; }
|
2017-11-14 15:43:13 +01:00
|
|
|
|
|
2017-11-13 10:26:30 +01:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public int SignalStrength { get; set; }
|
2022-04-19 18:21:29 +02:00
|
|
|
|
public ConnectionStatus Status { get; set; }
|
2017-11-13 10:26:30 +01:00
|
|
|
|
}
|
|
|
|
|
}
|