Method | Description | |
---|---|---|
CreateGetHttpResponse ( string url, int timeout, string userAgent, |
创建GET方式的HTTP请求
|
|
CreatePostHttpResponse ( string url, string>.IDictionary |
创建POST方式的HTTP请求
|
Method | Description | |
---|---|---|
CheckValidationResult ( object sender, |
public static CreateGetHttpResponse ( string url, int timeout, string userAgent, |
||
url | string | 请求的URL |
timeout | int | 请求的超时时间 |
userAgent | string | 请求的客户端浏览器信息,可以为空 |
cookies | 随同HTTP请求发送的Cookie信息,如果不需要身份验证可以为空 | |
return |
public static CreatePostHttpResponse ( string url, string>.IDictionary |
||
url | string | 请求的URL |
parameters | string>.IDictionary | 随同请求POST的参数名称及参数值字典 |
timeout | int | 请求的超时时间 |
userAgent | string | 请求的客户端浏览器信息,可以为空 |
requestEncoding | 发送HTTP请求时所用的编码 | |
cookies | 随同HTTP请求发送的Cookie信息,如果不需要身份验证可以为空 | |
return |