ILanguageClientDidOpenProvider Interface

Definition

Caution

Use ILanguageClientMiddleLayer instead

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

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

Remarks

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

Methods

DidOpen(DidOpenTextDocumentParams, Func<DidOpenTextDocumentParams,Task>)

Intercepts calls for the 'textDocument/didOpen' notification.

Applies to