2 implementations of TriggerCharacter
Microsoft.CodeAnalysis.Razor.Workspaces (2)
AutoInsert\AutoClosingTagOnAutoInsertProvider.cs (1)
41public string TriggerCharacter => ">";
AutoInsert\CloseTextTagOnAutoInsertProvider.cs (1)
15public string TriggerCharacter => ">";
4 references to TriggerCharacter
Microsoft.CodeAnalysis.Razor.Workspaces (2)
AutoInsert\AutoInsertService.cs (2)
31var triggerCharacter = provider.TriggerCharacter; 53if (provider.TriggerCharacter == character)
Microsoft.VisualStudio.LanguageServices.Razor (1)
src\Razor\src\Razor\src\Microsoft.CodeAnalysis.Razor.CohostingShared\OnAutoInsert\CohostOnAutoInsertEndpoint.cs (1)
53var providerTriggerCharacters = onAutoInsertTriggerCharacterProviders.Select((provider) => provider.TriggerCharacter).Distinct();
Microsoft.VisualStudioCode.RazorExtension (1)
src\Razor\src\Razor\src\Microsoft.CodeAnalysis.Razor.CohostingShared\OnAutoInsert\CohostOnAutoInsertEndpoint.cs (1)
53var providerTriggerCharacters = onAutoInsertTriggerCharacterProviders.Select((provider) => provider.TriggerCharacter).Distinct();