9 references to CancellationToken
Microsoft.CodeAnalysis.CSharp.Features (2)
QuickInfo\CSharpDiagnosticAnalyzerQuickInfoProvider.cs (1)
38(await GetQuickInfoForSuppressMessageAttributeAsync(document, token, context.CancellationToken).ConfigureAwait(false));
QuickInfo\CSharpSyntacticQuickInfoProvider.cs (1)
32=> Task.FromResult(BuildQuickInfo(token, context.CancellationToken));
Microsoft.CodeAnalysis.Features (7)
QuickInfo\AbstractEmbeddedLanguageQuickInfoProvider.cs (2)
34var semanticModel = await context.Document.GetRequiredSemanticModelAsync(context.CancellationToken).ConfigureAwait(false); 36var quickInfoProviders = _embeddedLanguageProviderFeature.GetServices(semanticModel, token, context.CancellationToken);
QuickInfo\CommonQuickInfoProvider.cs (2)
20var cancellationToken = context.CancellationToken; 22var tokens = await GetTokensAsync(tree, context.Position, context.CancellationToken).ConfigureAwait(false);
QuickInfo\CommonSemanticQuickInfoProvider.cs (3)
30var cancellationToken = context.CancellationToken; 54var cancellationToken = context.CancellationToken; 82var cancellationToken = context.CancellationToken;