13 references to AttributeContext
Microsoft.CodeAnalysis.Razor.Workspaces (13)
Completion\TagHelperCompletionProvider.cs (13)
211var attributeContext = ResolveAttributeContext(boundAttributes, isIndexer, options.SnippetsSupported); 252private static bool TryResolveInsertText(string baseInsertText, AttributeContext context, bool autoInsertAttributeQuotes, [NotNullWhen(true)] out string? snippetText) 254if (context == AttributeContext.FullSnippet) 349private static AttributeContext ResolveAttributeContext( 356return AttributeContext.Indexer; 361return AttributeContext.Minimized; 365return AttributeContext.FullSnippet; 368return AttributeContext.Full; 371private static ImmutableArray<RazorCommitCharacter> ResolveAttributeCommitCharacters(AttributeContext attributeContext) 375AttributeContext.Indexer => [], 376AttributeContext.Minimized => MinimizedAttributeCommitCharacters, 377AttributeContext.Full => AttributeCommitCharacters, 378AttributeContext.FullSnippet => AttributeSnippetCommitCharacters,