16 references to TriggerKind
Microsoft.CodeAnalysis.Razor.Workspaces (1)
Remote\IRemoteFormattingService.cs (1)
39ValueTask<TriggerKind> GetOnTypeFormattingTriggerKindAsync(
Microsoft.CodeAnalysis.Remote.Razor (7)
Formatting\RemoteFormattingService.cs (7)
15using Response = Microsoft.CodeAnalysis.Razor.Remote.IRemoteFormattingService.TriggerKind; 102public ValueTask<Response> GetOnTypeFormattingTriggerKindAsync( 114private async ValueTask<Response> GetOnTypeFormattingTriggerKindAsync(RemoteDocumentContext context, LinePosition linePosition, string triggerCharacter, CancellationToken cancellationToken) 120return Response.Invalid; 125return Response.Invalid; 130return Response.ValidHtml; 136return Response.ValidCSharp;
Microsoft.VisualStudio.LanguageServices.Razor (4)
src\Razor\src\Razor\src\Microsoft.CodeAnalysis.Razor.CohostingShared\Formatting\CohostOnTypeFormattingEndpoint.cs (4)
86var triggerKind = await _remoteServiceInvoker.TryInvokeAsync<IRemoteFormattingService, IRemoteFormattingService.TriggerKind>( 91if (triggerKind == IRemoteFormattingService.TriggerKind.Invalid) 99if (triggerKind == IRemoteFormattingService.TriggerKind.ValidHtml)
Microsoft.VisualStudioCode.RazorExtension (4)
src\Razor\src\Razor\src\Microsoft.CodeAnalysis.Razor.CohostingShared\Formatting\CohostOnTypeFormattingEndpoint.cs (4)
86var triggerKind = await _remoteServiceInvoker.TryInvokeAsync<IRemoteFormattingService, IRemoteFormattingService.TriggerKind>( 91if (triggerKind == IRemoteFormattingService.TriggerKind.Invalid) 99if (triggerKind == IRemoteFormattingService.TriggerKind.ValidHtml)