Implemented interface member:
26 writes to
Microsoft.AspNetCore.Components.Endpoints (1)
TempData\TempData.cs (1)
122
this
[
key] = value;
Microsoft.AspNetCore.Components.Endpoints.Tests (25)
TempData\CookieTempDataProviderTest.cs (4)
75
tempData
[
"Key1"] = "Value1";
89
tempData
[
"Key"] = new object();
99
tempData
[
"StringKey"] = "StringValue";
100
tempData
[
"IntKey"] = 42;
TempData\SessionStorageTempDataProviderTest.cs (4)
54
tempData
[
"Key1"] = "Value1";
67
tempData
[
"Key"] = new object();
100
tempData
[
"StringKey"] = "StringValue";
101
tempData
[
"IntKey"] = 42;
TempData\TempDataTest.cs (17)
17
tempData
[
"Key1"] = "Value1";
26
tempData
[
"Key1"] = "Value1";
47
tempData
[
"Key1"] = "Value1";
66
tempData
[
"Key1"] = "Value1";
67
tempData
[
"Key2"] = "Value2";
83
tempData
[
"Key1"] = "Value1";
84
tempData
[
"Key2"] = "Value2";
99
tempData
[
"Key1"] = "Value1";
112
tempData
[
"Key1"] = "Value1";
129
tempData
[
"Key1"] = "Value1";
150
tempData
[
"Key1"] = "Value1";
151
tempData
[
"Key2"] = "Value2";
152
tempData
[
"Key3"] = "Value3";
182
tempData
[
"ExistingKey"] = "ExistingValue";
198
tempData
[
"Key1"] = "Value1";
199
tempData
[
"Key2"] = "Value2";
211
tempData
[
"Key1"] = "Value1";
3 references to
Microsoft.AspNetCore.Components.Endpoints.Tests (3)
TempData\TempDataTest.cs (3)
18
var value = tempData
[
"Key1"];
212
var value = tempData
[
"KEY1"];
244
var value = tempData
[
"Key"];