3 implementations of DeletionOrder
Microsoft.AspNetCore.DataProtection (3)
Repositories\EphemeralXmlRepository.cs (1)
113public int? DeletionOrder { get; set; }
Repositories\FileSystemXmlRepository.cs (1)
234public int? DeletionOrder { get; set; }
Repositories\RegistryXmlRepository.cs (1)
215public int? DeletionOrder { get; set; }
3 writes to DeletionOrder
Microsoft.AspNetCore.DataProtection (3)
KeyManagement\XmlKeyManager.cs (3)
452deletableElementsArray[i].DeletionOrder = deletionOrderKey; 460deletableElementsArray[i].DeletionOrder = deletionOrderMassRevocation; 473deletableElementsArray[i].DeletionOrder = deletionOrderRevocation;
1 reference to DeletionOrder
Microsoft.AspNetCore.DataProtection (1)
Repositories\IDeletableXmlRepository.cs (1)
20/// For each, set <see cref="IDeletableElement.DeletionOrder"/> to a non-<c>null</c> value if it should be deleted.