
Simple HTTP request helper to let you retrieve data from a Web server and convert it to something useful.
Westwind.Utilities.HttpUtils
public static class HttpUtils : object
Class Members
Member | Description | |
---|---|---|
![]() ![]() |
DownloadImageToFile |
public static string DownloadImageToFile(string imageUrl, string filename, HttpRequestSettings settings) |
![]() ![]() |
DownloadImageToFileAsync |
public static Task |
![]() ![]() |
HttpRequestBytes |
Retrieves bytes from the server without any request customizations public static Byte[] HttpRequestBytes(string url) public static Byte[] HttpRequestBytes(HttpRequestSettings settings) |
![]() ![]() |
HttpRequestBytesAsync |
Retrieves bytes from the server without any request customizations public static Task<Byte[]> HttpRequestBytesAsync(string url) public static Task<Byte[]> HttpRequestBytesAsync(HttpRequestSettings settings) |
![]() ![]() |
HttpRequestString |
Retrieves and Http request and returns data as a string. public static string HttpRequestString(string url) public static string HttpRequestString(HttpRequestSettings settings) |
![]() ![]() |
HttpRequestStringAsync |
Retrieves and Http request and returns data as a string. public static Task public static Task |
![]() ![]() |
JsonRequest |
Makes an HTTP with option JSON data serialized from an object and parses the result from JSON back into an object. Assumes that the service returns a JSON response public static TResultType JsonRequest |
![]() ![]() |
JsonRequestAsync |
Makes an HTTP with option JSON data serialized from an object and parses the result from JSON back into an object. Assumes that the service returns a JSON response and that any data sent is json. public static Task |
Requirements
Namespace: Westwind.UtilitiesAssembly: westwind.utilities.dll
© West Wind Technologies, 1996-2020 • Updated: 07/15/20
Comment or report problem with topic