55 references to Url
ClaimsTransformation (1)
Controllers\AccountController.cs (1)
44if (Url.IsLocalUrl(returnUrl))
Cookies (1)
Controllers\AccountController.cs (1)
43if (Url.IsLocalUrl(returnUrl))
IdentitySample.Mvc (3)
Controllers\AccountController.cs (2)
146var redirectUrl = Url.Action("ExternalLoginCallback", "Account", new { ReturnUrl = returnUrl }); 552if (Url.IsLocalUrl(returnUrl))
Controllers\ManageController.cs (1)
324var redirectUrl = Url.Action("LinkLoginCallback", "Manage");
Microsoft.AspNetCore.Mvc.Core (8)
ControllerBase.cs (8)
544UrlHelper = Url, 574UrlHelper = Url, 668UrlHelper = Url, 698UrlHelper = Url, 758UrlHelper = Url, 784UrlHelper = Url, 849UrlHelper = Url, 875UrlHelper = Url,
Mvc.RoutingWebSite (35)
Areas\Admin\DynamicController.cs (2)
13return Content("Hello from dynamic controller: " + Url.Action()); 19return Content("Hello from dynamic controller POST: " + Url.Action());
Areas\Admin\FallbackController.cs (2)
13return Content("Hello from fallback controller: " + Url.Action()); 19return Content("Hello from fallback controller POST: " + Url.Action());
Controllers\BanksController.cs (4)
22Url.Action(), 23Url.RouteUrl(new { })); 33Url.Action(), 34Url.RouteUrl(new { }));
Controllers\CompanyController.cs (5)
25return _generator.Generate(Url.RouteUrl("Company", new { id = id })); 35return _generator.Generate(Url.RouteUrl("Company", new { id = id })); 44return _generator.Generate(Url.RouteUrl("RemoveCompany", new { id = id })); 52return _generator.Generate(Url.RouteUrl(new { id = id })); 60return _generator.Generate(Url.RouteUrl("Departments", new { id = id }));
Controllers\ContactController.cs (4)
20return _generator.Generate(Url.RouteUrl("ActionAsMethod", null, Url.ActionContext.HttpContext.Request.Scheme)); 25return _generator.Generate(Url.RouteUrl("ActionAsMethod", null, Url.ActionContext.HttpContext.Request.Scheme));
Controllers\DynamicOrderController.cs (2)
20return _generator.Generate(Url.RouteUrl("AttributeRouteSlug", new { slug })); 26return _generator.Generate(Url.RouteUrl(null, new { controller = "DynamicOrder", action = "Index" }));
Controllers\LoginController.cs (4)
20return _generator.Generate(Url.RouteUrl("ActionAsMethod", null, Url.ActionContext.HttpContext.Request.Scheme)); 25return _generator.Generate(Url.RouteUrl("ActionAsMethod", null, Url.ActionContext.HttpContext.Request.Scheme));
Controllers\MapsController.cs (7)
26Url.Action(), 27Url.RouteUrl("v1"), 28Url.RouteUrl(new { })); 35Url.Action(), 36Url.RouteUrl(new { })); 49Url.Action(), 50Url.RouteUrl(new { }));
Controllers\PageParameterController.cs (1)
20return Content(Url.Action(nameof(PageParameter), new { page = "17", }));
Controllers\TeamController.cs (4)
45return Content(Url.Action(), "text/plain"); 51return Content(Url.Action(), "text/plain"); 57return Content(Url.Action(), "text/plain"); 63return Content(Url.Action(), "text/plain");
PathSchemeSelection (1)
Controllers\AccountController.cs (1)
44if (Url.IsLocalUrl(returnUrl))
StaticFilesAuth (1)
Controllers\AccountController.cs (1)
43if (Url.IsLocalUrl(returnUrl))
VersioningWebSite (5)
Controllers\AddressController.cs (4)
36Url.Action("GetAllV1", 37new { version = version }), Url.RouteUrl(new { version = version })); 44Url.Action("GetAllV2", new { version = version }), 45Url.RouteUrl(new { version = version }));
Controllers\VouchersController.cs (1)
22return _generator.Generate(Url.RouteUrl("V" + version, new { version = version }));