13 references to Data
Microsoft.AspNetCore.Components.Endpoints (13)
TempData\TempData.cs (13)
45Data[key] = value; 53return Data.GetValueOrDefault(key); 58return Data.GetValueOrDefault(key); 68if (Data.ContainsKey(key)) 76return Data.ContainsKey(key); 82return Data.Remove(key); 109Data.Clear(); 113ICollection<string> IDictionary<string, object?>.Keys => Data.Keys; 115ICollection<object?> IDictionary<string, object?>.Values => Data.Values; 117int ICollection<KeyValuePair<string, object?>>.Count => Data.Count; 118bool ICollection<KeyValuePair<string, object?>>.IsReadOnly => ((ICollection<KeyValuePair<string, object?>>)Data).IsReadOnly; 127if (Data.TryGetValue(key, out value)) 147((ICollection<KeyValuePair<string, object?>>)Data).CopyTo(array, arrayIndex);