1 write to KeyInfo
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\SignedXml.cs (1)
218set { m_signature.KeyInfo = value; }
5 references to KeyInfo
Microsoft.DotNet.SignCheckLibrary (2)
Verification\XmlVerifier.cs (2)
58if (signedXml.Signature.KeyInfo.OfType<KeyInfoX509Data>().Count() == 0) 63ArrayList certificates = signedXml.Signature.KeyInfo.OfType<KeyInfoX509Data>().First().Certificates;
System.Security.Cryptography.Xml (3)
System\Security\Cryptography\Xml\Signature.cs (2)
116if (KeyInfo.Count > 0) 117signatureElement.AppendChild(KeyInfo.GetXml(document));
System\Security\Cryptography\Xml\SignedXml.cs (1)
217get { return m_signature.KeyInfo; }