.NET Framework
Klienci HTTP
Szukaj…
Uwagi
Obecnie istotne RFC HTTP / 1.1 to:
- 7230: Składnia komunikatu i routing
- 7231: Semantyka i treść
- 7232: Żądania warunkowe
- 7233: Żądania zakresu
- 7234: Buforowanie
- 7235: Uwierzytelnianie
- 7239: Przekazywane rozszerzenie HTTP
- 7240: Preferuj nagłówek dla HTTP
Istnieją również następujące informacyjne RFC:
I eksperymentalny RFC:
Powiązane protokoły:
Odczytywanie odpowiedzi GET jako ciągu przy użyciu System.Net.HttpWebRequest
string requestUri = "http://www.example.com";
string responseData;
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(parameters.Uri);
WebResponse response = request.GetResponse();
using (StreamReader responseReader = new StreamReader(response.GetResponseStream()))
{
responseData = responseReader.ReadToEnd();
}
Odczytywanie odpowiedzi GET jako ciągu przy użyciu System.Net.WebClient
string requestUri = "http://www.example.com";
string responseData;
using (var client = new WebClient())
{
responseData = client.DownloadString(requestUri);
}
Odczytywanie odpowiedzi GET jako ciągu przy użyciu System.Net.HttpClient
HttpClient
jest dostępny poprzez NuGet: biblioteki klienta Microsoft HTTP .
string requestUri = "http://www.example.com";
string responseData;
using (var client = new HttpClient())
{
using(var response = client.GetAsync(requestUri).Result)
{
response.EnsureSuccessStatusCode();
responseData = response.Content.ReadAsStringAsync().Result;
}
}
Wysyłanie żądania POST z ładunkiem ciągu przy użyciu System.Net.HttpWebRequest
string requestUri = "http://www.example.com";
string requestBodyString = "Request body string.";
string contentType = "text/plain";
string requestMethod = "POST";
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(requestUri)
{
Method = requestMethod,
ContentType = contentType,
};
byte[] bytes = Encoding.UTF8.GetBytes(requestBodyString);
Stream stream = request.GetRequestStream();
stream.Write(bytes, 0, bytes.Length);
stream.Close();
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
Wysyłanie żądania POST z ładunkiem ciągu przy użyciu System.Net.WebClient
string requestUri = "http://www.example.com";
string requestBodyString = "Request body string.";
string contentType = "text/plain";
string requestMethod = "POST";
byte[] responseBody;
byte[] requestBodyBytes = Encoding.UTF8.GetBytes(requestBodyString);
using (var client = new WebClient())
{
client.Headers[HttpRequestHeader.ContentType] = contentType;
responseBody = client.UploadData(requestUri, requestMethod, requestBodyBytes);
}
Wysyłanie żądania POST z ładunkiem ciągu przy użyciu System.Net.HttpClient
HttpClient
jest dostępny poprzez NuGet: biblioteki klienta Microsoft HTTP .
string requestUri = "http://www.example.com";
string requestBodyString = "Request body string.";
string contentType = "text/plain";
string requestMethod = "POST";
var request = new HttpRequestMessage
{
RequestUri = requestUri,
Method = requestMethod,
};
byte[] requestBodyBytes = Encoding.UTF8.GetBytes(requestBodyString);
request.Content = new ByteArrayContent(requestBodyBytes);
request.Content.Headers.ContentType = new MediaTypeHeaderValue(contentType);
HttpResponseMessage result = client.SendAsync(request).Result;
result.EnsureSuccessStatusCode();
Podstawowy program do pobierania HTTP za pomocą System.Net.Http.HttpClient
using System;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;
class HttpGet
{
private static async Task DownloadAsync(string fromUrl, string toFile)
{
using (var fileStream = File.OpenWrite(toFile))
{
using (var httpClient = new HttpClient())
{
Console.WriteLine("Connecting...");
using (var networkStream = await httpClient.GetStreamAsync(fromUrl))
{
Console.WriteLine("Downloading...");
await networkStream.CopyToAsync(fileStream);
await fileStream.FlushAsync();
}
}
}
}
static void Main(string[] args)
{
try
{
Run(args).Wait();
}
catch (Exception ex)
{
if (ex is AggregateException)
ex = ((AggregateException)ex).Flatten().InnerExceptions.First();
Console.WriteLine("--- Error: " +
(ex.InnerException?.Message ?? ex.Message));
}
}
static async Task Run(string[] args)
{
if (args.Length < 2)
{
Console.WriteLine("Basic HTTP downloader");
Console.WriteLine();
Console.WriteLine("Usage: httpget <url>[<:port>] <file>");
return;
}
await DownloadAsync(fromUrl: args[0], toFile: args[1]);
Console.WriteLine("Done!");
}
}
Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow