WebRequest.Connection : WebRequest « System.Net « VB.Net by API






WebRequest.Connection

  

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)
    
          If httpReq.Connection <> Nothing Then
            Console.WriteLine("Connection: " & httpReq.Connection.ToString)
          End If
          If httpReq.ConnectionGroupName <> Nothing Then
            Console.WriteLine("ConnectionGroupName: " & httpReq.ConnectionGroupName.ToString)
          End If
          If httpReq.ContentLength <> -1 Then
            Console.WriteLine("ContentLength: " & httpReq.ContentLength.ToString)
          End If
          If httpReq.ContentType <> Nothing Then
            Console.WriteLine("ContentType: " & httpReq.ContentType.ToString)
          End If
    
        Catch ex As Exception
          Console.WriteLine(ex.StackTrace.ToString())
        End Try
    End Sub
End Class

   
    
  








Related examples in the same category

1.WebRequest.Address
2.WebRequest.AllowAutoRedirect
3.WebRequest.AllowWriteStreamBuffering
4.WebRequest.ClientCertificates
5.WebRequest.ConnectionGroupName
6.WebRequest.ContentLength
7.WebRequest.ContentType
8.WebRequest.Create
9.WebRequest.GetResponse
10.WebRequest.MediaType
11.WebRequest.Method
12.WebRequest.PreAuthenticate
13.WebRequest.ProtocolVersion
14.WebRequest.Referer
15.WebRequest.RequestUri
16.WebRequest.TransferEncoding
17.WebRequest.UserAgent