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

9 lines
236 B
C#

using Microsoft.SharePoint.Client;
namespace SharepointToolbox.Web.Services;
public interface IOwnershipElevationService
{
Task ElevateAsync(ClientContext tenantAdminCtx, string siteUrl, string loginName, CancellationToken ct);
}