7 implementations of Watch
Microsoft.AspNetCore.Components.WebView (1)
src\aspnetcore\src\Shared\StaticWebAssets\ManifestStaticWebAssetFileProvider.cs (1)
237public IChangeToken Watch(string filter) => NullChangeToken.Singleton;
Microsoft.AspNetCore.Hosting (1)
src\aspnetcore\src\Shared\StaticWebAssets\ManifestStaticWebAssetFileProvider.cs (1)
237public IChangeToken Watch(string filter) => NullChangeToken.Singleton;
Microsoft.Extensions.FileProviders.Abstractions (1)
NullFileProvider.cs (1)
37public IChangeToken Watch(string filter) => NullChangeToken.Singleton;
Microsoft.Extensions.FileProviders.Composite (1)
CompositeFileProvider.cs (1)
76public IChangeToken Watch(string pattern)
Microsoft.Extensions.FileProviders.Embedded (2)
EmbeddedFileProvider.cs (1)
176public IChangeToken Watch(string pattern)
ManifestEmbeddedFileProvider.cs (1)
117public IChangeToken Watch(string filter)
Microsoft.Extensions.FileProviders.Physical (1)
PhysicalFileProvider.cs (1)
349public IChangeToken Watch(string filter)
13 references to Watch
aspire (1)
Backchannel\AuxiliaryBackchannelMonitor.cs (1)
533var changeToken = fileProvider.Watch("aux*.sock.*");
Microsoft.AspNetCore.Mvc.Razor (2)
Infrastructure\DefaultFileVersionProvider.cs (2)
60cacheEntryOptions.AddExpirationToken(FileProvider.Watch(resolvedPath)); 68cacheEntryOptions.AddExpirationToken(FileProvider.Watch(requestPathBaseRelativePath));
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation (5)
PageActionDescriptorChangeProvider.cs (2)
63changeTokens[i] = fileProvider.Watch(_additionalFilesToTrack[i]); 68var wildcardChangeToken = fileProvider.Watch(_searchPatterns[i]);
RuntimeViewCompiler.cs (3)
240_fileProvider.Watch(normalizedPath), 289expirationTokens.Add(_fileProvider.Watch(checksums[i].Identifier)); 306expirationTokens.Add(_fileProvider.Watch(file.FilePath));
Microsoft.AspNetCore.Mvc.TagHelpers (1)
GlobbingUrlBuilder.cs (1)
123var changeToken = FileProvider.Watch(includePattern.Value);
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\CertificatePathWatcher.cs (1)
141() => dirMetadata.FileProvider.Watch(Path.GetFileName(path)),
Microsoft.Extensions.Configuration.FileExtensions (1)
FileConfigurationProvider.cs (1)
35() => Source.FileProvider.Watch(Source.Path!),
Microsoft.Extensions.Configuration.KeyPerFile (1)
KeyPerFileConfigurationProvider.cs (1)
32() => Source.FileProvider.Watch("*"),
Microsoft.Extensions.FileProviders.Composite (1)
CompositeFileProvider.cs (1)
82IChangeToken changeToken = fileProvider.Watch(pattern);