15 references to Data
Microsoft.AspNetCore.Components.Endpoints (15)
TempData\TempData.cs (15)
45Data[key] = value; 52var value = Data.GetValueOrDefault(key); 59return Data.GetValueOrDefault(key); 64_retainedKeys.UnionWith(Data.Keys); 69if (Data.ContainsKey(key)) 77return Data.ContainsKey(key); 82var removed = Data.Remove(key); 111Data.Clear(); 115ICollection<string> IDictionary<string, object?>.Keys => Data.Keys; 117ICollection<object?> IDictionary<string, object?>.Values => Data.Values; 119int ICollection<KeyValuePair<string, object?>>.Count => Data.Count; 120bool ICollection<KeyValuePair<string, object?>>.IsReadOnly => ((ICollection<KeyValuePair<string, object?>>)Data).IsReadOnly; 129if (Data.TryGetValue(key, out value)) 149((ICollection<KeyValuePair<string, object?>>)Data).CopyTo(array, arrayIndex); 180_innerEnumerator = tempData.Data.GetEnumerator();