SecurityTokenSerializer.ReadKeyIdentifierCore(XmlReader) Method

Definition

Reads the key identifier clause using specified XML reader. Called by the base class.

protected:
 abstract System::IdentityModel::Tokens::SecurityKeyIdentifier ^ ReadKeyIdentifierCore(System::Xml::XmlReader ^ reader);
protected abstract System.IdentityModel.Tokens.SecurityKeyIdentifier ReadKeyIdentifierCore (System.Xml.XmlReader reader);
abstract member ReadKeyIdentifierCore : System.Xml.XmlReader -> System.IdentityModel.Tokens.SecurityKeyIdentifier
Protected MustOverride Function ReadKeyIdentifierCore (reader As XmlReader) As SecurityKeyIdentifier

Parameters

reader
XmlReader

An XmlReader to read the key identifier.

Returns

A SecurityKeyIdentifier that represents the key identifier that is read.

Exceptions

reader is null.

Remarks

Classes that derive from the SecurityTokenSerializer class must override the ReadKeyIdentifierCore(XmlReader) method. The ReadKeyIdentifier(XmlReader) method calls the ReadKeyIdentifierCore(XmlReader) method.

Applies to