9 references to Delegate
Microsoft.CodeAnalysis.EditorFeatures (1)
IntelliSense\AsyncCompletion\FilterSet.cs (1)
81DelegateFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Delegates, 'd', WellKnownTags.Delegate);
Microsoft.CodeAnalysis.Features (2)
Common\GlyphExtensions.cs (1)
68case WellKnownTags.Delegate:
Completion\CompletionTags.cs (1)
34public const string Delegate = WellKnownTags.Delegate;
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Extensions\ProtocolConversions.cs (1)
55{ WellKnownTags.Delegate, LSP.CompletionItemKind.Delegate },
Microsoft.CodeAnalysis.Workspaces (5)
Tags\WellKnownTags.cs (5)
26public const string Delegate = nameof(Delegate); 71internal static readonly ImmutableArray<string> DelegatePublic = ImmutableArray.Create(WellKnownTags.Delegate, WellKnownTags.Public); 72internal static readonly ImmutableArray<string> DelegateProtected = ImmutableArray.Create(WellKnownTags.Delegate, WellKnownTags.Protected); 73internal static readonly ImmutableArray<string> DelegatePrivate = ImmutableArray.Create(WellKnownTags.Delegate, WellKnownTags.Private); 74internal static readonly ImmutableArray<string> DelegateInternal = ImmutableArray.Create(WellKnownTags.Delegate, WellKnownTags.Internal);