1 write to MaxAge
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
OpenIdConnectConfigureOptions.cs (1)
61
options.
MaxAge
= StringHelpers.ParseValueOrDefault(configSection[nameof(options.MaxAge)], _invariantNullableTimeSpanParse, options.MaxAge);
7 references to MaxAge
Microsoft.AspNetCore.Authentication.OpenIdConnect (7)
OpenIdConnectConfigureOptions.cs (2)
61
options.MaxAge = StringHelpers.ParseValueOrDefault(configSection[nameof(options.
MaxAge
)], _invariantNullableTimeSpanParse, options.
MaxAge
);
OpenIdConnectHandler.cs (1)
434
var maxAge = properties.GetParameter<TimeSpan?>(OpenIdConnectParameterNames.MaxAge) ?? Options.
MaxAge
;
OpenIdConnectOptions.cs (4)
95
if (
MaxAge
.HasValue &&
MaxAge
.Value < TimeSpan.Zero)
97
throw new ArgumentOutOfRangeException(nameof(
MaxAge
),
MaxAge
.Value, "The value must not be a negative TimeSpan.");