I am trying to retrieve the date that the manifest was signed because I need to compare the date to the expiration date of a certificate. the manifest signature tag seems to contain no timestamp in it.
I am using System.Security.Cryptography.Xml.SignedXml to load a manifest file. I'm unable to determine the method I need to use to extract the date the manifest was signed.
There is no plain text date in the manifest file itself so im assuming its embedded in the signaturevalue or other tag?
Am I taking the wrong approach to this?