4 instantiations of Saml2Id
System.IdentityModel (4)
System\IdentityModel\Tokens\Saml2Assertion.cs (1)
22private Saml2Id id = new Saml2Id();
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (3)
901return new Saml2Id(value); 2675assertion.Id = new Saml2Id(value); 5284confirmationData.InResponseTo = new Saml2Id(value);
25 references to Saml2Id
System.IdentityModel (25)
System\IdentityModel\Tokens\Saml2Advice.cs (4)
21private Collection<Saml2Id> assertionIdReferences = new Collection<Saml2Id>(); 33/// Gets a collection of <see cref="Saml2Id"/> representating the assertions in the <see cref="Saml2Advice"/>. 35public Collection<Saml2Id> AssertionIdReferences
System\IdentityModel\Tokens\Saml2Assertion.cs (3)
22private Saml2Id id = new Saml2Id(); 111/// Gets or sets the <see cref="Saml2Id"/> identifier for this assertion. [Saml2Core, 2.3.3] 113public Saml2Id Id
System\IdentityModel\Tokens\Saml2Evidence.cs (7)
22private Collection<Saml2Id> assertionIdReferences = new Collection<Saml2Id>(); 48/// Initializes a new instance of <see cref="Saml2Evidence"/> class from a <see cref="Saml2Id"/>. 50/// <param name="idReference"><see cref="Saml2Id"/> containing the evidence.</param> 51public Saml2Evidence(Saml2Id idReference) 76/// Gets a collection of <see cref="Saml2Id"/> for use by the <see cref="Saml2Evidence"/>. 78public Collection<Saml2Id> AssertionIdReferences
System\IdentityModel\Tokens\Saml2Id.cs (5)
64/// Compares two <see cref="Saml2Id"/> for equality. 75Saml2Id other = obj as Saml2Id; 81/// Gets the hash code for the <see cref="Saml2Id"/> as an integer. 90/// Gets the <see cref="Saml2Id"/> in text format.
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (3)
885internal static Saml2Id ReadSimpleNCNameElement(XmlReader reader) 2560foreach (Saml2Id id in data.AssertionIdReferences) 4314foreach (Saml2Id id in data.AssertionIdReferences)
System\IdentityModel\Tokens\Saml2SubjectConfirmationData.cs (3)
19private Saml2Id inResponseTo; 50/// Gets or sets the <see cref="Saml2Id"/> of a SAML protocol message in response to which an attesting entity can 53public Saml2Id InResponseTo