SecurityTokenSerializer.CanWriteKeyIdentifier(SecurityKeyIdentifier) 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.
public:
bool CanWriteKeyIdentifier(System::IdentityModel::Tokens::SecurityKeyIdentifier ^ keyIdentifier);
public bool CanWriteKeyIdentifier (System.IdentityModel.Tokens.SecurityKeyIdentifier keyIdentifier);
member this.CanWriteKeyIdentifier : System.IdentityModel.Tokens.SecurityKeyIdentifier -> bool
Public Function CanWriteKeyIdentifier (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.