64 lines
3.1 KiB
C#
64 lines
3.1 KiB
C#
using System.Net.Http;
|
|
using System.Threading.Tasks;
|
|
using Flurl.Http.Content;
|
|
|
|
namespace Flurl.Http
|
|
{
|
|
public static class PutExtensions
|
|
{
|
|
/// <summary>
|
|
/// Sends an asynchronous PUT request of specified data (usually an anonymous object or dictionary) formatted as JSON.
|
|
/// </summary>
|
|
/// <param name="data">Data to be serialized and putted.</param>
|
|
/// <returns>A Task whose result is the received HttpResponseMessage.</returns>
|
|
public static Task<HttpResponseMessage> PutJsonAsync(this FlurlClient client, object data) {
|
|
return client.HttpClient.PutAsync(client.Url, new CapturedJsonContent(data));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a FlurlClient from the URL and sends an asynchronous PUT request of specified data (usually an anonymous object or dictionary) formatted as JSON.
|
|
/// </summary>
|
|
/// <param name="data">Data to be serialized and putted.</param>
|
|
/// <returns>A Task whose result is the received HttpResponseMessage.</returns>
|
|
public static Task<HttpResponseMessage> PutJsonAsync(this string url, object data) {
|
|
return new FlurlClient(url).PutJsonAsync(data);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a FlurlClient from the URL and sends an asynchronous PUT request of specified data (usually an anonymous object or dictionary) formatted as JSON.
|
|
/// </summary>
|
|
/// <param name="data">Data to be serialized and putted.</param>
|
|
/// <returns>A Task whose result is the received HttpResponseMessage.</returns>
|
|
public static Task<HttpResponseMessage> PutJsonAsync(this Url url, object data) {
|
|
return new FlurlClient(url).PutJsonAsync(data);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sends an asynchronous PUT request of specified data (usually an anonymous object or dictionary) serialized as URL-encoded key/value pair.
|
|
/// </summary>
|
|
/// <param name="data">Data to be serialized and putted.</param>
|
|
/// <returns>A Task whose result is the received HttpResponseMessage.</returns>
|
|
public static Task<HttpResponseMessage> PutUrlEncodedAsync(this FlurlClient client, object data) {
|
|
return client.HttpClient.PutAsync(client.Url, new CapturedFormUrlEncodedContent(data));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a FlurlClient from the URL and sends an asynchronous PUT request of specified data (usually an anonymous object or dictionary) serialized as URL-encoded key/value pair.
|
|
/// </summary>
|
|
/// <param name="data">Data to be serialized and putted.</param>
|
|
/// <returns>A Task whose result is the received HttpResponseMessage.</returns>
|
|
public static Task<HttpResponseMessage> PutUrlEncodedAsync(this string url, object data) {
|
|
return new FlurlClient(url).PutUrlEncodedAsync(data);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a FlurlClient from the URL and sends an asynchronous PUT request of specified data (usually an anonymous object or dictionary) serialized as URL-encoded key/value pair.
|
|
/// </summary>
|
|
/// <param name="data">Data to be serialized and putted.</param>
|
|
/// <returns>A Task whose result is the received HttpResponseMessage.</returns>
|
|
public static Task<HttpResponseMessage> PutUrlEncodedAsync(this Url url, object data) {
|
|
return new FlurlClient(url).PutUrlEncodedAsync(data);
|
|
}
|
|
}
|
|
}
|