TapiLargeFileProgressEventArgs
Represents a Transfer API transfer large file progress event arguments data. This class cannot be inherited.
using Relativity.Transfer;
using System;
namespace Relativity.DataExchange.Transfer
{
public sealed class TapiLargeFileProgressEventArgs : EventArgs
{
public double Progress { get; }
public long TotalRequestBytes { get; }
public long TotalTransferredBytes { get; }
public int LineNumber => Path.get_Order();
public TransferPath Path { get; }
public TapiLargeFileProgressEventArgs(TransferPath path, long totalRequestBytes, long totalTransferredBytes, double progress)
{
Path = path;
Progress = progress;
TotalRequestBytes = totalRequestBytes;
TotalTransferredBytes = totalTransferredBytes;
}
}
}