本文整理汇总了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
'
示例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