當前位置: 首頁>>代碼示例>>VB.NET>>正文


VB.NET Cookie類代碼示例

本文整理匯總了VB.NET中System.Net.Cookie的典型用法代碼示例。如果您正苦於以下問題:VB.NET Cookie類的具體用法?VB.NET Cookie怎麽用?VB.NET Cookie使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Cookie類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。

示例1: CookieExample

' 導入命名空間
Imports System.Net

' This example is run at the command line.
' Specify one argument: the name of the host to 
' receive the request.
' If the request is sucessful, the example displays the contents of the cookies
' returned by the host.

Public Class CookieExample
    
    Public Shared Sub Main(args() As String)
        If args Is Nothing OrElse args.Length <> 1 Then
            Console.WriteLine("Specify the URL to receive the request.")
            Environment.Exit(1)
        End If
        Dim request As HttpWebRequest = WebRequest.Create(args(0))
        request.CookieContainer = New CookieContainer()
    
        Using response As HttpWebResponse = request.GetResponse()
            ' Print the properties of each cookie.
            For Each cook As Cookie In response.Cookies
                Console.WriteLine("Cookie:")
                Console.WriteLine($"{cook.Name} = {cook.Value}")
                Console.WriteLine($"Domain: {cook.Domain}")
                Console.WriteLine($"Path: {cook.Path}")
                Console.WriteLine($"Port: {cook.Port}")
                Console.WriteLine($"Secure: {cook.Secure}")
    
                Console.WriteLine($"When issued: {cook.TimeStamp}")
                Console.WriteLine($"Expires: {cook.Expires} (expired? {cook.Expired})")
                Console.WriteLine($"Don't save: {cook.Discard}")
                Console.WriteLine($"Comment: {cook.Comment}")
                Console.WriteLine($"Uri for comments: {cook.CommentUri}")
                Console.WriteLine($"Version: RFC {If(cook.Version = 1, 2109, 2965)}")
    
                ' Show the string representation of the cookie.
                Console.WriteLine($"String: {cook}")
            Next
        End Using
    End Sub
End Class



' Output from this example will be vary depending on the host name specified,
' but will be similar to the following.
'
'Cookie:
'CustomerID = 13xyz
'Domain: .contoso.com
'Path: /
'Port:
'Secure: False
'When issued: 1/14/2003 3:20:57 PM
'Expires: 1/17/2013 11:14:07 AM (expired? False)
'Don't save: False
'Comment: 
'Uri for comments:
'Version: RFC 2965
'String: CustomerID = 13xyz
'
開發者ID:VB.NET開發者,項目名稱:System.Net,代碼行數:62,代碼來源:Cookie

示例2: New Cookie

' 導入命名空間
Imports System.Net
Imports System.Net.Sockets

Public Class Tester
    Public Shared Sub Main
        Dim cookie As System.Net.Cookie = New Cookie("HASH", "", "/", "microsoft.com")

        Console.WriteLine("Comment: " & cookie.Comment.ToString)
        Console.WriteLine("Domain: " & cookie.Domain.ToString)
        Console.WriteLine("Expired: " & cookie.Expired.ToString)
        Console.WriteLine("Expires: " & cookie.Expires.ToString)
        Console.WriteLine("Name: " & cookie.Name.ToString)
        Console.WriteLine("Path: " & cookie.Path.ToString)
        Console.WriteLine("Port: " & cookie.Port.ToString)
        Console.WriteLine("Secure: " & cookie.Secure.ToString)
        Console.WriteLine("Value: " & cookie.Value.ToString)
        Console.WriteLine("Version: " & cookie.Version.ToString)
    End Sub
End Class
開發者ID:VB程序員,項目名稱:System.Net,代碼行數:20,代碼來源:Cookie


注:本文中的System.Net.Cookie類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。