2016-05-19 6 views

答えて

2

HttpClientは最近のリクエストを送信するのに便利な方法です。キーは、そのコンストラクタに文字列を渡して、その文字列をyou can create a custom HttpMethodとして認識させることです。

using (var client = new HttpClient()) 
using (var request = new HttpRequestMessage(
    new HttpMethod("PURGE"), 
    new Uri("http://www.example.com/image.jpg"))) 
using (var response = await client.SendAsync(request)) 
{ 
    // work with response 
} 
関連する問題