CancellationRequestEventArgs
Represents the cancellation request event argument data. This class cannot be inherited.
using System;
namespace Relativity.DataExchange.Process
{
[Serializable]
public sealed class CancellationRequestEventArgs : EventArgs
{
public Guid ProcessId { get; }
public bool RequestByUser { get; }
public CancellationRequestEventArgs(Guid processId)
: this(processId, true)
{
}
public CancellationRequestEventArgs(Guid processId, bool requestByUser)
{
ProcessId = processId;
RequestByUser = requestByUser;
}
}
}