Share via


PhysicalFileProvider.UseActivePolling Property

Definition

Gets or sets a value that determines if this instance of PhysicalFileProvider actively polls for file changes.

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

true if the IChangeToken returned by Watch(String) actively polls for file changes (ActiveChangeCallbacks will be true) instead of being passive. 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.

Remarks

This property is only effective when UsePollingFileWatcher is set.

Applies to