314 references to WellKnownTags
Microsoft.AspNetCore.App.Analyzers (19)
RouteEmbeddedLanguage\FrameworkParametersCompletionProvider.cs (1)
454
context.AddIfMissing(routeParameter.Name, suffix: string.Empty, description: "(Route parameter)",
WellKnownTags
.Parameter, parentOpt);
RouteEmbeddedLanguage\RoutePatternCompletionProvider.cs (18)
242
context.AddIfMissing(parameterSymbol.RouteParameterName, suffix: null, description: null,
WellKnownTags
.Parameter, parentOpt: parentOpt);
254
context.AddIfMissing("int", suffix: null, "Matches any 32-bit integer.",
WellKnownTags
.Keyword, parentOpt);
255
context.AddIfMissing("bool", suffix: null, "Matches true or false. Case-insensitive.",
WellKnownTags
.Keyword, parentOpt);
256
context.AddIfMissing("datetime", suffix: null, "Matches a valid DateTime value in the invariant culture.",
WellKnownTags
.Keyword, parentOpt);
257
context.AddIfMissing("decimal", suffix: null, "Matches a valid decimal value in the invariant culture.",
WellKnownTags
.Keyword, parentOpt);
258
context.AddIfMissing("double", suffix: null, "Matches a valid double value in the invariant culture.",
WellKnownTags
.Keyword, parentOpt);
259
context.AddIfMissing("float", suffix: null, "Matches a valid float value in the invariant culture.",
WellKnownTags
.Keyword, parentOpt);
260
context.AddIfMissing("guid", suffix: null, "Matches a valid Guid value.",
WellKnownTags
.Keyword, parentOpt);
261
context.AddIfMissing("long", suffix: null, "Matches any 64-bit integer.",
WellKnownTags
.Keyword, parentOpt);
266
context.AddIfMissing("minlength", suffix: null, "Matches a string with a length greater than, or equal to, the constraint argument.",
WellKnownTags
.Keyword, parentOpt);
267
context.AddIfMissing("maxlength", suffix: null, "Matches a string with a length less than, or equal to, the constraint argument.",
WellKnownTags
.Keyword, parentOpt);
272
If there are two arguments then the string length must be greater than, or equal to, the first argument and less than, or equal to, the second argument. For example, length(8,16) matches a string at least 8 and no more than 16 characters long.",
WellKnownTags
.Keyword, parentOpt);
273
context.AddIfMissing("min", suffix: null, "Matches an integer with a value greater than, or equal to, the constraint argument.",
WellKnownTags
.Keyword, parentOpt);
274
context.AddIfMissing("max", suffix: null, "Matches an integer with a value less than, or equal to, the constraint argument.",
WellKnownTags
.Keyword, parentOpt);
275
context.AddIfMissing("range", suffix: null, "Matches an integer with a value greater than, or equal to, the first constraint argument and less than, or equal to, the second constraint argument.",
WellKnownTags
.Keyword, parentOpt);
276
context.AddIfMissing("alpha", suffix: null, "Matches a string that contains only lowercase or uppercase letters A through Z in the English alphabet.",
WellKnownTags
.Keyword, parentOpt);
277
context.AddIfMissing("regex", suffix: null, "Matches a string to the regular expression constraint argument.",
WellKnownTags
.Keyword, parentOpt);
278
context.AddIfMissing("required", suffix: null, "Used to enforce that a non-parameter value is present during URL generation.",
WellKnownTags
.Keyword, parentOpt);
Microsoft.CodeAnalysis.EditorFeatures (20)
IntelliSense\AsyncCompletion\FilterSet.cs (20)
75
NamespaceFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Namespaces, 'n',
WellKnownTags
.Namespace);
76
ClassFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Classes, 'c',
WellKnownTags
.Class);
77
ModuleFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Modules, 'u',
WellKnownTags
.Module);
78
StructureFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Structures, 's',
WellKnownTags
.Structure);
79
InterfaceFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Interfaces, 'i',
WellKnownTags
.Interface);
80
EnumFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Enums, 'e',
WellKnownTags
.Enum);
81
EnumMemberFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Enum_members, 'b',
WellKnownTags
.EnumMember);
82
DelegateFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Delegates, 'd',
WellKnownTags
.Delegate);
83
ConstantFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Constants, 'o',
WellKnownTags
.Constant);
84
FieldFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Fields, 'f',
WellKnownTags
.Field);
85
EventFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Events, 'v',
WellKnownTags
.Event);
86
PropertyFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Properties, 'p',
WellKnownTags
.Property);
87
MethodFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Methods, 'm',
WellKnownTags
.Method);
88
ExtensionMethodFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Extension_methods, 'x',
WellKnownTags
.ExtensionMethod);
89
OperatorFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Operators, 'r',
WellKnownTags
.Operator);
90
LocalAndParameterFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Locals_and_parameters, 'l',
WellKnownTags
.Local,
WellKnownTags
.Parameter);
91
KeywordFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Keywords, 'k',
WellKnownTags
.Keyword);
92
SnippetFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Snippets, 't',
WellKnownTags
.Snippet);
93
TargetTypedFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Target_type_matches, 'j',
WellKnownTags
.TargetTypeMatch);
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (14)
IntelliSense\CSharpCompletionCommandHandlerTests.vb (2)
4078
Assert.True(state.GetSelectedItem().Tags.Contains(
WellKnownTags
.Warning))
4088
Assert.False(state.GetSelectedItem().Tags.Contains(
WellKnownTags
.Warning))
IntelliSense\IntellisenseQuickInfoBuilderTests.vb (6)
27
ImmutableArray.Create(
WellKnownTags
.Method,
WellKnownTags
.Public),
119
ImmutableArray.Create(
WellKnownTags
.Method,
WellKnownTags
.Public),
204
ImmutableArray.Create(
WellKnownTags
.Method,
WellKnownTags
.Public),
IntelliSense\VisualBasicCompletionCommandHandlerTests.vb (6)
2029
Assert.True(state.GetSelectedItem().Tags.Contains(
WellKnownTags
.Warning))
2036
Assert.False(state.GetSelectedItem().Tags.Contains(
WellKnownTags
.Warning))
2156
Assert.True(doubleItem.Tags.Contains(
WellKnownTags
.Keyword))
2176
Assert.True(doubleItems.Any(Function(c) c.Tags.Contains(
WellKnownTags
.Keyword)))
2177
Assert.True(doubleItems.Any(Function(c) c.Tags.Contains(
WellKnownTags
.Class) AndAlso c.Tags.Contains(
WellKnownTags
.Internal)))
Microsoft.CodeAnalysis.Features (86)
Common\GlyphExtensions.cs (37)
52
case
WellKnownTags
.Assembly:
55
case
WellKnownTags
.File:
58
case
WellKnownTags
.Project:
61
case
WellKnownTags
.Class:
69
case
WellKnownTags
.Constant:
77
case
WellKnownTags
.Delegate:
85
case
WellKnownTags
.Enum:
93
case
WellKnownTags
.EnumMember:
101
case
WellKnownTags
.Error:
104
case
WellKnownTags
.Event:
112
case
WellKnownTags
.ExtensionMethod:
120
case
WellKnownTags
.Field:
128
case
WellKnownTags
.Interface:
136
case
WellKnownTags
.TargetTypeMatch:
139
case
WellKnownTags
.Intrinsic:
142
case
WellKnownTags
.Keyword:
145
case
WellKnownTags
.Label:
148
case
WellKnownTags
.Local:
151
case
WellKnownTags
.Namespace:
154
case
WellKnownTags
.Method:
162
case
WellKnownTags
.Module:
170
case
WellKnownTags
.Folder:
173
case
WellKnownTags
.Operator:
182
case
WellKnownTags
.Parameter:
185
case
WellKnownTags
.Property:
193
case
WellKnownTags
.RangeVariable:
196
case
WellKnownTags
.Reference:
199
case
WellKnownTags
.NuGet:
202
case
WellKnownTags
.Structure:
210
case
WellKnownTags
.TypeParameter:
213
case
WellKnownTags
.Snippet:
216
case
WellKnownTags
.Warning:
219
case
WellKnownTags
.StatusInformation:
235
case
WellKnownTags
.Public:
237
case
WellKnownTags
.Protected:
239
case
WellKnownTags
.Internal:
241
case
WellKnownTags
.Private:
Completion\CommonCompletionItem.cs (1)
42
tags = tags.Add(
WellKnownTags
.Warning);
Completion\CommonCompletionService.cs (2)
38
=> item.Tags.Contains(
WellKnownTags
.Keyword);
41
=> item.Tags.Contains(
WellKnownTags
.Snippet);
Completion\CompletionHelper.cs (1)
71
=> item.Tags.Contains(
WellKnownTags
.Keyword);
Completion\CompletionItem.cs (1)
142
/// Descriptive tags from <see cref="Tags.
WellKnownTags
"/>.
Completion\CompletionTags.cs (35)
20
public const string Public =
WellKnownTags
.Public;
21
public const string Protected =
WellKnownTags
.Protected;
22
public const string Private =
WellKnownTags
.Private;
23
public const string Internal =
WellKnownTags
.Internal;
26
public const string File =
WellKnownTags
.File;
27
public const string Project =
WellKnownTags
.Project;
28
public const string Folder =
WellKnownTags
.Folder;
29
public const string Assembly =
WellKnownTags
.Assembly;
32
public const string Class =
WellKnownTags
.Class;
33
public const string Constant =
WellKnownTags
.Constant;
34
public const string Delegate =
WellKnownTags
.Delegate;
35
public const string Enum =
WellKnownTags
.Enum;
36
public const string EnumMember =
WellKnownTags
.EnumMember;
37
public const string Event =
WellKnownTags
.Event;
38
public const string ExtensionMethod =
WellKnownTags
.ExtensionMethod;
39
public const string Field =
WellKnownTags
.Field;
40
public const string Interface =
WellKnownTags
.Interface;
41
public const string Intrinsic =
WellKnownTags
.Intrinsic;
42
public const string Keyword =
WellKnownTags
.Keyword;
43
public const string Label =
WellKnownTags
.Label;
44
public const string Local =
WellKnownTags
.Local;
45
public const string Namespace =
WellKnownTags
.Namespace;
46
public const string Method =
WellKnownTags
.Method;
47
public const string Module =
WellKnownTags
.Module;
48
public const string Operator =
WellKnownTags
.Operator;
49
public const string Parameter =
WellKnownTags
.Parameter;
50
public const string Property =
WellKnownTags
.Property;
51
public const string RangeVariable =
WellKnownTags
.RangeVariable;
52
public const string Reference =
WellKnownTags
.Reference;
53
public const string Structure =
WellKnownTags
.Structure;
54
public const string TypeParameter =
WellKnownTags
.TypeParameter;
57
public const string Snippet =
WellKnownTags
.Snippet;
58
public const string Error =
WellKnownTags
.Error;
59
public const string Warning =
WellKnownTags
.Warning;
60
internal const string StatusInformation =
WellKnownTags
.StatusInformation;
Completion\Providers\AbstractSymbolCompletionProvider.cs (1)
207
item = item.AddTag(
WellKnownTags
.TargetTypeMatch);
Completion\Providers\ImportCompletionProvider\ImportCompletionItem.cs (1)
87
item = item.AddTag(
WellKnownTags
.TargetTypeMatch);
Completion\Providers\SymbolCompletionItem.cs (2)
60
if (!tags.Contains(
WellKnownTags
.Deprecated) && symbols.All(static symbol => symbol.IsObsolete()))
61
tags = tags.Add(
WellKnownTags
.Deprecated);
FindUsages\DefinitionItem.cs (1)
56
/// Descriptive tags from <see cref="
WellKnownTags
"/>. These tags may influence how the
QuickInfo\QuickInfoItem.cs (1)
18
/// Descriptive tags from the <see cref="Tags.
WellKnownTags
"/> type.
QuickInfo\QuickInfoUtilities.cs (1)
164
tags = tags.Add(
WellKnownTags
.Warning);
SemanticSearch\SearchCompilationFailureDefinitionItem.cs (1)
17
WellKnownTags
.Error
SemanticSearch\SearchExceptionDefinitionItem.cs (1)
19
WellKnownTags
.Error
Microsoft.CodeAnalysis.LanguageServer.Protocol (38)
Extensions\ProtocolConversions.cs (38)
56
{
WellKnownTags
.Public, ImmutableArray.Create(LSP.CompletionItemKind.Keyword) },
57
{
WellKnownTags
.Protected, ImmutableArray.Create(LSP.CompletionItemKind.Keyword) },
58
{
WellKnownTags
.Private, ImmutableArray.Create(LSP.CompletionItemKind.Keyword) },
59
{
WellKnownTags
.Internal, ImmutableArray.Create(LSP.CompletionItemKind.Keyword) },
60
{
WellKnownTags
.File, ImmutableArray.Create(LSP.CompletionItemKind.File) },
61
{
WellKnownTags
.Project, ImmutableArray.Create(LSP.CompletionItemKind.File) },
62
{
WellKnownTags
.Folder, ImmutableArray.Create(LSP.CompletionItemKind.Folder) },
63
{
WellKnownTags
.Assembly, ImmutableArray.Create(LSP.CompletionItemKind.File) },
64
{
WellKnownTags
.Class, ImmutableArray.Create(LSP.CompletionItemKind.Class) },
65
{
WellKnownTags
.Constant, ImmutableArray.Create(LSP.CompletionItemKind.Constant) },
66
{
WellKnownTags
.Delegate, ImmutableArray.Create(LSP.CompletionItemKind.Class, LSP.CompletionItemKind.Delegate) },
67
{
WellKnownTags
.Enum, ImmutableArray.Create(LSP.CompletionItemKind.Enum) },
68
{
WellKnownTags
.EnumMember, ImmutableArray.Create(LSP.CompletionItemKind.EnumMember) },
69
{
WellKnownTags
.Event, ImmutableArray.Create(LSP.CompletionItemKind.Event) },
70
{
WellKnownTags
.ExtensionMethod, ImmutableArray.Create(LSP.CompletionItemKind.Method, LSP.CompletionItemKind.ExtensionMethod) },
71
{
WellKnownTags
.Field, ImmutableArray.Create(LSP.CompletionItemKind.Field) },
72
{
WellKnownTags
.Interface, ImmutableArray.Create(LSP.CompletionItemKind.Interface) },
73
{
WellKnownTags
.Intrinsic, ImmutableArray.Create(LSP.CompletionItemKind.Text) },
74
{
WellKnownTags
.Keyword, ImmutableArray.Create(LSP.CompletionItemKind.Keyword) },
75
{
WellKnownTags
.Label, ImmutableArray.Create(LSP.CompletionItemKind.Text) },
76
{
WellKnownTags
.Local, ImmutableArray.Create(LSP.CompletionItemKind.Variable) },
77
{
WellKnownTags
.Namespace, ImmutableArray.Create(LSP.CompletionItemKind.Module, LSP.CompletionItemKind.Namespace) },
78
{
WellKnownTags
.Method, ImmutableArray.Create(LSP.CompletionItemKind.Method) },
79
{
WellKnownTags
.Module, ImmutableArray.Create(LSP.CompletionItemKind.Module) },
80
{
WellKnownTags
.Operator, ImmutableArray.Create(LSP.CompletionItemKind.Operator) },
81
{
WellKnownTags
.Parameter, ImmutableArray.Create(LSP.CompletionItemKind.Variable) },
82
{
WellKnownTags
.Property, ImmutableArray.Create(LSP.CompletionItemKind.Property) },
83
{
WellKnownTags
.RangeVariable, ImmutableArray.Create(LSP.CompletionItemKind.Variable) },
84
{
WellKnownTags
.Reference, ImmutableArray.Create(LSP.CompletionItemKind.Reference) },
85
{
WellKnownTags
.Structure, ImmutableArray.Create(LSP.CompletionItemKind.Struct) },
86
{
WellKnownTags
.TypeParameter, ImmutableArray.Create(LSP.CompletionItemKind.TypeParameter) },
87
{
WellKnownTags
.Snippet, ImmutableArray.Create(LSP.CompletionItemKind.Snippet) },
88
{
WellKnownTags
.Error, ImmutableArray.Create(LSP.CompletionItemKind.Text) },
89
{
WellKnownTags
.Warning, ImmutableArray.Create(LSP.CompletionItemKind.Text) },
90
{
WellKnownTags
.StatusInformation, ImmutableArray.Create(LSP.CompletionItemKind.Text) },
91
{
WellKnownTags
.AddReference, ImmutableArray.Create(LSP.CompletionItemKind.Text) },
92
{
WellKnownTags
.NuGet, ImmutableArray.Create(LSP.CompletionItemKind.Text) }
103
{
WellKnownTags
.Deprecated, ImmutableArray.Create(LSP.CompletionItemTag.Deprecated) },
Microsoft.CodeAnalysis.VisualBasic.Features (3)
Completion\CompletionProviders\EnumCompletionProvider.vb (1)
151
item = item.AddTag(
WellKnownTags
.TargetTypeMatch).WithAdditionalFilterTexts(ImmutableArray.Create(symbols(0).Symbol.Name))
Completion\CompletionProviders\KeywordCompletionProvider.vb (1)
22
Private Shared ReadOnly s_tags As ImmutableArray(Of String) = ImmutableArray.Create(
WellKnownTags
.Intrinsic)
Completion\VisualBasicCompletionService.vb (1)
97
If keywordCompletionItem IsNot Nothing AndAlso keywordCompletionItem.Tags.Contains(
WellKnownTags
.Intrinsic) Then
Microsoft.CodeAnalysis.Workspaces (134)
CodeActions\CodeAction.cs (1)
147
/// Descriptive tags from <see cref="
WellKnownTags
"/>.
Tags\WellKnownTags.cs (133)
64
internal static readonly ImmutableArray<string> Assembly = [
WellKnownTags
.Assembly];
65
internal static readonly ImmutableArray<string> ClassPublic = [
WellKnownTags
.Class,
WellKnownTags
.Public];
66
internal static readonly ImmutableArray<string> ClassProtected = [
WellKnownTags
.Class,
WellKnownTags
.Protected];
67
internal static readonly ImmutableArray<string> ClassPrivate = [
WellKnownTags
.Class,
WellKnownTags
.Private];
68
internal static readonly ImmutableArray<string> ClassInternal = [
WellKnownTags
.Class,
WellKnownTags
.Internal];
69
internal static readonly ImmutableArray<string> ConstantPublic = [
WellKnownTags
.Constant,
WellKnownTags
.Public];
70
internal static readonly ImmutableArray<string> ConstantProtected = [
WellKnownTags
.Constant,
WellKnownTags
.Protected];
71
internal static readonly ImmutableArray<string> ConstantPrivate = [
WellKnownTags
.Constant,
WellKnownTags
.Private];
72
internal static readonly ImmutableArray<string> ConstantInternal = [
WellKnownTags
.Constant,
WellKnownTags
.Internal];
73
internal static readonly ImmutableArray<string> DelegatePublic = [
WellKnownTags
.Delegate,
WellKnownTags
.Public];
74
internal static readonly ImmutableArray<string> DelegateProtected = [
WellKnownTags
.Delegate,
WellKnownTags
.Protected];
75
internal static readonly ImmutableArray<string> DelegatePrivate = [
WellKnownTags
.Delegate,
WellKnownTags
.Private];
76
internal static readonly ImmutableArray<string> DelegateInternal = [
WellKnownTags
.Delegate,
WellKnownTags
.Internal];
77
internal static readonly ImmutableArray<string> EnumPublic = [
WellKnownTags
.Enum,
WellKnownTags
.Public];
78
internal static readonly ImmutableArray<string> EnumProtected = [
WellKnownTags
.Enum,
WellKnownTags
.Protected];
79
internal static readonly ImmutableArray<string> EnumPrivate = [
WellKnownTags
.Enum,
WellKnownTags
.Private];
80
internal static readonly ImmutableArray<string> EnumInternal = [
WellKnownTags
.Enum,
WellKnownTags
.Internal];
81
internal static readonly ImmutableArray<string> EnumMemberPublic = [
WellKnownTags
.EnumMember,
WellKnownTags
.Public];
82
internal static readonly ImmutableArray<string> EnumMemberProtected = [
WellKnownTags
.EnumMember,
WellKnownTags
.Protected];
83
internal static readonly ImmutableArray<string> EnumMemberPrivate = [
WellKnownTags
.EnumMember,
WellKnownTags
.Private];
84
internal static readonly ImmutableArray<string> EnumMemberInternal = [
WellKnownTags
.EnumMember,
WellKnownTags
.Internal];
85
internal static readonly ImmutableArray<string> EventPublic = [
WellKnownTags
.Event,
WellKnownTags
.Public];
86
internal static readonly ImmutableArray<string> EventProtected = [
WellKnownTags
.Event,
WellKnownTags
.Protected];
87
internal static readonly ImmutableArray<string> EventPrivate = [
WellKnownTags
.Event,
WellKnownTags
.Private];
88
internal static readonly ImmutableArray<string> EventInternal = [
WellKnownTags
.Event,
WellKnownTags
.Internal];
89
internal static readonly ImmutableArray<string> ExtensionMethodPublic = [
WellKnownTags
.ExtensionMethod,
WellKnownTags
.Public];
90
internal static readonly ImmutableArray<string> ExtensionMethodProtected = [
WellKnownTags
.ExtensionMethod,
WellKnownTags
.Protected];
91
internal static readonly ImmutableArray<string> ExtensionMethodPrivate = [
WellKnownTags
.ExtensionMethod,
WellKnownTags
.Private];
92
internal static readonly ImmutableArray<string> ExtensionMethodInternal = [
WellKnownTags
.ExtensionMethod,
WellKnownTags
.Internal];
93
internal static readonly ImmutableArray<string> FieldPublic = [
WellKnownTags
.Field,
WellKnownTags
.Public];
94
internal static readonly ImmutableArray<string> FieldProtected = [
WellKnownTags
.Field,
WellKnownTags
.Protected];
95
internal static readonly ImmutableArray<string> FieldPrivate = [
WellKnownTags
.Field,
WellKnownTags
.Private];
96
internal static readonly ImmutableArray<string> FieldInternal = [
WellKnownTags
.Field,
WellKnownTags
.Internal];
97
internal static readonly ImmutableArray<string> InterfacePublic = [
WellKnownTags
.Interface,
WellKnownTags
.Public];
98
internal static readonly ImmutableArray<string> InterfaceProtected = [
WellKnownTags
.Interface,
WellKnownTags
.Protected];
99
internal static readonly ImmutableArray<string> InterfacePrivate = [
WellKnownTags
.Interface,
WellKnownTags
.Private];
100
internal static readonly ImmutableArray<string> InterfaceInternal = [
WellKnownTags
.Interface,
WellKnownTags
.Internal];
101
internal static readonly ImmutableArray<string> Intrinsic = [
WellKnownTags
.Intrinsic];
102
internal static readonly ImmutableArray<string> Keyword = [
WellKnownTags
.Keyword];
103
internal static readonly ImmutableArray<string> Label = [
WellKnownTags
.Label];
104
internal static readonly ImmutableArray<string> Local = [
WellKnownTags
.Local];
105
internal static readonly ImmutableArray<string> Namespace = [
WellKnownTags
.Namespace];
106
internal static readonly ImmutableArray<string> MethodPublic = [
WellKnownTags
.Method,
WellKnownTags
.Public];
107
internal static readonly ImmutableArray<string> MethodProtected = [
WellKnownTags
.Method,
WellKnownTags
.Protected];
108
internal static readonly ImmutableArray<string> MethodPrivate = [
WellKnownTags
.Method,
WellKnownTags
.Private];
109
internal static readonly ImmutableArray<string> MethodInternal = [
WellKnownTags
.Method,
WellKnownTags
.Internal];
110
internal static readonly ImmutableArray<string> ModulePublic = [
WellKnownTags
.Module,
WellKnownTags
.Public];
111
internal static readonly ImmutableArray<string> ModuleProtected = [
WellKnownTags
.Module,
WellKnownTags
.Protected];
112
internal static readonly ImmutableArray<string> ModulePrivate = [
WellKnownTags
.Module,
WellKnownTags
.Private];
113
internal static readonly ImmutableArray<string> ModuleInternal = [
WellKnownTags
.Module,
WellKnownTags
.Internal];
114
internal static readonly ImmutableArray<string> Folder = [
WellKnownTags
.Folder];
115
internal static readonly ImmutableArray<string> OperatorPublic = [
WellKnownTags
.Operator,
WellKnownTags
.Public];
116
internal static readonly ImmutableArray<string> OperatorProtected = [
WellKnownTags
.Operator,
WellKnownTags
.Protected];
117
internal static readonly ImmutableArray<string> OperatorPrivate = [
WellKnownTags
.Operator,
WellKnownTags
.Private];
118
internal static readonly ImmutableArray<string> OperatorInternal = [
WellKnownTags
.Operator,
WellKnownTags
.Internal];
119
internal static readonly ImmutableArray<string> Parameter = [
WellKnownTags
.Parameter];
120
internal static readonly ImmutableArray<string> PropertyPublic = [
WellKnownTags
.Property,
WellKnownTags
.Public];
121
internal static readonly ImmutableArray<string> PropertyProtected = [
WellKnownTags
.Property,
WellKnownTags
.Protected];
122
internal static readonly ImmutableArray<string> PropertyPrivate = [
WellKnownTags
.Property,
WellKnownTags
.Private];
123
internal static readonly ImmutableArray<string> PropertyInternal = [
WellKnownTags
.Property,
WellKnownTags
.Internal];
124
internal static readonly ImmutableArray<string> RangeVariable = [
WellKnownTags
.RangeVariable];
125
internal static readonly ImmutableArray<string> Reference = [
WellKnownTags
.Reference];
126
internal static readonly ImmutableArray<string> StructurePublic = [
WellKnownTags
.Structure,
WellKnownTags
.Public];
127
internal static readonly ImmutableArray<string> StructureProtected = [
WellKnownTags
.Structure,
WellKnownTags
.Protected];
128
internal static readonly ImmutableArray<string> StructurePrivate = [
WellKnownTags
.Structure,
WellKnownTags
.Private];
129
internal static readonly ImmutableArray<string> StructureInternal = [
WellKnownTags
.Structure,
WellKnownTags
.Internal];
130
internal static readonly ImmutableArray<string> TypeParameter = [
WellKnownTags
.TypeParameter];
131
internal static readonly ImmutableArray<string> Snippet = [
WellKnownTags
.Snippet];
133
internal static readonly ImmutableArray<string> Error = [
WellKnownTags
.Error];
134
internal static readonly ImmutableArray<string> Warning = [
WellKnownTags
.Warning];
135
internal static readonly ImmutableArray<string> StatusInformation = [
WellKnownTags
.StatusInformation];
137
internal static readonly ImmutableArray<string> AddReference = [
WellKnownTags
.AddReference];
138
internal static readonly ImmutableArray<string> TargetTypeMatch = [
WellKnownTags
.TargetTypeMatch];
140
internal static readonly ImmutableArray<string> CSharpFile = [
WellKnownTags
.File, LanguageNames.CSharp];
141
internal static readonly ImmutableArray<string> VisualBasicFile = [
WellKnownTags
.File, LanguageNames.VisualBasic];
143
internal static readonly ImmutableArray<string> CSharpProject = [
WellKnownTags
.Project, LanguageNames.CSharp];
144
internal static readonly ImmutableArray<string> VisualBasicProject = [
WellKnownTags
.Project, LanguageNames.VisualBasic];