1 implementation of IsLocalUrl
Microsoft.AspNetCore.Mvc.Core (1)
Routing\UrlHelperBase.cs (1)
47public 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)
44if (!urlHelper.IsLocalUrl(result.Url))
Infrastructure\RedirectResultExecutor.cs (1)
42if (urlHelper.IsLocalUrl(destinationUrl))