Relativity.DataExchange.Process.RecordCountEventArgs
Represents the record count event argument data. This class cannot be inherited.
namespace Relativity.DataExchange.Process
{
public sealed class RecordCountEventArgs : EventArgs
{
public int Count { get; }
public RecordCountEventArgs(int count);
}
}