ILanguageClient.FilesToWatch 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 the list of file names to watch for changes. Changes will be sent to the server via 'workspace/didChangeWatchedFiles' message. The files to watch must be under the current active workspace. The file names can be specified as a relative paths to the exact file, or as glob patterns following the standard in .gitignore see https://www.kernel.org/pub/software/scm/git/docs/gitignore.html files.
public:
property System::Collections::Generic::IEnumerable<System::String ^> ^ FilesToWatch { System::Collections::Generic::IEnumerable<System::String ^> ^ get(); };
public System.Collections.Generic.IEnumerable<string> FilesToWatch { get; }
public System.Collections.Generic.IEnumerable<string>? FilesToWatch { get; }
member this.FilesToWatch : seq<string>
Public ReadOnly Property FilesToWatch As IEnumerable(Of String)