SamlSecurityTokenHandler.ReadAdvice(XmlReader) Method

Definition

Reads the <saml:Advice> element.

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

Parameters

reader
XmlReader

An XmlReader positioned at the element to read.

Returns

A SamlAdvice that represents the Advice element that is read.

Exceptions

reader is null.

Remarks

The Advice element has an extensibility point to allow XML elements from non-SAML 1.1 namespaces to be included. By default, because the Advice may be ignored without affecting the semantics of the assertion, any such elements are ignored. To handle the processing of those elements, override this method.

Applies to