Relativity.DataExchange.Process.ProcessEventArgs
Represents the process event argument data. This class cannot be inherited.
namespace Relativity.DataExchange.Process
{
public sealed class ProcessEventArgs : EventArgs
{
public ProcessEventType EventType { get; }
public string Message { get; }
public string RecordInfo { get; }
public DateTime Timestamp { get; }
public ProcessEventArgs(ProcessEventType eventType, string recordInfo, string message);
}
}