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

RetryOptions

public enum RetryOptions
Defines a set of configurable flags to control retry behavior.
using System; namespace Relativity.DataExchange.Io { [Flags] public enum RetryOptions { None = 0, FileNotFound = 1, DirectoryNotFound = 2, DiskFull = 4, Io = 8, Permissions = 16, All = 31 } }