1 write to _hrefAbsolute
Microsoft.AspNetCore.Components.Web (1)
Routing\NavLink.cs (1)
72
_hrefAbsolute
= href == null ? null : NavigationManager.ToAbsoluteUri(href).AbsoluteUri;
8 references to _hrefAbsolute
Microsoft.AspNetCore.Components.Web (8)
Routing\NavLink.cs (8)
111
if (
_hrefAbsolute
== null)
122
&& IsStrictlyPrefixWithSeparator(currentUriAbsolute,
_hrefAbsolute
))
132
Debug.Assert(
_hrefAbsolute
!= null);
134
if (string.Equals(currentUriAbsolute,
_hrefAbsolute
, StringComparison.OrdinalIgnoreCase))
139
if (currentUriAbsolute.Length ==
_hrefAbsolute
.Length - 1)
149
if (
_hrefAbsolute
[
_hrefAbsolute
.Length - 1] == '/'
150
&&
_hrefAbsolute
.StartsWith(currentUriAbsolute, StringComparison.OrdinalIgnoreCase))