4 references to _invariantTimeSpanParse
Microsoft.AspNetCore.Authentication.OpenIdConnect (4)
OpenIdConnectConfigureOptions.cs (4)
45
options.AutomaticRefreshInterval = StringHelpers.ParseValueOrDefault(configSection[nameof(options.AutomaticRefreshInterval)],
_invariantTimeSpanParse
, options.AutomaticRefreshInterval);
46
options.BackchannelTimeout = StringHelpers.ParseValueOrDefault(configSection[nameof(options.BackchannelTimeout)],
_invariantTimeSpanParse
, options.BackchannelTimeout);
65
options.RefreshInterval = StringHelpers.ParseValueOrDefault(configSection[nameof(options.RefreshInterval)],
_invariantTimeSpanParse
, options.RefreshInterval);
67
options.RemoteAuthenticationTimeout = StringHelpers.ParseValueOrDefault(configSection[nameof(options.RemoteAuthenticationTimeout)],
_invariantTimeSpanParse
, options.RemoteAuthenticationTimeout);