ILanguageClientDidChangeProvider Interface

Definition

Caution

Use ILanguageClientMiddleLayer instead

Interface representing a provider which can implement custom behavior around the 'textDocument/didChange' notification.

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

Remarks

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

Methods

DidChange(DidChangeTextDocumentParams, Func<DidChangeTextDocumentParams,Task>)

Intercepts calls for the 'textDocument/didChange' request.

Applies to