/* * Copyright (c) 2019 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 SafeExamBrowser.UserInterface.Contracts.Shell.Events; namespace SafeExamBrowser.UserInterface.Contracts.Shell { /// /// The control of the wireless network system component. /// public interface ISystemWirelessNetworkControl : ISystemControl { /// /// Defines whether the computer has a wireless network adapter. /// bool HasWirelessNetworkAdapter { set; } /// /// Indicates to the user that a wireless network connection is being established. /// bool IsConnecting { set; } // TODO ///// ///// Sets the current wireless network status. ///// //WirelessNetworkStatus NetworkStatus { set; } /// /// Event fired when the user selected a wireless network. /// event WirelessNetworkSelectedEventHandler NetworkSelected; // TODO ///// ///// Updates the list of available networks. ///// //void Update(IEnumerable networks); } }