3.35Adding response content converters
Created on Aug 17, 2026~1 min read
The IHttpContentConverter interface specifies how to convert the response content HttpResponseMessage into an instance of the target type.
HttpRequestBuilder.Post("https://furion.net/") .AddHttpContentConverters(() => [ new StringContentConverter() ]); // Multiple converters can be added