/* * 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.Contracts.Core.Events; using SafeExamBrowser.Contracts.UserInterface.Windows; namespace SafeExamBrowser.Contracts.Core { /// /// Defines an instance of a (third-party) application which can be accessed via the . /// public interface IApplicationInstance { /// /// The unique identifier for the application instance. /// InstanceIdentifier Id { get; } /// /// The name or (document) title of the application instance. /// string Name { get; } /// /// Event fired when the application instance has been terminated. /// event InstanceTerminatedEventHandler Terminated; /// /// Event fired when the name or (document) title of the application instance has changed. /// event NameChangedEventHandler NameChanged; /// /// The main window of the application instance. /// IWindow Window { get; } } }