9 references to Interface
Microsoft.CodeAnalysis.EditorFeatures (1)
IntelliSense\AsyncCompletion\FilterSet.cs (1)
78
InterfaceFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Interfaces, 'i', WellKnownTags.
Interface
);
Microsoft.CodeAnalysis.Features (2)
Common\GlyphExtensions.cs (1)
119
case WellKnownTags.
Interface
:
Completion\CompletionTags.cs (1)
40
public 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)
32
public const string Interface = nameof(
Interface
);
95
internal static readonly ImmutableArray<string> InterfacePublic = ImmutableArray.Create(WellKnownTags.
Interface
, WellKnownTags.Public);
96
internal static readonly ImmutableArray<string> InterfaceProtected = ImmutableArray.Create(WellKnownTags.
Interface
, WellKnownTags.Protected);
97
internal static readonly ImmutableArray<string> InterfacePrivate = ImmutableArray.Create(WellKnownTags.
Interface
, WellKnownTags.Private);
98
internal static readonly ImmutableArray<string> InterfaceInternal = ImmutableArray.Create(WellKnownTags.
Interface
, WellKnownTags.Internal);