1 write to AssertionId
System.IdentityModel (1)
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (1)
1791assertion.AssertionId = attributeValue;
8 references to AssertionId
System.IdentityModel (8)
System\IdentityModel\Tokens\SamlSecurityToken.cs (1)
49get { return this.assertion.AssertionId; }
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (7)
805if (string.IsNullOrEmpty(samlToken.Assertion.AssertionId)) 818stringBuilder.AppendFormat("{0}{1}", samlToken.Assertion.AssertionId, _tokenTypeIdentifiers[0]); 822stringBuilder.AppendFormat("{0}{1}{2}", samlToken.Assertion.AssertionId, samlToken.Assertion.Issuer, _tokenTypeIdentifiers[0]); 833new SecurityTokenReplayDetectedException(SR.GetString(SR.ID1062, typeof(SamlSecurityToken).ToString(), samlToken.Assertion.AssertionId, ""))); 838new SecurityTokenReplayDetectedException(SR.GetString(SR.ID1062, typeof(SamlSecurityToken).ToString(), samlToken.Assertion.AssertionId, samlToken.Assertion.Issuer))); 1875writer = new EnvelopedSignatureWriter(writer, assertion.SigningCredentials, assertion.AssertionId, new WrappedSerializer(this, assertion)); 1881writer.WriteAttributeString(SamlConstants.AttributeNames.AssertionId, null, assertion.AssertionId);