2 implementations of ProvideRecommendedNamesAsync
Microsoft.CodeAnalysis.CSharp.Features (2)
Completion\CompletionProviders\DeclarationName\DeclarationNameRecommender.cs (1)
39
public async Task<ImmutableArray<(string name, Glyph glyph)>>
ProvideRecommendedNamesAsync
(
ExternalAccess\Pythia\PythiaDeclarationNameRecommender.cs (1)
26
public async Task<ImmutableArray<(string name, Glyph glyph)>>
ProvideRecommendedNamesAsync
(
1 reference to ProvideRecommendedNamesAsync
Microsoft.CodeAnalysis.CSharp.Features (1)
Completion\CompletionProviders\DeclarationName\DeclarationNameCompletionProvider.cs (1)
76
var names = await recommender.Value.
ProvideRecommendedNamesAsync
(completionContext, document, context, nameInfo, cancellationToken).ConfigureAwait(false);