Files
SharepointToolbox-Web/Services/IFileTransferService.cs
T
2026-06-02 10:56:03 +02:00

12 lines
359 B
C#

using Microsoft.SharePoint.Client;
using SharepointToolbox.Web.Core.Models;
namespace SharepointToolbox.Web.Services;
public interface IFileTransferService
{
Task<BulkOperationSummary<string>> TransferAsync(
ClientContext sourceCtx, ClientContext destCtx,
TransferJob job, IProgress<OperationProgress> progress, CancellationToken ct);
}