asp.net core 3.1 Cookie的公共方法


/// <summary>
    /// 沐雪微淘小程序商城
    /// cookie设置
    /// </summary>
    public static class CookieHelper
    {
        private static HttpResponse CurrentResponse
        {
            get
            {
                return AppHttpContext.Current.Response;
            }
        }
        private static HttpRequest CurrentRequest
        {
            get
            {
                return AppHttpContext.Current.Request;
            }
        }
        public static void Add(string key, string value, int minutes = 30)
        {
            CurrentRequest.Cookies.TryGetValue(key, out string tmpvalue);
            if (!string.IsNullOrEmpty(tmpvalue))
            {
                CurrentResponse.Cookies.Delete(key);
            }
            CurrentResponse.Cookies.Append(key, value, new CookieOptions
            {
                Expires = DateTime.Now.AddMinutes(minutes)
            });
        }

        public static void Delete(string key)
        {
            CurrentResponse.Cookies.Delete(key);
        }
        /// <summary>
        /// 获取cookies
        /// </summary>
        /// <param name="key"></param>
        /// <returns>返回对应的值</returns>
        public static string GetCookies(string key)
        {
            CurrentRequest.Cookies.TryGetValue(key, out string value);
            if (string.IsNullOrEmpty(value))
                value = string.Empty;
            return value;

        }

代码如上,非常简单;AppHttpContext的封装,请看我上一篇文章https://www.cnblogs.com/puzi0315/p/13337279.html

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM