6 references to ModelState
Microsoft.AspNetCore.Mvc.RazorPages (4)
PageBase.cs (4)
1554
/// <returns><c>true</c> if the <see cref="
ModelState
"/> is valid; <c>false</c> otherwise.</returns>
1567
/// <param name="prefix">The key to use when looking up information in <see cref="
ModelState
"/>.
1569
/// <returns><c>true</c> if the <see cref="
ModelState
"/> is valid;<c>false</c> otherwise.</returns>
1581
return
ModelState
.IsValid;
Microsoft.AspNetCore.Mvc.RazorPages.Test (2)
PageTest.cs (2)
47
Assert.Same(modelState, page.
ModelState
);
1852
var modelState = Assert.Single(pageModel.
ModelState
);