18 references to PackageWithAssemblyResult
Microsoft.CodeAnalysis.Features (7)
AddImport\Remote\IRemoteMissingImportDiscoveryService.cs (1)
20ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(RemoteServiceCallbackId callbackId, string source, string name, CancellationToken cancellationToken);
AddImport\Remote\RemoteMissingImportDiscoveryServiceCallbackDispatcher.cs (1)
37public ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(RemoteServiceCallbackId callbackId, string source, string name, CancellationToken cancellationToken)
AddPackage\AbstractAddPackageCodeFixProvider.cs (3)
61foreach (var package in sortedPackages) 72private static async Task<ImmutableArray<PackageWithAssemblyResult>> FindMatchingPackagesAsync( 79var result = new HashSet<PackageWithAssemblyResult>();
SymbolSearch\SymbolSearchUpdateNoOpEngine.cs (2)
21public ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(string source, string assemblyName, CancellationToken cancellationToken) 22=> ValueTask.FromResult(ImmutableArray<PackageWithAssemblyResult>.Empty);
Microsoft.CodeAnalysis.Workspaces (11)
SymbolSearch\IRemoteSymbolSearchUpdateEngine.cs (1)
15ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(string source, string name, CancellationToken cancellationToken);
SymbolSearch\ISymbolSearchService.cs (9)
63ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync( 111string version) : AbstractPackageResult(packageName, rank), IEquatable<PackageWithAssemblyResult?>, IComparable<PackageWithAssemblyResult?> 120=> Equals(obj as PackageWithAssemblyResult); 122public bool Equals(PackageWithAssemblyResult? other) 125public int CompareTo(PackageWithAssemblyResult? other) 133private static readonly ImmutableArray<Func<PackageWithAssemblyResult, IComparable>> s_comparers = 161public async ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(string source, string assemblyName, CancellationToken cancellationToken) 162=> ImmutableArray<PackageWithAssemblyResult>.Empty;
SymbolSearch\ISymbolSearchUpdateEngine.cs (1)
22ValueTask<ImmutableArray<PackageWithAssemblyResult>> FindPackagesWithAssemblyAsync(