9 lines
236 B
C#
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);
|
|
}
|