1 write to NotOnOrAfter
System.IdentityModel (1)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (1)
5298
confirmationData.
NotOnOrAfter
= XmlConvert.ToDateTime(value, DateTimeFormats.Accepted);
7 references to NotOnOrAfter
System.IdentityModel (7)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (7)
1729
assertion.Subject.SubjectConfirmations[0].SubjectConfirmationData.
NotOnOrAfter
.HasValue)
1732
tokenExpiration = assertion.Subject.SubjectConfirmations[0].SubjectConfirmationData.
NotOnOrAfter
.Value;
2121
if (null != confirmationData.
NotOnOrAfter
2122
&& DateTimeUtil.Add(now, Configuration.MaxClockSkew.Negate()) >= confirmationData.
NotOnOrAfter
.Value)
2124
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new SecurityTokenException(SR.GetString(SR.ID4177, confirmationData.
NotOnOrAfter
.Value, now)));
5409
if (null != data.
NotOnOrAfter
)
5411
writer.WriteAttributeString(Saml2Constants.Attributes.NotOnOrAfter, XmlConvert.ToString(data.
NotOnOrAfter
.Value.ToUniversalTime(), DateTimeFormats.Generated));