I have an X509Certificate2 property, and I want to check in the set section, if the value that was set is empty.
When I try to access to any X509Certificate2 property such as publickey, I got this exception:
System.Security.Cryptography.CryptographicException occurred in mscorlib.dll.
sure, I can write something such this example:
private static X509Certificate2 _certificate;
public X509Certificate2 Certificate
{
get
{
return _certificate;
}
set
{
try
{
if (value.PublicKey != null)
_certificate = value;
}
catch(CryptographicException)
{
_certificate = null;
}
}
}
but I want a nicer way, does any one have an idea?
valueis not null? – Groo Dec 18 '11 at 13:51valuewere null, I bet he would get aNullReferenceExceptioninstead of aCryptographicExceptionwhen trying to accessvalue.PublicKey– yas4891 Dec 18 '11 at 13:54