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