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

TransferRequest

public sealed class TransferRequest : ITransferRequest
public string Application { get; set; }

public int BatchNumber { get; }

public Guid? ClientRequestId { get; set; }

public TransferContext Context { get; set; }

public TransferDirection Direction { get; set; }

public Guid? JobId { get; set; }

public string Name { get; set; }

public IReadOnlyList<TransferPath> Paths { get; }

public bool RemotePathsInUncFormat { get; set; }

public IRetryStrategy RetryStrategy { get; set; }

public bool SubmitApmMetrics { get; set; }

public object Tag { get; set; }

public string TargetPath { get; set; }

public int TotalBatchCount { get; }

public TransferRequest()

public TransferRequest(TransferDirection direction, IEnumerable<TransferPath> paths, string targetPath, TransferContext context)

public static TransferRequest ForDownload(TransferPath path, string targetPath)

public static TransferRequest ForDownload(TransferPath path, string targetPath, TransferContext context)

public static TransferRequest ForDownload(IEnumerable<TransferPath> paths, string targetPath)

public static TransferRequest ForDownload(IEnumerable<TransferPath> paths, string targetPath, TransferContext context)

public static TransferRequest ForDownloadJob(string targetPath)

public static TransferRequest ForDownloadJob(string targetPath, TransferContext context)

public static TransferRequest ForUpload(TransferPath path, string targetPath)

public static TransferRequest ForUpload(TransferPath path, string targetPath, TransferContext context)

public static TransferRequest ForUpload(IEnumerable<TransferPath> paths, string targetPath)

public static TransferRequest ForUpload(IEnumerable<TransferPath> paths, string targetPath, TransferContext context)

public static TransferRequest ForUploadJob()

public static TransferRequest ForUploadJob(string targetPath)

public static TransferRequest ForUploadJob(string targetPath, TransferContext context)

public static TransferRequest FromSearchResult(EnumeratedPathsResult searchPathsResult)

public static TransferRequest FromSearchResult(EnumeratedPathsResult searchPathsResult, TransferContext context)

public void AddPath(TransferPath path)

public void AddPaths(IEnumerable<TransferPath> paths)

public void AddPaths(SerializedBatch batch)

public void Clear()

public void ClearPaths()