1 implementation of IFileChangeNotificationSystem
System.Runtime.Caching (1)
System\Runtime\Caching\FileChangeNotificationSystem.cs (1)
20
internal sealed class FileChangeNotificationSystem :
IFileChangeNotificationSystem
6 references to IFileChangeNotificationSystem
System.Runtime.Caching (6)
System\Runtime\Caching\FileChangeNotificationSystem.cs (2)
96
void
IFileChangeNotificationSystem
.StartMonitoring(string filePath, OnChangedCallback onChangedCallback, out object state, out DateTimeOffset lastWriteTime, out long fileSize)
147
void
IFileChangeNotificationSystem
.StopMonitoring(string filePath, object state)
System\Runtime\Caching\HostFileChangeMonitor.cs (4)
21
private static
IFileChangeNotificationSystem
s_fcn;
92
IFileChangeNotificationSystem
fcn = null;
96
fcn = host.GetService(typeof(
IFileChangeNotificationSystem
)) as
IFileChangeNotificationSystem
;