SecurityTokenHandler.CanWriteKeyIdentifierClause 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.
Returns a value that indicates whether the specified key identifier clause can be serialized by this instance.
public:
virtual bool CanWriteKeyIdentifierClause(System::IdentityModel::Tokens::SecurityKeyIdentifierClause ^ securityKeyIdentifierClause);
public virtual bool CanWriteKeyIdentifierClause (System.IdentityModel.Tokens.SecurityKeyIdentifierClause securityKeyIdentifierClause);
abstract member CanWriteKeyIdentifierClause : System.IdentityModel.Tokens.SecurityKeyIdentifierClause -> bool
override this.CanWriteKeyIdentifierClause : System.IdentityModel.Tokens.SecurityKeyIdentifierClause -> bool
Public Overridable Function CanWriteKeyIdentifierClause (securityKeyIdentifierClause As SecurityKeyIdentifierClause) As Boolean
Parameters
- securityKeyIdentifierClause
- SecurityKeyIdentifierClause
The key identifier clause to be checked.
Returns
true
if the key identifier clause can be serialized; otherwise, false
. The default is false
.
Remarks
The default implementation always returns false
.
If you override CanWriteKeyIdentifierClause, you must also override the WriteKeyIdentifierClause method to provide the logic to serialize the key identifier clause.