ILanguageClientDidSaveProvider Interface

Definition

Caution

Use ILanguageClientMiddleLayer instead

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

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

Remarks

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

Methods

DidSave(DidSaveTextDocumentParams, Func<DidSaveTextDocumentParams,Task>)

Intercepts calls for the 'textDocument/didSave' notification.

Applies to