309 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)
74
NamespaceFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Namespaces, 'n',
WellKnownTags
.Namespace);
75
ClassFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Classes, 'c',
WellKnownTags
.Class);
76
ModuleFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Modules, 'u',
WellKnownTags
.Module);
77
StructureFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Structures, 's',
WellKnownTags
.Structure);
78
InterfaceFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Interfaces, 'i',
WellKnownTags
.Interface);
79
EnumFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Enums, 'e',
WellKnownTags
.Enum);
80
EnumMemberFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Enum_members, 'b',
WellKnownTags
.EnumMember);
81
DelegateFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Delegates, 'd',
WellKnownTags
.Delegate);
82
ConstantFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Constants, 'o',
WellKnownTags
.Constant);
83
FieldFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Fields, 'f',
WellKnownTags
.Field);
84
EventFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Events, 'v',
WellKnownTags
.Event);
85
PropertyFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Properties, 'p',
WellKnownTags
.Property);
86
MethodFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Methods, 'm',
WellKnownTags
.Method);
87
ExtensionMethodFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Extension_methods, 'x',
WellKnownTags
.ExtensionMethod);
88
OperatorFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Operators, 'r',
WellKnownTags
.Operator);
89
LocalAndParameterFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Locals_and_parameters, 'l',
WellKnownTags
.Local,
WellKnownTags
.Parameter);
90
KeywordFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Keywords, 'k',
WellKnownTags
.Keyword);
91
SnippetFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Snippets, 't',
WellKnownTags
.Snippet);
92
TargetTypedFilter = CreateCompletionFilterAndAddToBuilder(FeaturesResources.Target_type_matches, 'j',
WellKnownTags
.TargetTypeMatch);
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (14)
IntelliSense\CSharpCompletionCommandHandlerTests.vb (2)
4076
Assert.True(state.GetSelectedItem().Tags.Contains(
WellKnownTags
.Warning))
4086
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 (88)
Common\GlyphExtensions.cs (37)
43
case
WellKnownTags
.Assembly:
46
case
WellKnownTags
.File:
49
case
WellKnownTags
.Project:
52
case
WellKnownTags
.Class:
60
case
WellKnownTags
.Constant:
68
case
WellKnownTags
.Delegate:
76
case
WellKnownTags
.Enum:
84
case
WellKnownTags
.EnumMember:
92
case
WellKnownTags
.Error:
95
case
WellKnownTags
.Event:
103
case
WellKnownTags
.ExtensionMethod:
111
case
WellKnownTags
.Field:
119
case
WellKnownTags
.Interface:
127
case
WellKnownTags
.TargetTypeMatch:
130
case
WellKnownTags
.Intrinsic:
133
case
WellKnownTags
.Keyword:
136
case
WellKnownTags
.Label:
139
case
WellKnownTags
.Local:
142
case
WellKnownTags
.Namespace:
145
case
WellKnownTags
.Method:
153
case
WellKnownTags
.Module:
161
case
WellKnownTags
.Folder:
164
case
WellKnownTags
.Operator:
167
case
WellKnownTags
.Parameter:
170
case
WellKnownTags
.Property:
178
case
WellKnownTags
.RangeVariable:
181
case
WellKnownTags
.Reference:
184
case
WellKnownTags
.NuGet:
187
case
WellKnownTags
.Structure:
195
case
WellKnownTags
.TypeParameter:
198
case
WellKnownTags
.Snippet:
201
case
WellKnownTags
.Warning:
204
case
WellKnownTags
.StatusInformation:
217
case
WellKnownTags
.Public:
219
case
WellKnownTags
.Protected:
221
case
WellKnownTags
.Internal:
223
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)
161
item = item.AddTag(
WellKnownTags
.TargetTypeMatch);
Completion\Providers\ImportCompletionProvider\ImportCompletionItem.cs (1)
87
item = item.AddTag(
WellKnownTags
.TargetTypeMatch);
Completion\Providers\SymbolCompletionItem.cs (2)
62
if (symbols.All(symbol => symbol.IsObsolete()) && !tags.Contains(
WellKnownTags
.Deprecated))
63
tags = tags.Add(
WellKnownTags
.Deprecated);
FindUsages\DefinitionItem.cs (1)
57
/// 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)
157
tags = tags.Add(
WellKnownTags
.Warning);
SemanticSearch\AbstractSemanticSearchService.cs (2)
246
: [new TaggedText(
WellKnownTags
.Class, exceptionTypeName)]
247
: [new TaggedText(
WellKnownTags
.Class, nameof(Exception))];
SemanticSearch\SearchCompilationFailureDefinitionItem.cs (1)
17
WellKnownTags
.Error
SemanticSearch\SearchExceptionDefinitionItem.cs (1)
19
WellKnownTags
.Error
Microsoft.CodeAnalysis.LanguageServer.Protocol (38)
Extensions\ProtocolConversions.cs (38)
55
{
WellKnownTags
.Public, ImmutableArray.Create(LSP.CompletionItemKind.Keyword) },
56
{
WellKnownTags
.Protected, ImmutableArray.Create(LSP.CompletionItemKind.Keyword) },
57
{
WellKnownTags
.Private, ImmutableArray.Create(LSP.CompletionItemKind.Keyword) },
58
{
WellKnownTags
.Internal, ImmutableArray.Create(LSP.CompletionItemKind.Keyword) },
59
{
WellKnownTags
.File, ImmutableArray.Create(LSP.CompletionItemKind.File) },
60
{
WellKnownTags
.Project, ImmutableArray.Create(LSP.CompletionItemKind.File) },
61
{
WellKnownTags
.Folder, ImmutableArray.Create(LSP.CompletionItemKind.Folder) },
62
{
WellKnownTags
.Assembly, ImmutableArray.Create(LSP.CompletionItemKind.File) },
63
{
WellKnownTags
.Class, ImmutableArray.Create(LSP.CompletionItemKind.Class) },
64
{
WellKnownTags
.Constant, ImmutableArray.Create(LSP.CompletionItemKind.Constant) },
65
{
WellKnownTags
.Delegate, ImmutableArray.Create(LSP.CompletionItemKind.Class, LSP.CompletionItemKind.Delegate) },
66
{
WellKnownTags
.Enum, ImmutableArray.Create(LSP.CompletionItemKind.Enum) },
67
{
WellKnownTags
.EnumMember, ImmutableArray.Create(LSP.CompletionItemKind.EnumMember) },
68
{
WellKnownTags
.Event, ImmutableArray.Create(LSP.CompletionItemKind.Event) },
69
{
WellKnownTags
.ExtensionMethod, ImmutableArray.Create(LSP.CompletionItemKind.Method, LSP.CompletionItemKind.ExtensionMethod) },
70
{
WellKnownTags
.Field, ImmutableArray.Create(LSP.CompletionItemKind.Field) },
71
{
WellKnownTags
.Interface, ImmutableArray.Create(LSP.CompletionItemKind.Interface) },
72
{
WellKnownTags
.Intrinsic, ImmutableArray.Create(LSP.CompletionItemKind.Text) },
73
{
WellKnownTags
.Keyword, ImmutableArray.Create(LSP.CompletionItemKind.Keyword) },
74
{
WellKnownTags
.Label, ImmutableArray.Create(LSP.CompletionItemKind.Text) },
75
{
WellKnownTags
.Local, ImmutableArray.Create(LSP.CompletionItemKind.Variable) },
76
{
WellKnownTags
.Namespace, ImmutableArray.Create(LSP.CompletionItemKind.Module, LSP.CompletionItemKind.Namespace) },
77
{
WellKnownTags
.Method, ImmutableArray.Create(LSP.CompletionItemKind.Method) },
78
{
WellKnownTags
.Module, ImmutableArray.Create(LSP.CompletionItemKind.Module) },
79
{
WellKnownTags
.Operator, ImmutableArray.Create(LSP.CompletionItemKind.Operator) },
80
{
WellKnownTags
.Parameter, ImmutableArray.Create(LSP.CompletionItemKind.Value) },
81
{
WellKnownTags
.Property, ImmutableArray.Create(LSP.CompletionItemKind.Property) },
82
{
WellKnownTags
.RangeVariable, ImmutableArray.Create(LSP.CompletionItemKind.Variable) },
83
{
WellKnownTags
.Reference, ImmutableArray.Create(LSP.CompletionItemKind.Reference) },
84
{
WellKnownTags
.Structure, ImmutableArray.Create(LSP.CompletionItemKind.Struct) },
85
{
WellKnownTags
.TypeParameter, ImmutableArray.Create(LSP.CompletionItemKind.TypeParameter) },
86
{
WellKnownTags
.Snippet, ImmutableArray.Create(LSP.CompletionItemKind.Snippet) },
87
{
WellKnownTags
.Error, ImmutableArray.Create(LSP.CompletionItemKind.Text) },
88
{
WellKnownTags
.Warning, ImmutableArray.Create(LSP.CompletionItemKind.Text) },
89
{
WellKnownTags
.StatusInformation, ImmutableArray.Create(LSP.CompletionItemKind.Text) },
90
{
WellKnownTags
.AddReference, ImmutableArray.Create(LSP.CompletionItemKind.Text) },
91
{
WellKnownTags
.NuGet, ImmutableArray.Create(LSP.CompletionItemKind.Text) }
102
{
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)
23
Private Shared ReadOnly s_tags As ImmutableArray(Of String) = ImmutableArray.Create(
WellKnownTags
.Intrinsic)
Completion\VisualBasicCompletionService.vb (1)
98
If keywordCompletionItem IsNot Nothing AndAlso keywordCompletionItem.Tags.Contains(
WellKnownTags
.Intrinsic) Then
Microsoft.CodeAnalysis.Workspaces (127)
CodeActions\CodeAction.cs (1)
144
/// Descriptive tags from <see cref="
WellKnownTags
"/>.
Tags\WellKnownTags.cs (126)
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> Operator = [
WellKnownTags
.Operator];
116
internal static readonly ImmutableArray<string> Parameter = [
WellKnownTags
.Parameter];
117
internal static readonly ImmutableArray<string> PropertyPublic = [
WellKnownTags
.Property,
WellKnownTags
.Public];
118
internal static readonly ImmutableArray<string> PropertyProtected = [
WellKnownTags
.Property,
WellKnownTags
.Protected];
119
internal static readonly ImmutableArray<string> PropertyPrivate = [
WellKnownTags
.Property,
WellKnownTags
.Private];
120
internal static readonly ImmutableArray<string> PropertyInternal = [
WellKnownTags
.Property,
WellKnownTags
.Internal];
121
internal static readonly ImmutableArray<string> RangeVariable = [
WellKnownTags
.RangeVariable];
122
internal static readonly ImmutableArray<string> Reference = [
WellKnownTags
.Reference];
123
internal static readonly ImmutableArray<string> StructurePublic = [
WellKnownTags
.Structure,
WellKnownTags
.Public];
124
internal static readonly ImmutableArray<string> StructureProtected = [
WellKnownTags
.Structure,
WellKnownTags
.Protected];
125
internal static readonly ImmutableArray<string> StructurePrivate = [
WellKnownTags
.Structure,
WellKnownTags
.Private];
126
internal static readonly ImmutableArray<string> StructureInternal = [
WellKnownTags
.Structure,
WellKnownTags
.Internal];
127
internal static readonly ImmutableArray<string> TypeParameter = [
WellKnownTags
.TypeParameter];
128
internal static readonly ImmutableArray<string> Snippet = [
WellKnownTags
.Snippet];
130
internal static readonly ImmutableArray<string> Error = [
WellKnownTags
.Error];
131
internal static readonly ImmutableArray<string> Warning = [
WellKnownTags
.Warning];
132
internal static readonly ImmutableArray<string> StatusInformation = [
WellKnownTags
.StatusInformation];
134
internal static readonly ImmutableArray<string> AddReference = [
WellKnownTags
.AddReference];
135
internal static readonly ImmutableArray<string> TargetTypeMatch = [
WellKnownTags
.TargetTypeMatch];
137
internal static readonly ImmutableArray<string> CSharpFile = [
WellKnownTags
.File, LanguageNames.CSharp];
138
internal static readonly ImmutableArray<string> VisualBasicFile = [
WellKnownTags
.File, LanguageNames.VisualBasic];
140
internal static readonly ImmutableArray<string> CSharpProject = [
WellKnownTags
.Project, LanguageNames.CSharp];
141
internal static readonly ImmutableArray<string> VisualBasicProject = [
WellKnownTags
.Project, LanguageNames.VisualBasic];