Extensions of
HttpClient
- Namespace
- Songhay
.Extensions - Base Types
-
- object
graph BT
Type-->Base0["object"]
Type["HttpClientExtensions"]
class Type type-node
Syntax
public static class HttpClientExtensions
Methods
Name | Return Value | Summary |
---|---|---|
DeleteAsync |
Task |
Sends a
HttpMethod.Delete
HttpRequestMessage .
static
|
DownloadToFileAsync |
Task |
Downloads resource at URI to the specified path.
static
|
DownloadToFileAsync |
Task |
Downloads resource at URI to the specified path.
static
|
Download |
Task |
Downloads resource at URI to
string .
static
|
Download |
Task |
Downloads resource at URI to
string .
static
|
GetAsync |
Task |
Sends a
HttpMethod.Get
HttpRequestMessage .
static
|
PostFormAsync |
Task |
Calls
HttpClient.SendAsync(HttpRequestMessage)
with the specified ApplicationFormUrlEncoded
request body using HttpMethod.Post
and System.Text.Encoding.UTF8 .
static
|
PostFormAsync |
Task |
Calls
HttpClient.SendAsync(HttpRequestMessage)
with the specified ApplicationFormUrlEncoded
request body using HttpMethod.Post
and System.Text.Encoding.UTF8 .
static
|
PostJsonAsync |
Task |
Calls
HttpClient.SendAsync(HttpRequestMessage)
with the specified ApplicationJson
request body using HttpMethod.Post
and System.Text.Encoding.UTF8 .
static
|
PostJsonAsync |
Task |
Calls
HttpClient.SendAsync(HttpRequestMessage)
with the specified ApplicationJson
request body using HttpMethod.Post
and System.Text.Encoding.UTF8 .
static
|
PostXmlAsync |
Task |
Calls
HttpClient.SendAsync(HttpRequestMessage)
with the specified ApplicationXml
request body using HttpMethod.Post
and System.Text.Encoding.UTF8 .
static
|
PostXmlAsync |
Task |
Calls
HttpClient.SendAsync(HttpRequestMessage)
with the specified ApplicationXml
request body using HttpMethod.Post
and System.Text.Encoding.UTF8 .
static
|
PutJsonAsync |
Task |
Calls
HttpClient.SendAsync(HttpRequestMessage)
with the specified ApplicationJson
request body using HttpMethod.Put
and System.Text.Encoding.UTF8 .
static
|
PutJsonAsync |
Task |
Calls
HttpClient.SendAsync(HttpRequestMessage)
with the specified ApplicationJson
request body using HttpMethod.Put
and System.Text.Encoding.UTF8 .
static
|
PutXmlAsync |
Task |
Calls
HttpClient.SendAsync(HttpRequestMessage)
with the specified ApplicationXml
request body using HttpMethod.Put
and System.Text.Encoding.UTF8 .
static
|
PutXmlAsync |
Task |
Calls
HttpClient.SendAsync(HttpRequestMessage)
with the specified ApplicationXml
request body using HttpMethod.Put
and System.Text.Encoding.UTF8 .
static
|
SendAsync |
Task |
Calls
HttpClient.SendAsync(HttpRequestMessage)
static
|
SendBodyAsync |
Task |
Calls
HttpClient.SendAsync(HttpRequestMessage)
with the specified request body.
static
|