SecurityTokenSerializer.CanWriteKeyIdentifierCore Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.