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