12 implementations of StoreElement
KeyManagementSimulator (1)
Program.cs (1)
538void IXmlRepository.StoreElement(XElement element, string _friendlyName)
Microsoft.AspNetCore.DataProtection (3)
Repositories\EphemeralXmlRepository.cs (1)
45public void StoreElement(XElement element, string friendlyName)
Repositories\FileSystemXmlRepository.cs (1)
118public virtual void StoreElement(XElement element, string friendlyName)
Repositories\RegistryXmlRepository.cs (1)
136public virtual void StoreElement(XElement element, string friendlyName)
Microsoft.AspNetCore.DataProtection.EntityFrameworkCore (1)
EntityFrameworkCoreXmlRepository.cs (1)
66public void StoreElement(XElement element, string friendlyName)
Microsoft.AspNetCore.DataProtection.StackExchangeRedis (1)
RedisXmlRepository.cs (1)
53public void StoreElement(XElement element, string friendlyName)
Microsoft.AspNetCore.DataProtection.Tests (2)
KeyManagement\XmlKeyManagerTests.cs (2)
1008void IXmlRepository.StoreElement(XElement element, string friendlyName) => throw new InvalidOperationException(); 1018void IXmlRepository.StoreElement(XElement element, string friendlyName) => throw new InvalidOperationException();
Microsoft.AspNetCore.Http.Connections.Tests (1)
src\SignalR\common\Shared\EphemeralDataProtectionProvider.cs (1)
35 public void StoreElement(XElement element, string friendlyName)
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (1)
src\SignalR\common\Shared\EphemeralDataProtectionProvider.cs (1)
35 public void StoreElement(XElement element, string friendlyName)
Microsoft.AspNetCore.SignalR.Tests (1)
src\SignalR\common\Shared\EphemeralDataProtectionProvider.cs (1)
35 public void StoreElement(XElement element, string friendlyName)
SignalR.Client.FunctionalTestApp (1)
src\SignalR\common\Shared\EphemeralDataProtectionProvider.cs (1)
35 public void StoreElement(XElement element, string friendlyName)
8 references to StoreElement
Microsoft.AspNetCore.DataProtection (3)
KeyManagement\XmlKeyManager.cs (3)
397KeyRepository.StoreElement(revocationElement, friendlyName); 554KeyRepository.StoreElement(possiblyEncryptedKeyElement, friendlyName); 641KeyRepository.StoreElement(revocationElement, friendlyName);
Microsoft.AspNetCore.DataProtection.Tests (5)
Internal\KeyManagementOptionsPostSetupTest.cs (1)
187repository.StoreElement(xElement, friendlyName: null);
KeyManagement\XmlKeyManagerTests.cs (4)
95.Setup(o => o.StoreElement(It.IsAny<XElement>(), It.IsAny<string>())) 184.Setup(o => o.StoreElement(It.IsAny<XElement>(), It.IsAny<string>())) 620.Setup(o => o.StoreElement(It.IsAny<XElement>(), It.IsAny<string>())) 670.Setup(o => o.StoreElement(It.IsAny<XElement>(), It.IsAny<string>()))