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)
62switch (element.Element.Name.LocalName) 71Assert.Fail("Unexpected element name: " + element.Element.Name.LocalName);
Repositories\FileSystemXmlRepositoryTests.cs (2)
167switch (element.Element.Name.LocalName) 176Assert.Fail("Unexpected element name: " + element.Element.Name.LocalName);
Repositories\RegistryXmlRepositoryTests.cs (2)
155switch (element.Element.Name.LocalName) 164Assert.Fail("Unexpected element name: " + element.Element.Name.LocalName);