Update Safe Exam Browser Patch to 3.10.0.826

This commit is contained in:
2025-09-16 16:32:31 +02:00
parent 4827ae1afc
commit dd82d45ed8
320 changed files with 8445 additions and 5295 deletions

View File

@@ -18,26 +18,11 @@ namespace SafeExamBrowser.Proctoring.Contracts
/// </summary>
public interface IProctoringController
{
/// <summary>
/// Indicates whether the hand is currently raised.
/// </summary>
bool IsHandRaised { get; }
/// <summary>
/// The notifications for all active proctoring providers.
/// </summary>
IEnumerable<INotification> Notifications { get; }
/// <summary>
/// Fired when the hand has been lowered.
/// </summary>
event ProctoringEventHandler HandLowered;
/// <summary>
/// Fired when the hand has been raised.
/// </summary>
event ProctoringEventHandler HandRaised;
/// <summary>
/// Event fired when the status of the remaining work has been updated.
/// </summary>
@@ -58,16 +43,6 @@ namespace SafeExamBrowser.Proctoring.Contracts
/// </summary>
void Initialize(ProctoringSettings settings);
/// <summary>
/// Lowers the hand.
/// </summary>
void LowerHand();
/// <summary>
/// Raises the hand, optionally with the given message.
/// </summary>
void RaiseHand(string message = default);
/// <summary>
/// Stops the proctoring functionality. Make sure to call <see cref="ExecuteRemainingWork"/> beforehand if necessary.
/// </summary>