ProcessEventArgs
Represents the process event argument data. This class cannot be inherited.
using System;
namespace Relativity.DataExchange.Process
{
[Serializable]
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)
{
EventType = eventType;
RecordInfo = recordInfo;
Message = message;
Timestamp = DateTime.Now;
}
}
}