2 instantiations of ChangeTokenInfo
Microsoft.Extensions.FileProviders.Physical (2)
PhysicalFilesWatcher.cs (2)
186tokenInfo = new ChangeTokenInfo(cancellationTokenSource, cancellationChangeToken); 223tokenInfo = new ChangeTokenInfo(cancellationTokenSource, cancellationChangeToken, matcher);
7 references to ChangeTokenInfo
Microsoft.Extensions.FileProviders.Physical (7)
PhysicalFilesWatcher.cs (7)
33private readonly ConcurrentDictionary<string, ChangeTokenInfo> _filePathTokenLookup = new(StringComparer.OrdinalIgnoreCase); 34private readonly ConcurrentDictionary<string, ChangeTokenInfo> _wildcardTokenLookup = new(StringComparer.OrdinalIgnoreCase); 182if (!_filePathTokenLookup.TryGetValue(filePath, out ChangeTokenInfo tokenInfo)) 217if (!_wildcardTokenLookup.TryGetValue(pattern, out ChangeTokenInfo tokenInfo)) 379if (_filePathTokenLookup.TryRemove(path, out ChangeTokenInfo matchInfo)) 385foreach (System.Collections.Generic.KeyValuePair<string, ChangeTokenInfo> wildCardEntry in _wildcardTokenLookup) 452private static void CancelToken(ChangeTokenInfo matchInfo)