2
はフィドラーでHTTPトラフィックを確認し、ない任意のHTTPトラフィックをキャプチャし、私のテストコード:RestSharpは、.NETのコア上で(例えば、バイオリン弾き用)システムプロキシを無視し
private static void ByRestSharp()
{
var restClient = new RestClient("https://jsonplaceholder.typicode.com");
var request = new RestRequest("posts", Method.GET);
var response = restClient.Get<List<Post>>(request);
Console.WriteLine("{0} posts return by RestSharp.", response.Data.Count);
}
しかし、私はHttpClientをを使用するように変更した後、 Fiddlerはhttpトラフィックをキャプチャできます。サンプルコード:
private static void ByHttpClient()
{
var httpClient = new HttpClient();
using (var req = new HttpRequestMessage(HttpMethod.Get, "https://jsonplaceholder.typicode.com/posts"))
using (var resp = httpClient.SendAsync(req).Result)
{
var json = resp.Content.ReadAsStringAsync().Result;
var users = SimpleJson.SimpleJson.DeserializeObject<List<Post>>(json);
Console.WriteLine("{0} posts return by HttpClient.", users.Count);
}
}
これはRestSharpまたはFiddlerの問題ですか?