9 references to GetSnapshot
dotnet (9)
Telemetry\PersistenceChannel\SnapshottingCollection.cs (4)
23public int Count => GetSnapshot().Count; 47return GetSnapshot().Contains(item); 52GetSnapshot().CopyTo(array, arrayIndex); 71return GetSnapshot().GetEnumerator();
Telemetry\PersistenceChannel\SnapshottingDictionary.cs (5)
16public ICollection<TKey> Keys => GetSnapshot().Keys; 18public ICollection<TValue> Values => GetSnapshot().Values; 22get => GetSnapshot()[key]; 45return GetSnapshot().ContainsKey(key); 64return GetSnapshot().TryGetValue(key, out value);