本文整理汇总了C#中TempDataDictionary.Peek方法的典型用法代码示例。如果您正苦于以下问题:C# TempDataDictionary.Peek方法的具体用法?C# TempDataDictionary.Peek怎么用?C# TempDataDictionary.Peek使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TempDataDictionary
的用法示例。
在下文中一共展示了TempDataDictionary.Peek方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: PeekDoesNotMarkKeyAsRead
public void PeekDoesNotMarkKeyAsRead() {
// Arrange
NullTempDataProvider provider = new NullTempDataProvider();
TempDataDictionary tempData = new TempDataDictionary();
Mock<ControllerContext> controllerContext = new Mock<ControllerContext>();
tempData["Bar"] = "barValue";
// Act
object value = tempData.Peek("bar");
tempData.Save(controllerContext.Object, provider);
// Assert
Assert.AreEqual("barValue", value, "Incorrect value read from Peek().");
Assert.IsTrue(tempData.ContainsKey("Bar"), "Peek() shouldn't have removed 'Bar' from TempData.");
}
示例2: TempData_Peek_DoesNotMarkKeyForDeletion
public void TempData_Peek_DoesNotMarkKeyForDeletion()
{
// Arrange
var tempData = new TempDataDictionary(GetHttpContextAccessor(), new NullTempDataProvider());
tempData["Bar"] = "barValue";
// Act
var value = tempData.Peek("bar");
tempData.Save();
// Assert
Assert.Equal("barValue", value);
Assert.True(tempData.ContainsKey("Bar"));
}
示例3: PeekDoesNotMarkKeyAsRead
public void PeekDoesNotMarkKeyAsRead()
{
// Arrange
NullTempDataProvider provider = new NullTempDataProvider();
TempDataDictionary tempData = new TempDataDictionary();
Mock<ControllerContext> controllerContext = new Mock<ControllerContext>();
tempData["Bar"] = "barValue";
// Act
object value = tempData.Peek("bar");
tempData.Save(controllerContext.Object, provider);
// Assert
Assert.Equal("barValue", value);
Assert.True(tempData.ContainsKey("Bar"));
}