8 references to LocalRedirectResult
Microsoft.AspNetCore.Mvc.Core (3)
ControllerBase.cs (2)
419
return new
LocalRedirectResult
(localUrl: localUrl, permanent: false, preserveMethod: true);
434
return new
LocalRedirectResult
(localUrl: localUrl, permanent: true, preserveMethod: true);
LocalRedirectResult.cs (1)
35
:
this
(localUrl, permanent, preserveMethod: false)
Microsoft.AspNetCore.Mvc.Core.Test (1)
LocalRedirectResultTest.cs (1)
54
var result = new
LocalRedirectResult
(url, permanent: true, preserveMethod: true);
Microsoft.AspNetCore.Mvc.RazorPages (4)
PageBase.cs (2)
442
return new
LocalRedirectResult
(localUrl: localUrl, permanent: false, preserveMethod: true);
456
return new
LocalRedirectResult
(localUrl: localUrl, permanent: true, preserveMethod: true);
PageModel.cs (2)
749
return new
LocalRedirectResult
(localUrl: localUrl, permanent: false, preserveMethod: true);
763
return new
LocalRedirectResult
(localUrl: localUrl, permanent: true, preserveMethod: true);