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

ShowReportEventArgs

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