1 write to certificate
System.IdentityModel (1)
System\IdentityModel\Tokens\X509SecurityToken.cs (1)
54
this.
certificate
= clone ? new X509Certificate2(certificate) : certificate;
14 references to certificate
System.IdentityModel (14)
System\IdentityModel\Tokens\X509SecurityToken.cs (14)
72
temp.Add(new X509AsymmetricSecurityKey(this.
certificate
));
85
this.effectiveTime = this.
certificate
.NotBefore.ToUniversalTime();
96
this.expirationTime = this.
certificate
.NotAfter.ToUniversalTime();
106
return this.
certificate
;
114
return X509SubjectKeyIdentifierClause.CanCreateFrom(
certificate
);
128
if (X509SubjectKeyIdentifierClause.TryCreateFrom(
certificate
, out x509KeyIdentifierClause))
133
return new X509ThumbprintKeyIdentifierClause(
certificate
) as T;
137
return new X509IssuerSerialKeyIdentifierClause(
certificate
) as T;
141
return new X509RawDataKeyIdentifierClause(
certificate
) as T;
152
return subjectKeyIdentifierClause.Matches(
certificate
);
156
return thumbprintKeyIdentifierClause.Matches(
certificate
);
160
return issuerKeyIdentifierClause.Matches(
certificate
);
164
return rawCertKeyIdentifierClause.Matches(
certificate
);
174
this.
certificate
.Reset();