フィドラーでVS2012からの次のリクエストを監視しようとしていますが、できません:
var client = new HttpClient();
client.BaseAddress = new Uri("http://localhost:8081/");
var product = new Product() { Description = "blabla", CatalogName = "myName"};
MediaTypeFormatter jsonFormatter = new JsonMediaTypeFormatter();
// Use the JSON formatter to create the content of the request body.
HttpContent content = new ObjectContent<Product>(product, jsonFormatter);
// Send the request.
HttpResponseMessage resp = client.PostAsync(@"odata/Products/", content).Result;
var result = resp.Content.ReadAsStringAsync().Result;
約 2000 のマニュアルとフィードを読みましたが、わかりませんでした。
どんな手掛かり?