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