1 write to NotBefore
System.IdentityModel (1)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (1)
5291
confirmationData.
NotBefore
= XmlConvert.ToDateTime(value, DateTimeFormats.Accepted);
5 references to NotBefore
System.IdentityModel (5)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (5)
2115
if (null != confirmationData.
NotBefore
2116
&& DateTimeUtil.Add(now, Configuration.MaxClockSkew) < confirmationData.
NotBefore
.Value)
2118
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new SecurityTokenException(SR.GetString(SR.ID4176, confirmationData.
NotBefore
.Value, now)));
5403
if (null != data.
NotBefore
)
5405
writer.WriteAttributeString(Saml2Constants.Attributes.NotBefore, XmlConvert.ToString(data.
NotBefore
.Value.ToUniversalTime(), DateTimeFormats.Generated));