44 lines
1.2 KiB
C#
44 lines
1.2 KiB
C#
/*
|
|
* Copyright (c) 2021 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 SafeExamBrowser.Communication.Contracts.Hosts;
|
|
using SafeExamBrowser.Communication.Contracts.Proxies;
|
|
using SafeExamBrowser.Core.Contracts.OperationModel;
|
|
using SafeExamBrowser.Logging.Contracts;
|
|
using SafeExamBrowser.WindowsApi.Contracts;
|
|
|
|
namespace SafeExamBrowser.Runtime.Operations
|
|
{
|
|
internal class ClientTerminationOperation : ClientOperation
|
|
{
|
|
public ClientTerminationOperation(
|
|
ILogger logger,
|
|
IProcessFactory processFactory,
|
|
IProxyFactory proxyFactory,
|
|
IRuntimeHost runtimeHost,
|
|
SessionContext sessionContext,
|
|
int timeout_ms) : base(logger, processFactory, proxyFactory, runtimeHost, sessionContext, timeout_ms)
|
|
{
|
|
}
|
|
|
|
public override OperationResult Perform()
|
|
{
|
|
return OperationResult.Success;
|
|
}
|
|
|
|
public override OperationResult Repeat()
|
|
{
|
|
return base.Revert();
|
|
}
|
|
|
|
public override OperationResult Revert()
|
|
{
|
|
return OperationResult.Success;
|
|
}
|
|
}
|
|
}
|