TokenHandler.DefaultTokenLifetimeInMinutes Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Default lifetime of tokens created. When creating tokens, if 'expires', 'notbefore' or 'issuedat' are null, then a default will be set to: issuedat = DateTime.UtcNow, notbefore = DateTime.UtcNow, expires = DateTime.UtcNow + TimeSpan.FromMinutes(TokenLifetimeInMinutes).
public static readonly int DefaultTokenLifetimeInMinutes;
staticval mutable DefaultTokenLifetimeInMinutes : int
Public Shared ReadOnly DefaultTokenLifetimeInMinutes As Integer
Field Value
Remarks
See: SetDefaultTimesOnTokenCreation for configuration.