DownloadTapiBridgeParameters2
Represents the generic parameters to setup a Transfer API bridge for upload. This class cannot be inherited, backwards compatibility isn't guaranteed, and should never be consumed by API users.
namespace Relativity.DataExchange.Transfer
{
public sealed class DownloadTapiBridgeParameters2 : TapiBridgeParameters2
{
public DownloadTapiBridgeParameters2()
{
base.FileNotFoundErrorsRetry = false;
base.FileNotFoundErrorsDisabled = true;
base.PermissionErrorsRetry = false;
}
public DownloadTapiBridgeParameters2(TapiBridgeParameters2 copy)
: base(copy)
{
}
public DownloadTapiBridgeParameters2 ShallowCopy()
{
return new DownloadTapiBridgeParameters2(this);
}
}
}