14 references to Assertion
System.IdentityModel (14)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (14)
338if (samlToken.Assertion == null) 344samlToken.Assertion.Conditions, 356Saml2SubjectConfirmation subjectConfirmation = samlToken.Assertion.Subject.SubjectConfirmations[0]; 449this.WriteAssertion(writer, samlToken.Assertion); 1666if (string.IsNullOrEmpty(samlToken.Assertion.Id.Value)) 1676if (string.IsNullOrEmpty(samlToken.Assertion.Issuer.Value)) 1678stringBuilder.AppendFormat("{0}{1}", samlToken.Assertion.Id.Value, tokenTypeIdentifiers[0]); 1682stringBuilder.AppendFormat("{0}{1}{2}", samlToken.Assertion.Id.Value, samlToken.Assertion.Issuer.Value, tokenTypeIdentifiers[0]); 1690string issuer = (samlToken.Assertion.Issuer.Value != null) ? samlToken.Assertion.Issuer.Value : String.Empty; 1692throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new SecurityTokenReplayDetectedException(SR.GetString(SR.ID1066, typeof(Saml2SecurityToken).ToString(), samlToken.Assertion.Id.Value, issuer))); 1718Saml2Assertion assertion = token.Assertion; 2057Saml2Assertion assertion = samlToken.Assertion;