5 instantiations of DataSourceDependentCache
Microsoft.AspNetCore.Routing (5)
DefaultLinkGenerator.cs (1)
51
_cache = new
DataSourceDependentCache
<ConcurrentDictionary<RouteEndpoint, TemplateBinder>>(dataSource, (_) =>
DefaultLinkParser.cs (1)
37
_matcherCache = new
DataSourceDependentCache
<ConcurrentDictionary<RouteEndpoint, MatcherState>>(dataSource, (_) =>
EndpointNameAddressScheme.cs (1)
16
_cache = new
DataSourceDependentCache
<FrozenDictionary<string, Endpoint[]>>(dataSource, Initialize);
Matching\DataSourceDependentMatcher.cs (1)
22
_cache = new
DataSourceDependentCache
<Matcher>(dataSource, CreateMatcher);
RouteValuesAddressScheme.cs (1)
17
_cache = new
DataSourceDependentCache
<StateEntry>(dataSource, Initialize);
7 references to DataSourceDependentCache
Microsoft.AspNetCore.Routing (7)
DefaultLinkGenerator.cs (1)
33
private readonly
DataSourceDependentCache
<ConcurrentDictionary<RouteEndpoint, TemplateBinder>> _cache;
DefaultLinkParser.cs (1)
20
private readonly
DataSourceDependentCache
<ConcurrentDictionary<RouteEndpoint, MatcherState>> _matcherCache;
EndpointNameAddressScheme.cs (1)
12
private readonly
DataSourceDependentCache
<FrozenDictionary<string, Endpoint[]>> _cache;
Matching\DataSourceDependentMatcher.cs (3)
13
private readonly
DataSourceDependentCache
<Matcher> _cache;
78
private
DataSourceDependentCache
<Matcher>? _cache;
81
public
DataSourceDependentCache
<Matcher>? Cache
RouteValuesAddressScheme.cs (1)
13
private readonly
DataSourceDependentCache
<StateEntry> _cache;