博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HttpWebRequest.GetResponse 方法 转载
阅读量:6177 次
发布时间:2019-06-21

本文共 2358 字,大约阅读时间需要 7 分钟。

GetResponse 方法返回包含来自 Internet 资源的响应的  对象。 实际返回的实例是 ,并且能够转换为访问 HTTP 特定的属性的类。

 

在一些情况下,当对  类设置的属性发生冲突时将引发 。 如果应用程序将  属性和  属性设置为true,然后发送 HTTP GET 请求,则会引发该异常。 如果应用程序尝试向仅支持 HTTP 1.0 协议而不支持分块请求的服务器发送分块请求,则会引发该异常。 如果应用程序未设置  属性就尝试发送数据,或者在 keepalive 连接( 属性为 true)上禁用缓冲时  为 false,则会引发该异常

 

警告

必须调用  方法关闭该流并释放连接。 如果未能做到这一点,可能导致应用程序用完连接。

使用 POST 方法时,必须获取请求流,写入要发送的数据,然后关闭请求流。 此方法阻塞以等待发送的内容;如果没有超时设置并且您没有提供内容,调用线程将无限期地阻塞。

 

说明

多次调用 GetResponse 会返回相同的响应对象;该请求不会重新发出。

说明

应用程序不能对特定请求混合使用同步和异步方法。 如果调用  方法,则必须使用 GetResponse 方法检索响应。

 

 

说明

如果引发 ,请使用该异常的  和  属性确定服务器的响应。

说明

当应用程序中启用了网络跟踪时,此成员将输出跟踪信息。 有关详细信息,请参阅 。

说明

为安全起见,默认情况下禁用 Cookie。 如果您希望使用 Cookie,请使用  属性启用 Cookie。

 

1 using System; 2 using System.Net; 3 using System.Text; 4 using System.IO; 5  6  7     public class Test 8     { 9         // Specify the URL to receive the request.10         public static void Main (string[] args)11         {12             HttpWebRequest request = (HttpWebRequest)WebRequest.Create (args[0]);13 14             // Set some reasonable limits on resources used by this request15             request.MaximumAutomaticRedirections = 4;16             request.MaximumResponseHeadersLength = 4;17             // Set credentials to use for this request.18             request.Credentials = CredentialCache.DefaultCredentials;19             HttpWebResponse response = (HttpWebResponse)request.GetResponse ();20 21             Console.WriteLine ("Content length is {0}", response.ContentLength);22             Console.WriteLine ("Content type is {0}", response.ContentType);23 24             // Get the stream associated with the response.25             Stream receiveStream = response.GetResponseStream ();26 27             // Pipes the stream to a higher level stream reader with the required encoding format. 28             StreamReader readStream = new StreamReader (receiveStream, Encoding.UTF8);29 30             Console.WriteLine ("Response stream received.");31             Console.WriteLine (readStream.ReadToEnd ());32             response.Close ();33             readStream.Close ();34         }35     }36 37 /*38 The output from this example will vary depending on the value passed into Main 39 but will be similar to the following:40 41 Content length is 154242 Content type is text/html; charset=utf-843 Response stream received.44 45 ...46 47 48 */

转载于:https://www.cnblogs.com/TJessica/p/6128634.html

你可能感兴趣的文章
Creating a Windows Image on OpenStack
查看>>
jquery图片自动缩放
查看>>
ie6 失真问题
查看>>
Regular Expression
查看>>
你到了第几层?图片式标题、按钮与隐藏文本
查看>>
大话重构连载14:我们是这样自动化测试的
查看>>
我的友情链接
查看>>
iis6 php安装 (一)
查看>>
关于,在Mysql中,外键是否会影响性能的问题???
查看>>
利用javascript设置图片等比例缩小
查看>>
dedeCMS如何给频道页添加缩略图
查看>>
CoreSeek快速安装
查看>>
Linux 网络性能调试工具Netstat
查看>>
我的友情链接
查看>>
报表下载SSH
查看>>
我的友情链接
查看>>
Raid磁盘阵列真的是100%的安全吗?raid有哪些常见的故障?
查看>>
Raid5两块硬盘离线解决方案 -阵列数据恢复案例
查看>>
IBM AIX存储层结构介绍 / 常用命令整理
查看>>
sudo用法简记
查看>>