2 instantiations of ChangeTokenInfo
Microsoft.Extensions.FileProviders.Physical (2)
PhysicalFilesWatcher.cs (2)
180tokenInfo = new ChangeTokenInfo(cancellationTokenSource, cancellationChangeToken); 217tokenInfo = 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); 176if (!_filePathTokenLookup.TryGetValue(filePath, out ChangeTokenInfo tokenInfo)) 211if (!_wildcardTokenLookup.TryGetValue(pattern, out ChangeTokenInfo tokenInfo)) 378if (_filePathTokenLookup.TryRemove(path, out ChangeTokenInfo matchInfo)) 384foreach (System.Collections.Generic.KeyValuePair<string, ChangeTokenInfo> wildCardEntry in _wildcardTokenLookup) 453private static void CancelToken(ChangeTokenInfo matchInfo)