6 references to FragmentString
Microsoft.AspNetCore.Http.Abstractions (3)
FragmentString.cs (3)
17public static readonly FragmentString Empty = new FragmentString(string.Empty); 86return new FragmentString(uriComponent); 103return new FragmentString(fragmentValue);
Microsoft.AspNetCore.Http.Results (1)
RedirectToRouteHttpResult.cs (1)
167fragment: Fragment == null ? FragmentString.Empty : new FragmentString("#" + Fragment));
Microsoft.AspNetCore.Mvc.Core (2)
Routing\EndpointRoutingUrlHelper.cs (2)
72fragment: urlActionContext.Fragment == null ? FragmentString.Empty : new FragmentString("#" + urlActionContext.Fragment)); 85fragment: routeContext.Fragment == null ? FragmentString.Empty : new FragmentString("#" + routeContext.Fragment));