AsperaClientLimits
namespace Relativity.Transfer.Aspera
{
internal class AsperaClientLimits : ClientLimits
{
private const int AsperaMaxSupportedPathLength = 513;
private const int AsperaDocRootBufferLength = 43;
public AsperaClientLimits()
{
base.MaxSupportedPathLength = 470;
}
}
}