File: Repositories\IDeletableXmlRepository.cs
Web Access
Project: src\src\DataProtection\DataProtection\src\Microsoft.AspNetCore.DataProtection.csproj (Microsoft.AspNetCore.DataProtection)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System;
using System.Collections.Generic;
using System.Xml.Linq;
 
namespace Microsoft.AspNetCore.DataProtection.Repositories;
 
/// <summary>
/// An extension of <see cref="IXmlRepository"/> that supports deletion of elements.
/// </summary>
public interface IDeletableXmlRepository : IXmlRepository
{
    /// <summary>
    /// Deletes selected elements from the repository.
    /// </summary>
    /// <param name="chooseElements">
    /// A snapshot of the elements in this repository.
    /// For each, set <see cref="IDeletableElement.DeletionOrder"/> to a non-<c>null</c> value if it should be deleted.
    /// Elements are deleted in increasing order.  If any deletion fails, the remaining deletions *MUST* be skipped.
    /// </param>
    /// <returns>
    /// True if all deletions succeeded.
    /// </returns>
    bool DeleteElements(Action<IReadOnlyCollection<IDeletableElement>> chooseElements);
}