3.68Setting an Operation for Building the Final Request URL
Created on Aug 17, 2026~1 min read
In certain special scenarios (for example, when you need to dynamically concatenate a service path or query parameters), you can modify the request URL through custom logic. Using the SetOnUriBuilding method allows you to adjust the individual components of the UriBuilder object, thereby building the final request address.
HttpRequestBuilder.Post("https://furion.net/") .SetOnUriBuilding(uriBuilder => { uriBuilder.Query = "?id=10"; });Note: The SetOnUriBuilding method supports multiple calls, and the result of each call is accumulated.