9 references to TextDocumentItem
Microsoft.CodeAnalysis.LanguageServer.Protocol (9)
Handler\DocumentChanges\DidOpenHandler.cs (2)
21internal class DidOpenHandler() : ILspServiceNotificationHandler<LSP.DidOpenTextDocumentParams>, ITextDocumentIdentifierHandler<LSP.DidOpenTextDocumentParams, TextDocumentItem> 26public TextDocumentItem GetTextDocumentIdentifier(LSP.DidOpenTextDocumentParams request) => request.TextDocument;
Handler\RequestContextFactory.cs (2)
44else if (textDocumentIdentifierHandler is ITextDocumentIdentifierHandler<TRequestParam, TextDocumentItem> uHandler) 46var textDocumentItem = uHandler.GetTextDocumentIdentifier(requestParam);
Protocol\DidOpenTextDocumentParams.cs (2)
18/// Gets or sets the <see cref="TextDocumentItem"/> which represents the text document that was opened. 22public TextDocumentItem TextDocument
Protocol\Extensions\VSGetProjectContextsParams.cs (1)
19public TextDocumentItem TextDocument
Protocol\Notebook\DidOpenNotebookDocumentParams.cs (1)
30public TextDocumentItem[] CellTextDocuments { get; init; }
Protocol\Notebook\NotebookDocumentChangeCellsStructure.cs (1)
30public TextDocumentItem[]? DidOpen { get; init; }