ShowReportEventArgs
Represents the show report event argument data. This class cannot be inherited.
using System;
using System.Data;
namespace Relativity.DataExchange.Process
{
public sealed class ShowReportEventArgs : EventArgs
{
public DataTable Report { get; }
public bool MaxLengthExceeded { get; }
public ShowReportEventArgs(DataTable report, bool maxLengthExceeded)
{
if (report == null)
throw new ArgumentNullException("report");
Report = report;
MaxLengthExceeded = maxLengthExceeded;
}
}
}