Closed 1zaboy closed 2 months ago
Thanks for the offer. I'm sure you discovered that PostMultiplartAsync
is just a 3-line extension method that can be easily replicated with a different verb:
I'm declining to add this to the core, both because it's easy enough to do yourself as demonstrated above, and because it's so rare to encounter anything other than POST used with multipart. It's a judgment call, but Flurl's highest-level methods are generally reserved for the more common scenarios, while dropping down a level to SendAsync
lets you cover the less common ones, almost as easily.
I faced with the need to make PatchMultipartAsync with external API. I not found solution in Flurl and I had to make an extension. Why not add this functionality? Can I contribute this?