Imports System.Net
Imports System.Net.Sockets
Public Class Tester
Public Shared Sub Main
Dim httpReq As System.Net.HttpWebRequest
Try
Dim httpURL As New System.Uri("http://www.java2s.com/index.htm?key=value")
httpReq = CType(WebRequest.Create(httpURL), HttpWebRequest)
Console.WriteLine("HaveResponse: " & httpReq.HaveResponse.ToString)
Console.WriteLine("IfModifiedSince: " & httpReq.IfModifiedSince.ToString)
Console.WriteLine("KeepAlive: " & httpReq.KeepAlive)
Console.WriteLine("MaximumAutomaticRedirections: " & httpReq.MaximumAutomaticRedirections)
Catch ex As Exception
Console.WriteLine(ex.StackTrace.ToString())
End Try
End Sub
End Class
HaveResponse: False
IfModifiedSince: 11/05/2007 9:42:43 PM
KeepAlive: True
MaximumAutomaticRedirections: 50
22.26.HttpWebRequest |
| 22.26.1. | Create HttpWebRequest |
| 22.26.2. | Connection, ConnectionGroupName, ContentLength, ContentType |
| 22.26.3. | MediaType |
| 22.26.4. | Method, PreAuthenticate, ProtocolVersion |
| 22.26.5. | Referer, RequestUri, RequestUri |
| 22.26.6. | TransferEncoding, UserAgent |
| 22.26.7. | HttpWebResponse and its properties |
| 22.26.8. | HaveResponse, IfModifiedSince, KeepAlive, MaximumAutomaticRedirections |