.NET Framework
HTTP क्लाइंट
खोज…
टिप्पणियों
वर्तमान में प्रासंगिक HTTP / 1.1 RFC हैं:
- 7230: संदेश सिंटैक्स और रूटिंग
- 7231: शब्दार्थ और सामग्री
- 7232: सशर्त अनुरोध
- 7233: सीमा अनुरोध
- 7234: कैशिंग
- 7235: प्रामाणिकता
- 7239: अग्रेषित HTTP एक्सटेंशन
- 7240: HTTP के लिए हैडर को प्राथमिकता दें
निम्नलिखित सूचनात्मक RFC भी हैं:
और प्रयोगात्मक RFC:
संबंधित प्रोटोकॉल:
System.Net.HttpWebRequest का उपयोग करके स्ट्रिंग के रूप में GET प्रतिक्रिया पढ़ना
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();
}
System.Net.WebClient का उपयोग करके स्ट्रिंग के रूप में GET प्रतिक्रिया पढ़ना
string requestUri = "http://www.example.com";
string responseData;
using (var client = new WebClient())
{
responseData = client.DownloadString(requestUri);
}
System.Net.HttpClient का उपयोग करके स्ट्रिंग के रूप में GET प्रतिक्रिया पढ़ना
HttpClient
NuGet: 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;
}
}
System.Net.HttpWebRequest का उपयोग करके स्ट्रिंग पेलोड के साथ POST अनुरोध भेजना
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();
System.Net.WebClient का उपयोग करके स्ट्रिंग पेलोड के साथ POST अनुरोध भेजना
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);
}
System.Net.HttpClient का उपयोग करके स्ट्रिंग पेलोड के साथ एक POST अनुरोध भेजना
HttpClient
NuGet: 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();
System.Net.Http.HttpClient का उपयोग करके बेसिक HTTP डाउनलोडर
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
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow