7 implementations of IsDocument
Microsoft.CodeAnalysis.LanguageServer.Protocol (7)
Handler\Diagnostics\DiagnosticSourceProviders\DocumentSyntaxAndSemanticDiagnosticSourceProvider.cs (1)
20
public bool
IsDocument
=> true;
Handler\Diagnostics\DiagnosticSourceProviders\WorkspaceDocumentsAndProjectDiagnosticSourceProvider.cs (1)
27
public bool
IsDocument
=> false;
Handler\Diagnostics\Public\PublicDocumentNonLocalDiagnosticSourceProvider.cs (1)
26
public bool
IsDocument
=> true;
Handler\EditAndContinue\DocumentEditAndContinueDiagnosticSourceProvider.cs (1)
21
public bool
IsDocument
=> true;
Handler\EditAndContinue\WorkspaceEditAndContinueDiagnosticSourceProvider.cs (1)
21
public bool
IsDocument
=> false;
Handler\Tasks\DocumentTaskDiagnosticSourceProvider.cs (1)
21
public bool
IsDocument
=> true;
Handler\Tasks\WorkspaceTaskDiagnosticSourceProvider.cs (1)
23
public bool
IsDocument
=> false;
3 references to IsDocument
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Handler\Diagnostics\DiagnosticSourceProviders\DiagnosticSourceManager.cs (2)
40
.Where(p => p.
IsDocument
)
44
.Where(p => !p.
IsDocument
)
Handler\Diagnostics\DiagnosticSourceProviders\IDiagnosticSourceProvider.cs (1)
23
/// Provider's name. Each should have a unique name within <see cref="
IsDocument
"/> scope.