8 references to LocalRedirectResult
Microsoft.AspNetCore.Mvc.Core (3)
ControllerBase.cs (2)
419return new LocalRedirectResult(localUrl: localUrl, permanent: false, preserveMethod: true); 434return 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)
54var result = new LocalRedirectResult(url, permanent: true, preserveMethod: true);
Microsoft.AspNetCore.Mvc.RazorPages (4)
PageBase.cs (2)
442return new LocalRedirectResult(localUrl: localUrl, permanent: false, preserveMethod: true); 456return new LocalRedirectResult(localUrl: localUrl, permanent: true, preserveMethod: true);
PageModel.cs (2)
749return new LocalRedirectResult(localUrl: localUrl, permanent: false, preserveMethod: true); 763return new LocalRedirectResult(localUrl: localUrl, permanent: true, preserveMethod: true);