/* * Copyright (c) 2022 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/. */ namespace SafeExamBrowser.Configuration.Contracts { /// /// Defines all possible results of an attempt to load a configuration resource. /// public enum LoadStatus { /// /// Indicates that a resource contains invalid data. /// InvalidData, /// /// Indicates that a resource needs to be loaded with the browser. /// LoadWithBrowser, /// /// Indicates that a resource is not supported. /// NotSupported, /// /// Indicates that a password is needed in order to decrypt the configuration. /// PasswordNeeded, /// /// The configuration was loaded successfully. /// Success, /// /// An unexpected error occurred while trying to load the configuration. /// UnexpectedError } }