<PackageReference Include="Relativity.Server.Transfer.SDK" Version="24000.0.1" />

Relativity.Transfer.LargeFileProgressEventArgs

namespace Relativity.Transfer { public class LargeFileProgressEventArgs : EventArgs { public TransferPath Path { get; } public int ChunkNumber { get; } public double Progress { get; } public long TotalBytes { get; } public int TotalChunks { get; } public long TotalTransferredBytes { get; } public LargeFileProgressEventArgs(TransferPath path, long totalTransferredBytes, long totalBytes, double progress); public LargeFileProgressEventArgs(TransferPath path, long totalTransferredBytes, long totalBytes, int chunkNumber, int totalChunks); } }