<PackageReference Include="Relativity.Server.Import.SDK" Version="2.9.2" />

ProcessEventArgs

public sealed class ProcessEventArgs : EventArgs
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; } } }