12 references to Method
Microsoft.CodeAnalysis.EditorFeatures (1)
IntelliSense\AsyncCompletion\FilterSet.cs (1)
86MethodFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Methods, 'm', WellKnownTags.Method);
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (3)
IntelliSense\IntellisenseQuickInfoBuilderTests.vb (3)
27ImmutableArray.Create(WellKnownTags.Method, WellKnownTags.Public), 119ImmutableArray.Create(WellKnownTags.Method, WellKnownTags.Public), 204ImmutableArray.Create(WellKnownTags.Method, WellKnownTags.Public),
Microsoft.CodeAnalysis.Features (2)
Common\GlyphExtensions.cs (1)
145case WellKnownTags.Method:
Completion\CompletionTags.cs (1)
46public const string Method = WellKnownTags.Method;
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Extensions\ProtocolConversions.cs (1)
67{ WellKnownTags.Method, LSP.CompletionItemKind.Method },
Microsoft.CodeAnalysis.Workspaces (5)
Tags\WellKnownTags.cs (5)
38public const string Method = nameof(Method); 104internal static readonly ImmutableArray<string> MethodPublic = ImmutableArray.Create(WellKnownTags.Method, WellKnownTags.Public); 105internal static readonly ImmutableArray<string> MethodProtected = ImmutableArray.Create(WellKnownTags.Method, WellKnownTags.Protected); 106internal static readonly ImmutableArray<string> MethodPrivate = ImmutableArray.Create(WellKnownTags.Method, WellKnownTags.Private); 107internal static readonly ImmutableArray<string> MethodInternal = ImmutableArray.Create(WellKnownTags.Method, WellKnownTags.Internal);