Asp.net5 Session Set扩展
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Asp.net5 Session Set扩展相关的知识,希望对你有一定的参考价值。
关于Asp.net 5 如何使用Session大家可以参考http://www.mikesdotnetting.com/article/270/sessions-in-asp-net-5 和http://www.cnblogs.com/TomXu/p/4496445.html。在实际项目用Session的类型最多的是int,String,bool 以及我们自定义的类型。 很多时候这些自定义类型是没有Serializable特性的。微软默认设置是采用字节,后来为了便于使用扩展了int和string类型。这里我的思路很简单用Newtonsoft.Json来序列化和反序列化来保存自定义类型
using Microsoft.AspNet.Http; using Microsoft.AspNet.Http.Features; using Newtonsoft.Json; public static class SessionExtensions { public static bool? GetBoolean(this ISession session, string key) { var data = session.Get(key); if (data == null) { return null; } return BitConverter.ToBoolean(data, 0); } public static void SetBoolean(this ISession session, string key, bool value) { session.Set(key, BitConverter.GetBytes(value)); } public static T Get<T>(this ISession session, string key) where T :class,new() { var str = session.GetString(key); if (string.IsNullOrEmpty(str)) { return null; } return JsonConvert.DeserializeObject<T>(str); } public static void Set<T>(this ISession session, string key, T value) where T:class,new() { var str = JsonConvert.SerializeObject(value); session.SetString(key, str); } }
这样在call session Api的时候就比较简单了, 如下:
HttpContext.Session.Set<MyOptions>("test", Options);
var b = HttpContext.Session.Get<MyOptions>("test");
以上是关于Asp.net5 Session Set扩展的主要内容,如果未能解决你的问题,请参考以下文章
解读ASP.NET 5 & MVC6系列:ASP.NET 5简介
.NET Core(或 ASP.NET 5)中是不是有 MEF 的替代品