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)
77{ WellKnownTags.Method, ImmutableArray.Create(LSP.CompletionItemKind.Method) },
Microsoft.CodeAnalysis.Workspaces (5)
Tags\WellKnownTags.cs (5)
38public const string Method = nameof(Method); 106internal static readonly ImmutableArray<string> MethodPublic = [WellKnownTags.Method, WellKnownTags.Public]; 107internal static readonly ImmutableArray<string> MethodProtected = [WellKnownTags.Method, WellKnownTags.Protected]; 108internal static readonly ImmutableArray<string> MethodPrivate = [WellKnownTags.Method, WellKnownTags.Private]; 109internal static readonly ImmutableArray<string> MethodInternal = [WellKnownTags.Method, WellKnownTags.Internal];