17 references to CustomTags
Microsoft.CodeAnalysis.EditorFeatures (1)
InlineDiagnostics\InlineDiagnosticsTaggerProvider.cs (1)
80return diagnostic.CustomTags.Contains(WellKnownDiagnosticTags.EditAndContinue)
Microsoft.CodeAnalysis.Features (4)
CodeFixes\Suppression\SuppressionHelpers.cs (3)
66=> HasCustomTag(diagnostic.CustomTags, WellKnownDiagnosticTags.NotConfigurable); 72=> HasCustomTag(diagnostic.CustomTags, WellKnownDiagnosticTags.Compiler); 78=> HasCustomTag(diagnostic.CustomTags, SynthesizedExternalSourceDiagnosticTag);
ExternalAccess\VSTypeScript\Api\VSTypeScriptDiagnosticData.cs (1)
32=> _data.CustomTags;
Microsoft.CodeAnalysis.LanguageServer.Protocol (8)
Extensions\ProtocolConversions.Diagnostics.cs (7)
24if (d.CustomTags.Contains(WellKnownDiagnosticTags.Build)) 27return d.WithCustomTags(d.CustomTags.Add(WellKnownDiagnosticTags.Build)); 49if (!diagnosticData.CustomTags.Contains(WellKnownDiagnosticTags.Unnecessary)) 194if (diagnosticData.CustomTags.Contains(WellKnownDiagnosticTags.Unnecessary)) 250if (diagnosticData.CustomTags.Contains(PullDiagnosticConstants.TaskItemCustomTag)) 260result.Add(diagnosticData.CustomTags.Contains(WellKnownDiagnosticTags.Build) 264if (diagnosticData.CustomTags.Contains(WellKnownDiagnosticTags.EditAndContinue))
Handler\Diagnostics\DiagnosticsPullCache.cs (1)
84foreach (var tag in diagnosticData.CustomTags.Sort())
Microsoft.CodeAnalysis.Workspaces (3)
Diagnostics\DiagnosticData.cs (3)
102WarningLevel, CustomTags, Properties, ProjectId, location, additionalLocations, 168location, additionalLocations, customTags: CustomTags, properties: Properties); 376=> CustomTags.Contains(WellKnownDiagnosticCustomTags.DoesNotSupportF1Help) ? null : Id;
Microsoft.VisualStudio.LanguageServices (1)
PreviewPane\PreviewPaneService.cs (1)
105logIdVerbatimInTelemetry: data.CustomTags.Contains(WellKnownDiagnosticTags.Telemetry),