ILanguageClient.FilesToWatch 属性

定义

获取要监视更改的文件名列表。 更改将通过 "工作区/didChangeWatchedFiles" 消息发送到服务器。 要监视的文件必须在当前活动工作区下。 文件名可以指定为确切文件的相对路径,也可以指定为 glob 模式,如 .gitignore 中的 https://www.kernel.org/pub/software/scm/git/docs/gitignore.html 标准。

public:
 property System::Collections::Generic::IEnumerable<System::String ^> ^ FilesToWatch { System::Collections::Generic::IEnumerable<System::String ^> ^ get(); };
public System.Collections.Generic.IEnumerable<string> FilesToWatch { get; }
member this.FilesToWatch : seq<string>
Public ReadOnly Property FilesToWatch As IEnumerable(Of String)

属性值

IEnumerable<String>

适用于