Implemented interface members:
method
ContainsKey
System.Collections.Generic.IDictionary<TKey, TValue>.ContainsKey(TKey)
method
ContainsKey
System.Collections.Generic.IReadOnlyDictionary<TKey, TValue>.ContainsKey(TKey)
12 references to ContainsKey
Aspire.Hosting.Docker (1)
EnvFile.cs (1)
61if (Entries.ContainsKey(key) && onlyIfMissing)
dotnet-svcutil-lib (1)
Shared\Options\ApplicationOptions.cs (1)
199var option = this.PropertyBag.ContainsKey(optionId) ?
Microsoft.Data.Analysis (2)
DataFrameColumns\StringDataFrameColumn.cs (1)
251if (heapOfValueAndListOfTupleOfSortAndBufferIndex.ContainsKey(valueAndBufferSortIndex.Item1))
PrimitiveDataFrameColumn.Sort.cs (1)
92if (heapOfValueAndListOfTupleOfSortAndBufferIndex.ContainsKey(valueAndBufferIndex.Item1))
Microsoft.DotNet.Build.Tasks.Packaging (2)
FilterUnknownPackages.cs (1)
42isKnownPackage = packageId => index.Packages.ContainsKey(packageId);
ValidatePackage.cs (1)
438var missingModuleNames = moduleNames.Where(m => !index.ModulesToPackages.ContainsKey(m));
NuGet.ProjectModel (2)
DependencyGraphSpec.cs (2)
208.Where(project => projectsByUniqueName.ContainsKey(project.ProjectUniqueName)) 224if (!_projects.ContainsKey(projectUniqueName))
NuGet.Protocol (1)
RemoteRepositories\PluginFindPackageByIdResource.cs (1)
467if (!results.ContainsKey(packageInfo.Identity.Version))
NuGet.Resolver (1)
ResolverPackage.cs (1)
50if (_dependencyIds.ContainsKey(dependency.Id))
System.Collections (2)
System\Collections\Generic\SortedDictionary.cs (2)
370return ContainsKey((TKey)key); 609return _dictionary.ContainsKey(item);