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

TapiProgressEventArgs

public sealed class TapiProgressEventArgs : EventArgs
Represents Transfer API progress event arguments data. This class cannot be inherited.
public bool Completed { get; }

Gets a value indicating whether the file transfer has completed. See Successful to determine whether the file transfer is successful or failed.

public DateTime EndTime { get; }

Gets the end transfer time.

public long FileBytes { get; }

Gets the total transferred bytes.

public string FileName { get; }

Gets the transferred file name.

public int LineNumber { get; }

Gets the line number.

public DateTime StartTime { get; }

Gets the start transfer time.

public bool Successful { get; }

Gets a value indicating whether the file was successfully transferred.

public string TargetFile { get; set; }

Gets or sets the full path to the transfer target file.

public TapiProgressEventArgs(string fileName, string targetFile, bool completed, bool successful, int lineNumber, long fileBytes, DateTime startTime, DateTime endTime)

Initializes a new instance of the TapiProgressEventArgs class.