13 references to Value
System.IdentityModel (13)
System\IdentityModel\Tokens\Saml2Id.cs (1)
77
return (null != other) && StringComparer.Ordinal.Equals(this.value, other.
Value
);
System\IdentityModel\Tokens\Saml2SecurityToken.cs (3)
66
get { return this.assertion.Id.
Value
; }
152
return new Saml2AssertionKeyIdentifierClause(this.assertion.Id.
Value
) as T;
156
return new WrappedSaml2AssertionKeyIdentifierClause(new Saml2AssertionKeyIdentifierClause(this.assertion.Id.
Value
)) as T;
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (9)
1666
if (string.IsNullOrEmpty(samlToken.Assertion.Id.
Value
))
1678
stringBuilder.AppendFormat("{0}{1}", samlToken.Assertion.Id.
Value
, tokenTypeIdentifiers[0]);
1682
stringBuilder.AppendFormat("{0}{1}{2}", samlToken.Assertion.Id.
Value
, samlToken.Assertion.Issuer.Value, tokenTypeIdentifiers[0]);
1692
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new SecurityTokenReplayDetectedException(SR.GetString(SR.ID1066, typeof(Saml2SecurityToken).ToString(), samlToken.Assertion.Id.
Value
, issuer)));
2562
writer.WriteElementString(Saml2Constants.Elements.AssertionIDRef, Saml2Constants.Namespace, id.
Value
);
2845
writer = signatureWriter = new EnvelopedSignatureWriter(writer, data.SigningCredentials, data.Id.
Value
, new WrappedSerializer(this, data));
2874
writer.WriteAttributeString(Saml2Constants.Attributes.ID, data.Id.
Value
);
4316
writer.WriteElementString(Saml2Constants.Elements.AssertionIDRef, Saml2Constants.Namespace, id.
Value
);
5399
writer.WriteAttributeString(Saml2Constants.Attributes.InResponseTo, data.InResponseTo.
Value
);