CompositeFileProvider.Watch(String) Method

Definition

Creates a IChangeToken for the specified pattern.

public:
 virtual Microsoft::Extensions::Primitives::IChangeToken ^ Watch(System::String ^ pattern);
public Microsoft.Extensions.Primitives.IChangeToken Watch (string pattern);
abstract member Watch : string -> Microsoft.Extensions.Primitives.IChangeToken
override this.Watch : string -> Microsoft.Extensions.Primitives.IChangeToken
Public Function Watch (pattern As String) As IChangeToken

Parameters

pattern
String

A filter string used to determine what files or folders to monitor. Examples: **/*.cs, *.*, subFolder/**/*.cshtml.

Returns

A change token that's notified when a file matching pattern is added, modified, or deleted.

Implements

Remarks

The change token is notified when one of the change tokens returned by the provided IFileProvider is notified.

Applies to