1 write to _fileWatcher
Microsoft.Extensions.FileProviders.Physical (1)
PhysicalFilesWatcher.cs (1)
116_fileWatcher = fileSystemWatcher;
17 references to _fileWatcher
Microsoft.Extensions.FileProviders.Physical (17)
PhysicalFilesWatcher.cs (17)
117_fileWatcher.IncludeSubdirectories = true; 118_fileWatcher.Created += OnChanged; 119_fileWatcher.Changed += OnChanged; 120_fileWatcher.Renamed += OnRenamed; 121_fileWatcher.Deleted += OnChanged; 122_fileWatcher.Error += OnError; 282_fileWatcher?.Dispose(); 483if (_fileWatcher != null) 489_fileWatcher.EnableRaisingEvents) 492_fileWatcher.EnableRaisingEvents = false; 511if (_fileWatcher is null) 536if (_fileWatcher.EnableRaisingEvents && !rootExists) 538_fileWatcher.EnableRaisingEvents = false; 541if (!_fileWatcher.EnableRaisingEvents) 552if (string.IsNullOrEmpty(_fileWatcher.Path)) 554_fileWatcher.Path = _root; 557_fileWatcher.EnableRaisingEvents = true;