ILanguageClientDidCloseProvider Interface

Definition

Caution

Use ILanguageClientMiddleLayer instead

Interface representing a provider which can implement custom vehavior around the 'textDocument/didClose' notification.

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

Remarks

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

Methods

DidClose(DidCloseTextDocumentParams, Func<DidCloseTextDocumentParams,Task>)

Intercepts calls for the 'textDocument/didClose' notification.

Applies to