SecurityTokenSerializer.CanWriteKeyIdentifierCore Method

Definition

Determines whether this serializer can write the specified key identifier. Called by the base class.

protected:
 abstract bool CanWriteKeyIdentifierCore(System::IdentityModel::Tokens::SecurityKeyIdentifier ^ keyIdentifier);
protected abstract bool CanWriteKeyIdentifierCore (System.IdentityModel.Tokens.SecurityKeyIdentifier keyIdentifier);
abstract member CanWriteKeyIdentifierCore : System.IdentityModel.Tokens.SecurityKeyIdentifier -> bool
Protected MustOverride Function CanWriteKeyIdentifierCore (keyIdentifier As SecurityKeyIdentifier) As Boolean

Parameters

keyIdentifier
SecurityKeyIdentifier

A SecurityKeyIdentifier that represents the key identifier to write.

Returns

true when this serializer can write the specified key identifier; otherwise, false.

Exceptions

keyIdentifier is null.

Remarks

Classes that derive from the SecurityTokenSerializer class must override the CanWriteKeyIdentifierCore(SecurityKeyIdentifier) method. The CanWriteKeyIdentifier(SecurityKeyIdentifier) method calls the CanWriteKeyIdentifierCore(SecurityKeyIdentifier) method.

Applies to