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