2 writes to NotBefore
System.IdentityModel (2)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (2)
1017conditions.NotBefore = tokenLifetime.Created; 4037conditions.NotBefore = XmlConvert.ToDateTime(value, DateTimeFormats.Accepted);
7 references to NotBefore
System.IdentityModel (7)
System\IdentityModel\Tokens\Saml2SecurityToken.cs (2)
92if (null != this.assertion.Conditions && null != this.assertion.Conditions.NotBefore) 94return this.assertion.Conditions.NotBefore.Value;
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (5)
1561if (conditions.NotBefore != null 1562&& DateTimeUtil.Add(now, Configuration.MaxClockSkew) < conditions.NotBefore.Value) 1564throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new SecurityTokenNotYetValidException(SR.GetString(SR.ID4147, conditions.NotBefore.Value, now))); 4167if (null != data.NotBefore) 4169writer.WriteAttributeString(Saml2Constants.Attributes.NotBefore, XmlConvert.ToString(data.NotBefore.Value.ToUniversalTime(), DateTimeFormats.Generated));