/* * Copyright (c) 2018 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; namespace SafeExamBrowser.Contracts.Configuration { public interface IRuntimeInfo { /// /// The path of the application data folder. /// string AppDataFolder { get; } /// /// The point in time when the application was started. /// DateTime ApplicationStartTime { get; } /// /// The path where the browser cache is to be stored. /// string BrowserCachePath { get; } /// /// The file path under which the log of the browser component is to be stored. /// string BrowserLogFile { get; } /// /// The communication address of the client component. /// /// TODO: Will need to be updated for each new client instance! /// /// string ClientAddress { get; } /// /// The executable path of the client compontent. /// string ClientExecutablePath { get; } /// /// The unique identifier for the currently running client instance. /// /// TODO: Will need to be updated for each new client instance! -> Remove if unused! /// /// Guid ClientId { get; } /// /// The file path under which the log of the client component is to be stored. /// string ClientLogFile { get; } /// /// The default file name for application settings. /// string DefaultSettingsFileName { get; } /// /// The copyright information for the application (i.e. the executing assembly). /// string ProgramCopyright { get; } /// /// The path of the program data folder. /// string ProgramDataFolder { get; } /// /// The program title of the application (i.e. the executing assembly). /// string ProgramTitle { get; } /// /// The program version of the application (i.e. the executing assembly). /// string ProgramVersion { get; } /// /// The communication address of the runtime component. /// string RuntimeAddress { get; } /// /// The unique identifier for the currently running runtime instance. /// /// TODO: Remove if unused! /// /// Guid RuntimeId { get; } /// /// The file path under which the log of the runtime component is to be stored. /// string RuntimeLogFile { get; } /// /// The communication address of the service component. /// string ServiceAddress { get; } } }