Relativity.DataExchange.Transfer.TapiProgressEventArgs
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);
}
}