2 implementations of IFileChangeNotificationSystem
System.Runtime.Caching (1)
System\Caching\FileChangeNotificationSystem.cs (1)
13internal sealed class FileChangeNotificationSystem : IFileChangeNotificationSystem {
System.Web (1)
Hosting\ObjectCacheHost.cs (1)
13internal sealed class ObjectCacheHost : IServiceProvider, IApplicationIdentifier, IFileChangeNotificationSystem, IMemoryCacheManager
10 references to IFileChangeNotificationSystem
System.Runtime.Caching (6)
System\Caching\FileChangeNotificationSystem.cs (2)
77void IFileChangeNotificationSystem.StartMonitoring(string filePath, OnChangedCallback onChangedCallback, out Object state, out DateTimeOffset lastWriteTime, out long fileSize) { 122void IFileChangeNotificationSystem.StopMonitoring(string filePath, Object state) {
System\Caching\HostFileChangeMonitor.cs (4)
20private static IFileChangeNotificationSystem s_fcn; 82IFileChangeNotificationSystem fcn = null; 85fcn = host.GetService(typeof(IFileChangeNotificationSystem)) as IFileChangeNotificationSystem;
System.Web (4)
Hosting\ObjectCacheHost.cs (4)
41if (service == typeof(IFileChangeNotificationSystem)) { 42return this as IFileChangeNotificationSystem; 59void IFileChangeNotificationSystem.StartMonitoring(string filePath, OnChangedCallback onChangedCallback, out Object state, out DateTimeOffset lastWrite, out long fileSize) { 80void IFileChangeNotificationSystem.StopMonitoring(string filePath, Object state) {