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

kCura.WinEDDS.ExportEventArgs

public class ExportEventArgs
namespace kCura.WinEDDS { public class ExportEventArgs { protected int _documentsExported; protected int _totalDocuments; protected EventType2 _eventType; protected string _message; protected object _additionalInfo; protected Statistics _statistics; public int DocumentsExported { get; set; } public int TotalDocuments { get; set; } public EventType2 EventType { get; set; } public string Message { get; set; } public object AdditionalInfo { get; } public Statistics Statistics { get; } public ExportEventArgs(int documentsExported, int totalDocuments, object additionalInfo, Statistics statistics); public ExportEventArgs(int documentsExported, int totalDocuments, string message, EventType2 eventType, object additionalInfo, Statistics statistics); } }