I'm rewriting an application so that we can stop using the old Microsoft.Web.Services2.Security.X509 from Microsoft.Web.Services2.dll and start using System.Security.Cryptography.X509Certificates.
There is one method that I can't figure out, though:
bool Microsoft.Web.Services2.Security.X509.X509Certificate.SupportsDigitalSignature()
I can't find its equivalent in
System.Security.Cryptography.X509Certificates.X509Certificate2
.
Do I even need to test for whether a certificate supports digital signature? I don't see how it cannot...