3
WebRequestの本文データを設定する
ASP.NETでWebリクエストを作成していて、大量のデータを本文に追加する必要があります。それ、どうやったら出来るの? var request = HttpWebRequest.Create(targetURL); request.Method = "PUT"; response = (HttpWebResponse)request.GetResponse();
122
c#
httpwebrequest