当前位置: 首页>>代码示例>>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;未经允许,请勿转载。