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