2 instantiations of ChangeTokenInfo
Microsoft.Extensions.FileProviders.Physical (2)
PhysicalFilesWatcher.cs (2)
172tokenInfo = new ChangeTokenInfo(cancellationTokenSource, cancellationChangeToken); 209tokenInfo = new ChangeTokenInfo(cancellationTokenSource, cancellationChangeToken, matcher);
7 references to ChangeTokenInfo
Microsoft.Extensions.FileProviders.Physical (7)
PhysicalFilesWatcher.cs (7)
29private readonly ConcurrentDictionary<string, ChangeTokenInfo> _filePathTokenLookup = new(StringComparer.OrdinalIgnoreCase); 30private readonly ConcurrentDictionary<string, ChangeTokenInfo> _wildcardTokenLookup = new(StringComparer.OrdinalIgnoreCase); 168if (!_filePathTokenLookup.TryGetValue(filePath, out ChangeTokenInfo tokenInfo)) 203if (!_wildcardTokenLookup.TryGetValue(pattern, out ChangeTokenInfo tokenInfo)) 370if (_filePathTokenLookup.TryRemove(path, out ChangeTokenInfo matchInfo)) 376foreach (System.Collections.Generic.KeyValuePair<string, ChangeTokenInfo> wildCardEntry in _wildcardTokenLookup) 445private static void CancelToken(ChangeTokenInfo matchInfo)