1 instantiation of Saml2Evidence
System.IdentityModel (1)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (1)
4227
Saml2Evidence evidence = new
Saml2Evidence
();
17 references to Saml2Evidence
System.IdentityModel (17)
System\IdentityModel\Tokens\Saml2AuthorizationDecisionStatement.cs (3)
25
private
Saml2Evidence
evidence;
110
/// Gets or sets a set of <see cref="
Saml2Evidence
"/> that the SAML authority relied on in making
113
public
Saml2Evidence
Evidence
System\IdentityModel\Tokens\Saml2Evidence.cs (7)
27
/// Initializes a new instance of <see cref="
Saml2Evidence
"/> class.
34
/// Initializes a new instance of <see cref="
Saml2Evidence
"/> class from a <see cref="Saml2Assertion"/>.
48
/// Initializes a new instance of <see cref="
Saml2Evidence
"/> class from a <see cref="Saml2Id"/>.
62
/// Initializes a new instance of <see cref="
Saml2Evidence
"/> class from a <see cref="Uri"/>.
76
/// Gets a collection of <see cref="Saml2Id"/> for use by the <see cref="
Saml2Evidence
"/>.
84
/// Gets a collection of <see cref="Saml2Assertion"/> for use by the <see cref="
Saml2Evidence
"/>.
92
/// Gets a collection of <see cref="Uri"/> for use by the <see cref="
Saml2Evidence
"/>.
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (7)
4204
/// <param name="reader">A <see cref="XmlReader"/> positioned at a <see cref="
Saml2Evidence
"/> element.</param>
4205
/// <returns>A <see cref="
Saml2Evidence
"/> instance.</returns>
4206
protected virtual
Saml2Evidence
ReadEvidence(XmlReader reader)
4227
Saml2Evidence
evidence = new Saml2Evidence();
4288
/// <param name="writer">A <see cref="XmlWriter"/> to serialize the <see cref="
Saml2Evidence
"/>.</param>
4289
/// <param name="data">The <see cref="
Saml2Evidence
"/> to serialize.</param>
4290
protected virtual void WriteEvidence(XmlWriter writer,
Saml2Evidence
data)