3 implementations of Element
Microsoft.AspNetCore.DataProtection (3)
Repositories\EphemeralXmlRepository.cs (1)
107public XElement Element { get; }
Repositories\FileSystemXmlRepository.cs (1)
228public XElement Element { get; }
Repositories\RegistryXmlRepository.cs (1)
209public XElement Element { get; }
7 references to Element
Microsoft.AspNetCore.DataProtection (1)
KeyManagement\XmlKeyManager.cs (1)
434var allElements = deletableElements.Select(d => d.Element).ToArray();
Microsoft.AspNetCore.DataProtection.Tests (6)
Repositories\EphemeralXmlRepositoryTests.cs (2)
66switch (element.Element.Name.LocalName) 75Assert.Fail("Unexpected element name: " + element.Element.Name.LocalName);
Repositories\FileSystemXmlRepositoryTests.cs (2)
172switch (element.Element.Name.LocalName) 181Assert.Fail("Unexpected element name: " + element.Element.Name.LocalName);
Repositories\RegistryXmlRepositoryTests.cs (2)
159switch (element.Element.Name.LocalName) 168Assert.Fail("Unexpected element name: " + element.Element.Name.LocalName);