2022-09-02 14:56:49 +02:00
|
|
|
|
/*
|
|
|
|
|
* 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/.
|
|
|
|
|
*/
|
2022-08-31 14:11:19 +02:00
|
|
|
|
|
|
|
|
|
namespace SafeExamBrowser.Server.Contracts.Events
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2022-09-02 14:56:49 +02:00
|
|
|
|
/// Event handler used to indicate that a lock screen instruction has been received.
|
2022-08-31 14:11:19 +02:00
|
|
|
|
/// </summary>
|
2022-09-02 14:56:49 +02:00
|
|
|
|
public delegate void LockScreenRequestedEventHandler(string message);
|
|
|
|
|
|
2022-08-31 14:11:19 +02:00
|
|
|
|
}
|