1 write to CancellationToken
Metrics.Legacy (1)
src\RoslynAnalyzers\Utilities\Compiler\CodeMetrics\CodeMetricsAnalysisContext.cs (1)
24CancellationToken = cancellationToken;
12 references to CancellationToken
Metrics.Legacy (12)
src\RoslynAnalyzers\Utilities\Compiler\CodeMetrics\CodeAnalysisMetricData.cs (3)
258if (context.CancellationToken.IsCancellationRequested) 260return Task.FromCanceled<CodeAnalysisMetricData>(context.CancellationToken); 303context.CancellationToken.ThrowIfCancellationRequested();
src\RoslynAnalyzers\Utilities\Compiler\CodeMetrics\MetricsHelper.cs (9)
77if (!Equals(model.GetDeclaredSymbol(declSyntax, context.CancellationToken), symbol)) 83FileLinePositionSpan linePosition = declSyntax.SyntaxTree.GetLineSpan(declSyntax.FullSpan, context.CancellationToken); 181var declSyntax = declaration.GetSyntax(context.CancellationToken); 185while (declSyntax.Parent != null && Equals(model.GetDeclaredSymbol(declSyntax.Parent, context.CancellationToken), declaredSymbol)) 218var parameterSyntax = parameterSyntaxRef.GetSyntax(context.CancellationToken); 234var attributeSyntax = attribute.ApplicationSyntaxReference.GetSyntax(context.CancellationToken); 249var declaredSymbol = model.GetDeclaredSymbol(node, context.CancellationToken); 257var typeInfo = model.GetTypeInfo(node, context.CancellationToken); 260var operationBlock = model.GetOperation(node, context.CancellationToken);