7 references to ViewBag
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
Controller.cs (1)
24/// Gets or sets <see cref="ViewDataDictionary"/> used by <see cref="ViewResult"/> and <see cref="ViewBag"/>.
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (4)
ControllerTest.cs (4)
43controller.ViewBag.Hello = "goodbye"; 45controller.ViewBag.Another = "property"; 50Assert.Null(controller.ViewBag.Hello); 51Assert.Equal("property", controller.ViewBag.Another);
MvcFormSample (2)
Controllers\HomeController.cs (2)
21ViewBag.EnableAntiforgery = antiforgery; 27ViewBag.EnableAntiforgery = antiforgery;