Silverlight开发工具为开发人员带来了很大的好处。在多媒体的处理上,帮助开发人员摆脱以前的种种约束轻松实现各种以前只能依靠美工才能实现的功能。在这里我们先来了解一下Silverlight读取Cookie的相关操作方法。#t#
我们要想实现Silverlight读取Cookie的话,可以通过HtmlPage.Document.GetProperty方法来获取所有Cookie,另外在HtmlDocument中定义了Cookies属性,已经为我们封装好了GetProperty方法,可以直接使用,它的定义如下代码所示:
- public sealed class
HtmlDocument : HtmlObject - {
- public string Cookies
- {
- get{
- HtmlPage.VerifyThread();
- String property = this.
GetProperty("cookie") as String; - if (property != null)
- {
- return property;
- }
- return String.Empty;
- }
- set{
- HtmlPage.VerifyThread();
- String str = value;
- if (String.IsNullOrEmpty(str))
- {
- str = string.Empty;
- }
- this.SetProperty("cookie", str);
- }
- }
- }
如使用下面这段Silverlight读取Cookie代码来获取一个指定Key的Cookie值:
- void btnRetrieve_Click(object
sender, RoutedEventArgs e)- {
- String[] cookies = HtmlPage.
Document.Cookies.Split(';');- foreach (String cookie in cookies)
- {
- String[] keyValues = cookie.Split('=');
- if (keyValues.Length == 2)
- {
- if (keyValues[0].Trim() ==
this.txtKey.Text.Trim())- {
- this.txtValue.Text = keyValues[1];
- }
- }
- }
- }
Silverlight读取Cookie的具体方法就为大家介绍到这里。