/*
* 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/.
*/
namespace SafeExamBrowser.Contracts.Configuration
{
///
/// Defines all possible results of an attempt to load a configuration resource.
///
public enum LoadStatus
{
///
/// Indicates that a resource does not comply with the declared data format.
///
InvalidData = 1,
///
/// 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 load the settings.
///
PasswordNeeded,
///
/// The settings were loaded successfully.
///
Success,
///
/// An unexpected error occurred while trying to load the settings.
///
UnexpectedError
}
}