9 references to Interface
Microsoft.CodeAnalysis.EditorFeatures (1)
IntelliSense\AsyncCompletion\FilterSet.cs (1)
78InterfaceFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Interfaces, 'i', WellKnownTags.Interface);
Microsoft.CodeAnalysis.Features (2)
Common\GlyphExtensions.cs (1)
119case WellKnownTags.Interface:
Completion\CompletionTags.cs (1)
40public const string Interface = WellKnownTags.Interface;
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Extensions\ProtocolConversions.cs (1)
71{ WellKnownTags.Interface, ImmutableArray.Create(LSP.CompletionItemKind.Interface) },
Microsoft.CodeAnalysis.Workspaces (5)
Tags\WellKnownTags.cs (5)
32public const string Interface = nameof(Interface); 97internal static readonly ImmutableArray<string> InterfacePublic = [WellKnownTags.Interface, WellKnownTags.Public]; 98internal static readonly ImmutableArray<string> InterfaceProtected = [WellKnownTags.Interface, WellKnownTags.Protected]; 99internal static readonly ImmutableArray<string> InterfacePrivate = [WellKnownTags.Interface, WellKnownTags.Private]; 100internal static readonly ImmutableArray<string> InterfaceInternal = [WellKnownTags.Interface, WellKnownTags.Internal];