[C#] 简单的 Helper 封装 -- CookieHelper

2018-06-17 22:34:19来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

 1 using System;
 2 using System.Web;
 3 
 4 namespace ConsoleApplication5
 5 {
 6     /// <summary>
 7     /// Cookie 助手
 8     /// </summary>
 9     public sealed class CookieHelper
10     {
11         /// <summary>
12         /// 添加一个 Cookie
13         /// </summary>
14         /// <param name="name"></param>
15         /// <param name="value"></param>
16         public static void Add(string name, string value)
17         {
18             var cookie = new HttpCookie(name, value);
19 
20             HttpContext.Current.Response.Cookies.Add(cookie);
21         }
22 
23         /// <summary>
24         /// 添加一个 Cookie
25         /// </summary>
26         /// <param name="name"></param>
27         /// <param name="value"></param>
28         /// <param name="expires">过期日期和时间</param>
29         public static void Add(string name, string value, DateTime expires)
30         {
31             var cookie = new HttpCookie(name, value)
32             {
33                 Expires = expires
34             };
35 
36             HttpContext.Current.Response.Cookies.Add(cookie);
37         }
38 
39         /// <summary>
40         /// 获取 Cookie 值
41         /// </summary>
42         /// <param name="name"></param>
43         /// <returns></returns>
44         public static string Get(string name)
45         {
46             var cookie = HttpContext.Current.Request.Cookies[name];
47 
48             return cookie == null ? string.Empty : cookie.Value;
49         }
50     }
51 }

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:质数的判断,实现bool IsPrime(int number)

下一篇:web.Config配置数据库的连接