How can one include an Area in the UrlHelperExtensions.Page Method?
The docs don't mention areas.
When I want to link to a page in an area (in my case Identity) the page name is not found:
var callbackUrl = Url.Page(
"/Identity/Account/ResetPassword",
pageHandler: null,
values: new {code},
protocol: Request.Scheme);
callback is null and I don't know how to specify that the page is outside of my normal Razor Pages Pages-Folder.