/*
* Copyright (c) 2017 ETH Zürich, Educational Development and Technology (LET)
*
* 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/.
*/
using System.Collections.Generic;
using SafeExamBrowser.Contracts.SystemComponents;
namespace SafeExamBrowser.Contracts.UserInterface.Taskbar
{
public delegate void WirelessNetworkSelectedEventHandler(IWirelessNetwork network);
public interface ISystemWirelessNetworkControl : ISystemControl
{
///
/// Defines whether the computer has a wireless network adapter.
///
bool HasWirelessNetworkAdapter { set; }
///
/// Sets the current wireless network status.
///
WirelessNetworkStatus NetworkStatus { set; }
///
/// Event fired when the user selected a wireless network.
///
event WirelessNetworkSelectedEventHandler NetworkSelected;
///
/// Updates the list of available networks.
///
void Update(IEnumerable networks);
}
}