Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHPでcurlを使用すると、次のことができます
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
これにより、結果を変数に格納できます。
しかし、C# のlibcURLにはリターン転送オプションがありません。C#で代わりに何を使用できますか?
たとえば、次のように同等のものをコーディングする必要があると思います。
WebResponse webResponse = webRequest.GetResponse(); String response = null; using(var strReader = new StreamReader(webResponse.GetResponseStream())) { response = streamReader.ReadToEnd(); }