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