PhysicalFileProvider.UseActivePolling Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that determines if this instance of PhysicalFileProvider actively polls for file changes.
When true
, IChangeToken returned by Watch(String) will actively poll for file changes
(ActiveChangeCallbacks will be true
) instead of being passive.
This property is only effective when UsePollingFileWatcher is set.
public:
property bool UseActivePolling { bool get(); void set(bool value); };
public bool UseActivePolling { get; set; }
member this.UseActivePolling : bool with get, set
Public Property UseActivePolling As Boolean
Property Value
The default value of this property is determined by the value of environment variable named DOTNET_USE_POLLING_FILE_WATCHER
.
When true
or 1
, this property defaults to true
; otherwise false.