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