3.34Adding request content processors
Created on Aug 17, 2026~1 min read
The IHttpContentProcessor interface defines how to build an HttpContent instance based on the content type or raw type of the request.
HttpRequestBuilder.Post("https://furion.net/") .AddHttpContentProcessors(() => [ new StringContentProcessor() ]); // Multiple processors can be added