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

Relativity.DataExchange.Transfer.TapiProgressEventArgs

public sealed class TapiProgressEventArgs : EventArgs
Represents Transfer API progress event arguments data. This class cannot be inherited.
namespace Relativity.DataExchange.Transfer { public sealed class TapiProgressEventArgs : EventArgs { public bool Completed { get; } public DateTime EndTime { get; } public long FileBytes { get; } public string FileName { get; } public int LineNumber { get; } public DateTime StartTime { get; } public bool Successful { get; } public string TargetFile { get; set; } public TapiProgressEventArgs(string fileName, string targetFile, bool completed, bool successful, int lineNumber, long fileBytes, DateTime startTime, DateTime endTime); } }