Saml2Serializer.ReadAttribute(XmlDictionaryReader) 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.
Reads a Saml2Attribute.
public virtual Microsoft.IdentityModel.Tokens.Saml2.Saml2Attribute ReadAttribute (System.Xml.XmlDictionaryReader reader);
abstract member ReadAttribute : System.Xml.XmlDictionaryReader -> Microsoft.IdentityModel.Tokens.Saml2.Saml2Attribute
override this.ReadAttribute : System.Xml.XmlDictionaryReader -> Microsoft.IdentityModel.Tokens.Saml2.Saml2Attribute
Public Overridable Function ReadAttribute (reader As XmlDictionaryReader) As Saml2Attribute
Parameters
- reader
- XmlDictionaryReader
An XmlReader positioned at a Saml2Attribute element.
Returns
A Saml2Attribute instance.
Exceptions
If reader
is null.
Remarks
The default implementation requires that the content of the Attribute element be a simple string. To handle complex content or content of declared simple types other than xs:string, override this method.