SamlAssertion Class
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.
Represents a Security Assertion Markup Language 1.1 (SAML 1.1) assertion.
public ref class SamlAssertion
public class SamlAssertion
type SamlAssertion = class
Public Class SamlAssertion
- Inheritance
-
SamlAssertion
Remarks
The SamlAssertion class corresponds to the <saml:Assertion>
XML element that is defined in the OASIS SAML 1.1 specification.
The claims for SamlSecurityToken security tokens are contained within a SamlAssertion. A SamlAssertion has an extensible set of claims known as SAML statements that are represented by the Statements property. The SAML authority that issued the SAML assertion is specified in the Issuer property.
Constructors
SamlAssertion() |
Initializes a new instance of the SamlAssertion class. |
SamlAssertion(String, String, DateTime, SamlConditions, SamlAdvice, IEnumerable<SamlStatement>) |
Initializes a new instance of the SamlAssertion class using the specified SAML assertion identifier, issuer of the assertion, the date and time when the assertion was issued, a set of processing conditions, additional information, and a collection of SAML statements. |
Properties
Advice |
Gets or sets additional information related to the SamlSecurityToken that is supplied by the SAML authority that can aide in the processing of the SAML assertion. |
AssertionId |
Gets or sets the identifier for this assertion. |
CanWriteSourceData |
Gets a value that indicates whether this assertion was deserialized from XML source and can re-emit the XML data unchanged. |
Conditions |
Gets or sets a set of conditions that may be taken into account when assessing the validity of the SAML assertion. |
IsReadOnly |
Gets a value indicating whether the properties of this instance are read-only. |
IssueInstant |
Gets or sets the date and time when the SAML assertion was issued. |
Issuer |
Gets or sets the name of the SAML authority that issued this SAML assertion. |
MajorVersion |
Gets the major version of the SAML specification to which this SAML assertion conforms. |
MinorVersion |
Gets the minor version of the SAML specification to which this SAML assertion conforms. |
SigningCredentials |
Gets or sets the security credentials that are used to digitally sign the SAML assertion. |
SigningToken |
Gets the security token contained in or referenced by a digitally signed SAML assertion. |
Statements |
Gets the set of SAML statements associated with the SAML assertion. |
Methods
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MakeReadOnly() |
Causes this instance to be read-only. |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ReadSignature(XmlDictionaryReader, SecurityTokenSerializer, SecurityTokenResolver, SamlSerializer) |
Reads the digital signature for a SAML assertion from an XML reader. |
ReadXml(XmlDictionaryReader, SamlSerializer, SecurityTokenSerializer, SecurityTokenResolver) |
Reads a SAML assertion from the specified XML reader. |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |
WriteSourceData(XmlWriter) |
Writes the source data, if available. |
WriteXml(XmlDictionaryWriter, SamlSerializer, SecurityTokenSerializer) |
Writes the SAML assertion into the specified XML writer as a |