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