System.IdentityModel.Tokens.X509SubjectKeyIdentifierClause
namespace System.IdentityModel.Tokens
{
public class X509SubjectKeyIdentifierClause : BinaryKeyIdentifierClause
{
public X509SubjectKeyIdentifierClause(byte[] ski);
public byte[] GetX509SubjectKeyIdentifier();
public bool Matches(X509Certificate2 certificate);
public static bool TryCreateFrom(X509Certificate2 certificate, out X509SubjectKeyIdentifierClause keyIdentifierClause);
public static bool CanCreateFrom(X509Certificate2 certificate);
}
}