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)
61{ WellKnownTags.Interface, LSP.CompletionItemKind.Interface },
Microsoft.CodeAnalysis.Workspaces (5)
Tags\WellKnownTags.cs (5)
32public const string Interface = nameof(Interface); 95internal static readonly ImmutableArray<string> InterfacePublic = ImmutableArray.Create(WellKnownTags.Interface, WellKnownTags.Public); 96internal static readonly ImmutableArray<string> InterfaceProtected = ImmutableArray.Create(WellKnownTags.Interface, WellKnownTags.Protected); 97internal static readonly ImmutableArray<string> InterfacePrivate = ImmutableArray.Create(WellKnownTags.Interface, WellKnownTags.Private); 98internal static readonly ImmutableArray<string> InterfaceInternal = ImmutableArray.Create(WellKnownTags.Interface, WellKnownTags.Internal);