3.48Disabling HTTP caching
Created on Aug 17, 2026~1 min read
When sending an HTTP GET request, the server may cache the result of that request to improve performance. To cancel this caching behavior, you can add the following operation:
HttpRequestBuilder.Get("https://furion.net/") .DisableCache();HttpRequestBuilder.Get("https://furion.net/") .DisableCache(false); // Enable caching (default)After adding this operation, the HTTP request will automatically include the following request headers before being sent to ensure cache control:
Cache-Control: must-revalidate, no-cache, no-storePragma: no-cacheIf-None-Match: ""