CurlDotNet - Pure .NET curl
更新日:
CurlDotNetはオープンソースの.NETライブラリで、開発者はC#アプリケーションに直接curlコマンドを貼り付けることができます。
Iron Softwareは、.NETオープンソースコミュニティをサポートするため、CurlDotNet をスポンサーしています。 Jacob Mellor(Iron SoftwareのCTO兼共同創設者)によって構築され、維持されています。
クイックスタート
dotnet add package CurlDotNetdotnet add package CurlDotNetSHELL
using CurlDotNet;
// Paste any curl command directly from documentation
var result = await Curl.ExecuteAsync(
"curl -X GET https://api.github.com/users/octocat -H 'Accept: application/json'"
);using CurlDotNet;
// Paste any curl command directly from documentation
var result = await Curl.ExecuteAsync(
"curl -X GET https://api.github.com/users/octocat -H 'Accept: application/json'"
);IRON VB CONVERTER ERROR developers@ironsoftware.com$vbLabelText $csharpLabel

