3.27Setting Query Parameters to Remove
Created on Aug 17, 2026~1 min read
Removes the specified query parameters.
HttpRequestBuilder.Get("https://furion.net/") .RemoveQueryParameters("id", "name", "age"); // Removes multiple parametersBefore the HTTP request is sent, the configured set of query parameters to remove will be removed. In other words, the RemoveQueryParameters method executes after all WithQueryParameter[s] method calls.