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)
43
controller.
ViewBag
.Hello = "goodbye";
45
controller.
ViewBag
.Another = "property";
50
Assert.Null(controller.
ViewBag
.Hello);
51
Assert.Equal("property", controller.
ViewBag
.Another);
MvcFormSample (2)
Controllers\HomeController.cs (2)
21
ViewBag
.EnableAntiforgery = antiforgery;
27
ViewBag
.EnableAntiforgery = antiforgery;