ILanguageClientWorkspaceSymbolProvider Interface

Definition

Caution

Use ILanguageClientMiddleLayer instead

Interface representing a provider which can implement custom behavior around the 'workspace/symbol' request.

public interface class ILanguageClientWorkspaceSymbolProvider
public interface ILanguageClientWorkspaceSymbolProvider
[System.Obsolete("Use ILanguageClientMiddleLayer instead")]
public interface ILanguageClientWorkspaceSymbolProvider
type ILanguageClientWorkspaceSymbolProvider = interface
[<System.Obsolete("Use ILanguageClientMiddleLayer instead")>]
type ILanguageClientWorkspaceSymbolProvider = interface
Public Interface ILanguageClientWorkspaceSymbolProvider
Attributes

Remarks

All of the methods defined in this interface must be implemented and should not default to throw NotImplementedException.

Methods

RequestWorkspaceSymbols(WorkspaceSymbolParams, Func<WorkspaceSymbolParams,Task<SymbolInformation[]>>)

Intercepts calls for the 'workspace/symbol' request.

Applies to