12 references to Class
Microsoft.CodeAnalysis.EditorFeatures (1)
IntelliSense\AsyncCompletion\FilterSet.cs (1)
75ClassFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Classes, 'c', WellKnownTags.Class);
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (1)
IntelliSense\VisualBasicCompletionCommandHandlerTests.vb (1)
2177Assert.True(doubleItems.Any(Function(c) c.Tags.Contains(WellKnownTags.Class) AndAlso c.Tags.Contains(WellKnownTags.Internal)))
Microsoft.CodeAnalysis.Features (4)
Common\GlyphExtensions.cs (1)
52case WellKnownTags.Class:
Completion\CompletionTags.cs (1)
32public const string Class = WellKnownTags.Class;
SemanticSearch\AbstractSemanticSearchService.cs (2)
246: [new TaggedText(WellKnownTags.Class, exceptionTypeName)] 247: [new TaggedText(WellKnownTags.Class, nameof(Exception))];
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Extensions\ProtocolConversions.cs (1)
63{ WellKnownTags.Class, ImmutableArray.Create(LSP.CompletionItemKind.Class) },
Microsoft.CodeAnalysis.Workspaces (5)
Tags\WellKnownTags.cs (5)
24public const string Class = nameof(Class); 65internal static readonly ImmutableArray<string> ClassPublic = [WellKnownTags.Class, WellKnownTags.Public]; 66internal static readonly ImmutableArray<string> ClassProtected = [WellKnownTags.Class, WellKnownTags.Protected]; 67internal static readonly ImmutableArray<string> ClassPrivate = [WellKnownTags.Class, WellKnownTags.Private]; 68internal static readonly ImmutableArray<string> ClassInternal = [WellKnownTags.Class, WellKnownTags.Internal];