12 implementations of GetAllElements
KeyManagementSimulator (1)
Program.cs (1)
530IReadOnlyCollection<XElement> IXmlRepository.GetAllElements()
Microsoft.AspNetCore.DataProtection (3)
Repositories\EphemeralXmlRepository.cs (1)
27public IReadOnlyCollection<XElement> GetAllElements()
Repositories\FileSystemXmlRepository.cs (1)
69public virtual IReadOnlyCollection<XElement> GetAllElements()
Repositories\RegistryXmlRepository.cs (1)
56public virtual IReadOnlyCollection<XElement> GetAllElements()
Microsoft.AspNetCore.DataProtection.EntityFrameworkCore (1)
EntityFrameworkCoreXmlRepository.cs (1)
41public virtual IReadOnlyCollection<XElement> GetAllElements()
Microsoft.AspNetCore.DataProtection.StackExchangeRedis (1)
RedisXmlRepository.cs (1)
33public IReadOnlyCollection<XElement> GetAllElements()
Microsoft.AspNetCore.DataProtection.Tests (2)
KeyManagement\XmlKeyManagerTests.cs (2)
1007IReadOnlyCollection<XElement> IXmlRepository.GetAllElements() => []; 1017IReadOnlyCollection<XElement> IXmlRepository.GetAllElements() => [];
Microsoft.AspNetCore.Http.Connections.Tests (1)
src\SignalR\common\Shared\EphemeralDataProtectionProvider.cs (1)
17 public IReadOnlyCollection<XElement> GetAllElements()
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (1)
src\SignalR\common\Shared\EphemeralDataProtectionProvider.cs (1)
17 public IReadOnlyCollection<XElement> GetAllElements()
Microsoft.AspNetCore.SignalR.Tests (1)
src\SignalR\common\Shared\EphemeralDataProtectionProvider.cs (1)
17 public IReadOnlyCollection<XElement> GetAllElements()
SignalR.Client.FunctionalTestApp (1)
src\SignalR\common\Shared\EphemeralDataProtectionProvider.cs (1)
17 public IReadOnlyCollection<XElement> GetAllElements()
3 references to GetAllElements
Microsoft.AspNetCore.DataProtection (1)
KeyManagement\XmlKeyManager.cs (1)
166var allElements = KeyRepository.GetAllElements();
Microsoft.AspNetCore.DataProtection.Tests (2)
KeyManagement\XmlKeyManagerTests.cs (2)
599mockXmlRepository.Setup(o => o.GetAllElements()).Returns(XElement.Parse(xml).Elements().ToArray()); 896.Setup(o => o.GetAllElements())