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