49 implementations of RequiresLSPSolution
Microsoft.CodeAnalysis.EditorFeatures (1)
ExternalAccess\VSTypeScript\Api\AbstractVSTypeScriptRequestHandler.cs (1)
22bool ISolutionRequiredHandler.RequiresLSPSolution => RequiresLSPSolution;
Microsoft.CodeAnalysis.LanguageServer.Protocol (32)
Handler\Breakpoints\ValidateBreakableRangeHandler.cs (1)
30public bool RequiresLSPSolution => true;
Handler\CodeActions\CodeActionResolveHandler.cs (1)
57public bool RequiresLSPSolution => true;
Handler\CodeActions\CodeActionsHandler.cs (1)
37public bool RequiresLSPSolution => true;
Handler\CodeLens\CodeLensHandler.cs (1)
29public bool RequiresLSPSolution => true;
Handler\CodeLens\CodeLensResolveHandler.cs (1)
33public bool RequiresLSPSolution => true;
Handler\Commands\AbstractExecuteWorkspaceCommandHandler.cs (1)
16public abstract bool RequiresLSPSolution { get; }
Handler\Completion\CompletionHandler.cs (1)
44public bool RequiresLSPSolution => true;
Handler\Completion\CompletionResolveHandler.cs (1)
39public bool RequiresLSPSolution => true;
Handler\Definitions\AbstractGoToDefinitionHandler.cs (1)
33public bool RequiresLSPSolution => true;
Handler\Diagnostics\AbstractPullDiagnosticHandler.cs (1)
68public bool RequiresLSPSolution => true;
Handler\DocumentChanges\DidChangeHandler.cs (1)
28public bool RequiresLSPSolution => false;
Handler\DocumentChanges\DidCloseHandler.cs (1)
27public bool RequiresLSPSolution => false;
Handler\DocumentChanges\DidOpenHandler.cs (1)
28public bool RequiresLSPSolution => false;
Handler\FoldingRanges\FoldingRangesHandler.cs (1)
27public bool RequiresLSPSolution => true;
Handler\Formatting\AbstractFormatDocumentHandlerBase.cs (1)
22public bool RequiresLSPSolution => true;
Handler\Formatting\FormatDocumentOnTypeHandler.cs (1)
31public bool RequiresLSPSolution => true;
Handler\Highlights\DocumentHighlightHandler.cs (1)
39public bool RequiresLSPSolution => true;
Handler\Hover\HoverHandler.cs (1)
38public bool RequiresLSPSolution => true;
Handler\InlineCompletions\InlineCompletionsHandler.cs (1)
50public bool RequiresLSPSolution => true;
Handler\OnAutoInsert\OnAutoInsertHandler.cs (1)
36public bool RequiresLSPSolution => true;
Handler\ProjectContext\GetTextDocumentWithContextHandler.cs (1)
29public bool RequiresLSPSolution => true;
Handler\References\FindAllReferencesHandler.cs (1)
44public bool RequiresLSPSolution => true;
Handler\References\FindImplementationsHandler.cs (1)
32public bool RequiresLSPSolution => true;
Handler\Rename\RenameHandler.cs (1)
34public bool RequiresLSPSolution => true;
Handler\SemanticTokens\SemanticTokensRangeHandler.cs (1)
24public bool RequiresLSPSolution => true;
Handler\ServerLifetime\InitializedHandler.cs (1)
20public bool RequiresLSPSolution => false;
Handler\ServerLifetime\InitializeHandler.cs (1)
24public bool RequiresLSPSolution => false;
Handler\SignatureHelp\SignatureHelpHandler.cs (1)
39public bool RequiresLSPSolution => true;
Handler\SpellCheck\AbstractSpellCheckingHandler.cs (1)
38public bool RequiresLSPSolution => true;
Handler\Symbols\DocumentSymbolsHandler.cs (1)
31public bool RequiresLSPSolution => true;
Handler\Symbols\WorkspaceSymbolsHandler.cs (1)
52public bool RequiresLSPSolution => true;
Handler\WorkspaceCommand\ExecuteWorkspaceCommandHandler.cs (1)
22public bool RequiresLSPSolution => true;
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (6)
Ordering\FailingMutatingRequestHandler.cs (1)
29public bool RequiresLSPSolution => true;
Ordering\FailingRequestHandler.cs (1)
29public bool RequiresLSPSolution => true;
Ordering\LongRunningNonMutatingRequestHandler.cs (1)
30public bool RequiresLSPSolution => true;
Ordering\MutatingRequestHandler.cs (1)
29public bool RequiresLSPSolution => true;
Ordering\NonLSPSolutionRequestHandlerProvider.cs (1)
29public bool RequiresLSPSolution => false;
Ordering\NonMutatingRequestHandler.cs (1)
29public bool RequiresLSPSolution => true;
Microsoft.VisualStudio.LanguageServices.Xaml (10)
Implementation\LanguageServer\Handler\Completion\CompletionHandler.cs (1)
40public bool RequiresLSPSolution => true;
Implementation\LanguageServer\Handler\Completion\CompletionResolveHandler.cs (1)
37public bool RequiresLSPSolution => true;
Implementation\LanguageServer\Handler\Definitions\GoToDefinitionHandler.cs (1)
47public bool RequiresLSPSolution => true;
Implementation\LanguageServer\Handler\Diagnostics\AbstractPullDiagnosticHandler.cs (1)
34public bool RequiresLSPSolution => true;
Implementation\LanguageServer\Handler\FoldingRanges\FoldingRangesHandler.cs (1)
30public bool RequiresLSPSolution => true;
Implementation\LanguageServer\Handler\Formatting\AbstractFormatDocumentHandlerBase.cs (1)
22public bool RequiresLSPSolution => true;
Implementation\LanguageServer\Handler\Formatting\FormatDocumentOnTypeHandler.cs (1)
33public bool RequiresLSPSolution => true;
Implementation\LanguageServer\Handler\Hover\HoverHandler.cs (1)
40public bool RequiresLSPSolution => true;
Implementation\LanguageServer\Handler\OnAutoInsert\OnAutoInsertHandler.cs (1)
30public bool RequiresLSPSolution => true;
Implementation\LanguageServer\Handler\OnTypeRename\OnTypeRenameHandler.cs (1)
62public bool RequiresLSPSolution => true;
1 reference to RequiresLSPSolution
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\RequestContextFactory.cs (1)
64requiresLSPSolution = requiredHandler.RequiresLSPSolution;