1 write to Id
System.IdentityModel (1)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (1)
2675assertion.Id = new Saml2Id(value);
9 references to Id
System.IdentityModel (9)
System\IdentityModel\Tokens\Saml2SecurityToken.cs (3)
66get { return this.assertion.Id.Value; } 152return new Saml2AssertionKeyIdentifierClause(this.assertion.Id.Value) as T; 156return new WrappedSaml2AssertionKeyIdentifierClause(new Saml2AssertionKeyIdentifierClause(this.assertion.Id.Value)) as T;
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (6)
1666if (string.IsNullOrEmpty(samlToken.Assertion.Id.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]); 1692throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new SecurityTokenReplayDetectedException(SR.GetString(SR.ID1066, typeof(Saml2SecurityToken).ToString(), samlToken.Assertion.Id.Value, issuer))); 2845writer = signatureWriter = new EnvelopedSignatureWriter(writer, data.SigningCredentials, data.Id.Value, new WrappedSerializer(this, data)); 2874writer.WriteAttributeString(Saml2Constants.Attributes.ID, data.Id.Value);