1 write to Name
Microsoft.CodeAnalysis.Workspaces (1)
FindSymbols\SearchQuery.cs (1)
30Name = name ?? throw new ArgumentNullException(nameof(name));
10 references to Name
Microsoft.CodeAnalysis.Workspaces (10)
FindSymbols\Declarations\DeclarationFinder.cs (2)
49? await project.ContainsSymbolsWithNameAsync(query.Name!, cancellationToken).ConfigureAwait(false) 58? compilation.GetSymbolsWithName(query.Name!, filter, cancellationToken)
FindSymbols\Declarations\DeclarationFinder_AllDeclarations.cs (3)
33Contract.ThrowIfNull(query.Name); 34if (string.IsNullOrWhiteSpace(query.Name)) 44(service, solutionInfo, cancellationToken) => service.FindAllDeclarationsWithNormalQueryAsync(solutionInfo, project.Id, query.Name, query.Kind, criteria, cancellationToken),
FindSymbols\SymbolFinder_Declarations_CustomQueries.cs (4)
51if (query.Name != null && string.IsNullOrWhiteSpace(query.Name)) 96if (query.Name != null && string.IsNullOrWhiteSpace(query.Name))
FindSymbols\SymbolTree\SymbolTreeInfo.cs (1)
152var queryName = query.Name;