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