1 write to CustomTags
Microsoft.CodeAnalysis.Workspaces (1)
Diagnostics\DiagnosticData.cs (1)
110CustomTags = customTags;
22 references to CustomTags
Microsoft.CodeAnalysis.EditorFeatures (4)
Diagnostics\DiagnosticsClassificationTaggerProvider.cs (1)
73if (!data.CustomTags.Contains(WellKnownDiagnosticTags.Unnecessary))
Diagnostics\DiagnosticsSquiggleTaggerProvider.cs (3)
55var isUnnecessary = diagnostic.Severity == DiagnosticSeverity.Hidden && diagnostic.CustomTags.Contains(WellKnownDiagnosticTags.Unnecessary); 93diagnostic.CustomTags.Contains(WellKnownDiagnosticTags.EditAndContinue)) 112if (diagnostic.CustomTags.Contains(WellKnownDiagnosticTags.Unnecessary))
Microsoft.CodeAnalysis.EditorFeatures.Wpf (1)
InlineDiagnostics\InlineDiagnosticsTaggerProvider.cs (1)
104return diagnostic.CustomTags.Contains(WellKnownDiagnosticTags.EditAndContinue)
Microsoft.CodeAnalysis.Features (4)
CodeFixes\Suppression\SuppressionHelpers.cs (3)
70=> HasCustomTag(diagnostic.CustomTags, WellKnownDiagnosticTags.NotConfigurable); 76=> HasCustomTag(diagnostic.CustomTags, WellKnownDiagnosticTags.Compiler); 82=> HasCustomTag(diagnostic.CustomTags, SynthesizedExternalSourceDiagnosticTag);
ExternalAccess\VSTypeScript\Api\VSTypeScriptDiagnosticData.cs (1)
33=> _data.CustomTags;
Microsoft.CodeAnalysis.LanguageServer.Protocol (5)
Features\Diagnostics\EngineV2\DiagnosticIncrementalAnalyzer_GetDiagnosticsForSpan.cs (1)
433&& (_includeCompilerDiagnostics || !diagnostic.CustomTags.Any(static t => t is WellKnownDiagnosticTags.Compiler))
Handler\Diagnostics\AbstractPullDiagnosticHandler.cs (4)
328if (!diagnosticData.CustomTags.Contains(WellKnownDiagnosticTags.Unnecessary)) 483if (diagnosticData.CustomTags.Contains(PullDiagnosticConstants.TaskItemCustomTag)) 489result.Add(diagnosticData.CustomTags.Contains(WellKnownDiagnosticTags.Build) 493if (diagnosticData.CustomTags.Contains(WellKnownDiagnosticTags.EditAndContinue))
Microsoft.CodeAnalysis.Workspaces (3)
Diagnostics\DiagnosticData.cs (3)
126WarningLevel, CustomTags, Properties, ProjectId, location, additionalLocations, 187location, additionalLocations, customTags: CustomTags, properties: Properties); 374=> CustomTags.Contains(WellKnownDiagnosticCustomTags.DoesNotSupportF1Help) ? null : Id;
Microsoft.VisualStudio.LanguageServices (3)
PreviewPane\PreviewPaneService.cs (1)
111logIdVerbatimInTelemetry: data.CustomTags.Contains(WellKnownDiagnosticTags.Telemetry),
TaskList\ExternalErrorDiagnosticUpdateSource.cs (2)
794diagnosticData.CustomTags.Contains(WellKnownDiagnosticTags.Compiler)) 804diagnosticData.CustomTags.Contains(WellKnownDiagnosticTags.Compiler))
Microsoft.VisualStudio.LanguageServices.UnitTests (2)
Diagnostics\DiagnosticTableDataSourceTests.vb (2)
694diagnostic1.CustomTags, 718diagnostic2.CustomTags,