9 references to Field
Microsoft.CodeAnalysis.EditorFeatures (1)
IntelliSense\AsyncCompletion\FilterSet.cs (1)
83FieldFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Fields, 'f', WellKnownTags.Field);
Microsoft.CodeAnalysis.Features (2)
Common\GlyphExtensions.cs (1)
111case WellKnownTags.Field:
Completion\CompletionTags.cs (1)
39public const string Field = WellKnownTags.Field;
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Extensions\ProtocolConversions.cs (1)
60{ WellKnownTags.Field, LSP.CompletionItemKind.Field },
Microsoft.CodeAnalysis.Workspaces (5)
Tags\WellKnownTags.cs (5)
31public const string Field = nameof(Field); 91internal static readonly ImmutableArray<string> FieldPublic = ImmutableArray.Create(WellKnownTags.Field, WellKnownTags.Public); 92internal static readonly ImmutableArray<string> FieldProtected = ImmutableArray.Create(WellKnownTags.Field, WellKnownTags.Protected); 93internal static readonly ImmutableArray<string> FieldPrivate = ImmutableArray.Create(WellKnownTags.Field, WellKnownTags.Private); 94internal static readonly ImmutableArray<string> FieldInternal = ImmutableArray.Create(WellKnownTags.Field, WellKnownTags.Internal);