1 implementation of Content
Microsoft.AspNetCore.Mvc.Core (1)
Routing\UrlHelperBase.cs (1)
51public virtual string? Content(string? contentPath) => Content(ActionContext.HttpContext, contentPath);
21 references to Content
Microsoft.AspNetCore.Identity.UI (16)
Areas\Identity\Pages\V4\Account\ExternalLogin.cshtml.cs (2)
127returnUrl = returnUrl ?? Url.Content("~/"); 172returnUrl = returnUrl ?? Url.Content("~/");
Areas\Identity\Pages\V4\Account\Login.cshtml.cs (2)
110returnUrl ??= Url.Content("~/"); 122returnUrl ??= Url.Content("~/");
Areas\Identity\Pages\V4\Account\LoginWith2fa.cshtml.cs (1)
116returnUrl = returnUrl ?? Url.Content("~/");
Areas\Identity\Pages\V4\Account\LoginWithRecoveryCode.cshtml.cs (1)
116return LocalRedirect(returnUrl ?? Url.Content("~/"));
Areas\Identity\Pages\V4\Account\Register.cshtml.cs (1)
125returnUrl ??= Url.Content("~/");
Areas\Identity\Pages\V4\Account\RegisterConfirmation.cshtml.cs (1)
62returnUrl = returnUrl ?? Url.Content("~/");
Areas\Identity\Pages\V5\Account\ExternalLogin.cshtml.cs (2)
127returnUrl = returnUrl ?? Url.Content("~/"); 172returnUrl = returnUrl ?? Url.Content("~/");
Areas\Identity\Pages\V5\Account\Login.cshtml.cs (2)
110returnUrl ??= Url.Content("~/"); 122returnUrl ??= Url.Content("~/");
Areas\Identity\Pages\V5\Account\LoginWith2fa.cshtml.cs (1)
116returnUrl = returnUrl ?? Url.Content("~/");
Areas\Identity\Pages\V5\Account\LoginWithRecoveryCode.cshtml.cs (1)
116return LocalRedirect(returnUrl ?? Url.Content("~/"));
Areas\Identity\Pages\V5\Account\Register.cshtml.cs (1)
125returnUrl ??= Url.Content("~/");
Areas\Identity\Pages\V5\Account\RegisterConfirmation.cshtml.cs (1)
62returnUrl = returnUrl ?? Url.Content("~/");
Microsoft.AspNetCore.Mvc.Core (2)
Infrastructure\LocalRedirectResultExecutor.cs (1)
49var destinationUrl = urlHelper.Content(result.Url);
Infrastructure\RedirectResultExecutor.cs (1)
44destinationUrl = urlHelper.Content(result.Url);
Microsoft.AspNetCore.Mvc.Razor (3)
RazorPageBase.cs (1)
360return _urlHelper.Content(contentPath);
TagHelpers\UrlResolutionTagHelper.cs (2)
229resolvedUrl = urlHelper.Content(trimmedUrl); 254var appRelativeUrl = urlHelper.Content(trimmedUrl);