csharp Http Web请求

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp Http Web请求相关的知识,希望对你有一定的参考价值。

private void Request()
{
    string url = "https://www.baidu.com";

    try
    {
        // 创建一个HTTP请求
        var request = (HttpWebRequest)WebRequest.Create(url);
        //request.Method="get";
        var response = (HttpWebResponse)request.GetResponse();
        var stream = response.GetResponseStream();
        if (stream != null)
        {
            string result = new StreamReader(stream, Encoding.GetEncoding("gb2312")).ReadToEnd();
            request.GetResponse().Close();
        }
    }
    catch
    {
        // ignored
    }
}

以上是关于csharp Http Web请求的主要内容,如果未能解决你的问题,请参考以下文章

csharp 创建一个从AJAX POST请求调用的Web API,它在对象中传递多个值

csharp c#HTTP请求帮助类

csharp Http请求拦截器

csharp http web服务器交互类

csharp 这是在不使用Moq或任何其他框架的情况下模拟HTTP上下文请求和请求Cookie对象的示例

HTTP请求