SamlSecurityTokenHandler.ReadSubject(XmlReader) Method

Definition

Reads the <saml:Subject> element.

protected:
 virtual System::IdentityModel::Tokens::SamlSubject ^ ReadSubject(System::Xml::XmlReader ^ reader);
protected virtual System.IdentityModel.Tokens.SamlSubject ReadSubject (System.Xml.XmlReader reader);
abstract member ReadSubject : System.Xml.XmlReader -> System.IdentityModel.Tokens.SamlSubject
override this.ReadSubject : System.Xml.XmlReader -> System.IdentityModel.Tokens.SamlSubject
Protected Overridable Function ReadSubject (reader As XmlReader) As SamlSubject

Parameters

reader
XmlReader

An XmlReader positioned at the element to read.

Returns

A SamlSubject that represents the Subject element that was read.

Exceptions

reader is null.

Remarks

The default implementation does not handle the optional <EncryptedID> element. To handle encrypted IDs in the Subject, override this method.

Applies to