1 implementation of IsLocalUrl
Microsoft.AspNetCore.Mvc.Core (1)
Routing\UrlHelperBase.cs (1)
47
public virtual bool
IsLocalUrl
([NotNullWhen(true)][StringSyntax(StringSyntaxAttribute.Uri)] string? url) => CheckIsLocalUrl(url);
2 references to IsLocalUrl
Microsoft.AspNetCore.Mvc.Core (2)
Infrastructure\LocalRedirectResultExecutor.cs (1)
44
if (!urlHelper.
IsLocalUrl
(result.Url))
Infrastructure\RedirectResultExecutor.cs (1)
42
if (urlHelper.
IsLocalUrl
(destinationUrl))