System.IdentityModel.Tokens.SecurityKeyIdentifierClause
namespace System.IdentityModel.Tokens
{
public abstract class SecurityKeyIdentifierClause
{
public virtual bool CanCreateKey { get; }
public string ClauseType { get; }
public string Id { get; set; }
public int DerivationLength { get; }
protected SecurityKeyIdentifierClause(string clauseType);
protected SecurityKeyIdentifierClause(string clauseType, byte[] nonce, int length);
public virtual SecurityKey CreateKey();
public virtual bool Matches(SecurityKeyIdentifierClause keyIdentifierClause);
public byte[] GetDerivationNonce();
}
}