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