3 instantiations of VSInternalDocumentOnAutoInsertResponseItem
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\OnAutoInsert\OnAutoInsertHandler.cs (2)
133return new LSP.VSInternalDocumentOnAutoInsertResponseItem 197var autoInsertChange = new LSP.VSInternalDocumentOnAutoInsertResponseItem
Microsoft.VisualStudio.LanguageServices.Xaml (1)
Implementation\LanguageServer\Handler\OnAutoInsert\OnAutoInsertHandler.cs (1)
64return new VSInternalDocumentOnAutoInsertResponseItem
19 references to VSInternalDocumentOnAutoInsertResponseItem
Microsoft.CodeAnalysis.ExternalAccess.Razor.Features (1)
Cohost\Handlers\OnAutoInsert.cs (1)
20public static Task<VSInternalDocumentOnAutoInsertResponseItem?> GetOnAutoInsertResponseAsync(Document document, LinePosition linePosition, string character, FormattingOptions formattingOptions, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.LanguageServer.Protocol (12)
Handler\OnAutoInsert\OnAutoInsertHandler.cs (10)
34IGlobalOptionService globalOptions) : ILspServiceDocumentRequestHandler<LSP.VSInternalDocumentOnAutoInsertParams, LSP.VSInternalDocumentOnAutoInsertResponseItem?> 44public Task<LSP.VSInternalDocumentOnAutoInsertResponseItem?> HandleRequestAsync( 51return SpecializedTasks.Null<LSP.VSInternalDocumentOnAutoInsertResponseItem>(); 55return SpecializedTasks.Null<LSP.VSInternalDocumentOnAutoInsertResponseItem>(); 63internal static async Task<LSP.VSInternalDocumentOnAutoInsertResponseItem?> GetOnAutoInsertResponseAsync( 83var documentationCommentResponse = await GetDocumentationCommentResponseAsync( 102var braceCompletionAfterReturnResponse = await GetBraceCompletionAfterReturnResponseAsync( 113private static async Task<LSP.VSInternalDocumentOnAutoInsertResponseItem?> GetDocumentationCommentResponseAsync( 144private static async Task<LSP.VSInternalDocumentOnAutoInsertResponseItem?> GetBraceCompletionAfterReturnResponseAsync( 197var autoInsertChange = new LSP.VSInternalDocumentOnAutoInsertResponseItem
Protocol\Internal\VSInternalMethods.cs (2)
31public static readonly LspRequest<VSInternalDocumentOnAutoInsertParams, VSInternalDocumentOnAutoInsertResponseItem> OnAutoInsert = new LspRequest<VSInternalDocumentOnAutoInsertParams, VSInternalDocumentOnAutoInsertResponseItem>(OnAutoInsertName);
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (4)
OnAutoInsert\OnAutoInsertTests.cs (4)
363var result = await RunOnAutoInsertAsync(testLspServer, characterTyped, locationTyped, insertSpaces, tabSize); 377var result = await RunOnAutoInsertAsync(testLspServer, characterTyped, locationTyped, insertSpaces, tabSize); 382private static async Task<LSP.VSInternalDocumentOnAutoInsertResponseItem?> RunOnAutoInsertAsync( 389return await testLspServer.ExecuteRequestAsync<LSP.VSInternalDocumentOnAutoInsertParams, LSP.VSInternalDocumentOnAutoInsertResponseItem?>(VSInternalMethods.OnAutoInsertName,
Microsoft.VisualStudio.LanguageServices.Xaml (2)
Implementation\LanguageServer\Handler\OnAutoInsert\OnAutoInsertHandler.cs (2)
20internal sealed class OnAutoInsertHandler : ILspServiceRequestHandler<VSInternalDocumentOnAutoInsertParams, VSInternalDocumentOnAutoInsertResponseItem?> 33public async Task<VSInternalDocumentOnAutoInsertResponseItem?> HandleRequestAsync(VSInternalDocumentOnAutoInsertParams request, RequestContext context, CancellationToken cancellationToken)