9 references to Keys
Aspire.Dashboard (2)
Components\Controls\Chart\MetricTable.razor.cs (2)
219
var latestCurrentMetric = _metrics.
Keys
.OfType<DateTimeOffset?>().LastOrDefault();
220
addedXValues = newMetrics.
Keys
.Where(newKey => newKey > latestCurrentMetric || latestCurrentMetric == null).ToHashSet();
GenerateDocumentationAndConfigFiles (1)
Program.cs (1)
494
var allRuleIds = string.Join(';', allRulesById.
Keys
);
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (1)
ObjectModel\TestResult.cs (1)
524
helper.SaveIEnumerable(_resultFiles.
Keys
, element, "ResultFiles", "@path", "ResultFile", parameters);
PresentationCore (1)
System\Windows\Media\Animation\AnimationStorage.cs (1)
748
IList<Int64> keys = propertyTriggerLayers.
Keys
;
System.IO.Packaging (4)
System\IO\Packaging\Package.cs (4)
989
precedingPartName = _partList.
Keys
[index - 1].NormalizedPartUriString;
994
followingPartName = _partList.
Keys
[index + 1].NormalizedPartUriString;
1058
PackUriHelper.ValidatedPartUri[] partKeys = new PackUriHelper.ValidatedPartUri[_partList.
Keys
.Count];
1060
foreach (PackUriHelper.ValidatedPartUri uri in _partList.
Keys
)