3 references to FindAsync
Microsoft.CodeAnalysis.Features (3)
FullyQualify\AbstractFullyQualifyService.cs (3)
79
var matchingTypes = await
FindAsync
(name, ignoreCase, SymbolFilter.Type).ConfigureAwait(false);
80
var matchingAttributeTypes = inAttributeContext ? await
FindAsync
(name + nameof(Attribute), ignoreCase, SymbolFilter.Type).ConfigureAwait(false) : ImmutableArray<ISymbol>.Empty;
81
var matchingNamespaces = inAttributeContext ? ImmutableArray<ISymbol>.Empty : await
FindAsync
(name, ignoreCase, SymbolFilter.Namespace).ConfigureAwait(false);