6 implementations of Watch
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)
8 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.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);