ASP.NET WebApi会话与静态变量

前端之家收集整理的这篇文章主要介绍了ASP.NET WebApi会话与静态变量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在IIS 7中托管的ASP.NET WebApi中,它是否可以访问会话?在HttpContext.Current上看起来Session是null.

这两个存储全局变量有什么区别?

private static Dictionary<string,string> ConnectionStrings
    {
        get
        {
            if (HttpContext.Current.Session["ConnectionStrings"] == null)
                HttpContext.Current.Session["ConnectionStrings"] = new Dictionary<string,string>();

            return HttpContext.Current.Session["ConnectionStrings"] as Dictionary<string,string>;
        }
    }

private static Dictionary<string,string> connectionStrings = new Dictionary<string,string>();

我应该使用会话或静态变量来存储动态生成的连接字符串(长篇故事)吗?

解决方法

嗯,会话变量是每个用户.静态变量是将在所有用户之间共享的变量.所以,我不知道为什么会为每个用户存储一个连接字符串,但如果你需要这样做,你就不能使用一个静态变量.现在,您可以使用静态变量并将其设置为Dictionary,其中键是用户,值是您要存储的任何值.那当然会奏效.

说了这么多,你可以使用cookie模拟会话(最终会话会使用这些会话(通常)):参见:Accessing Session Using ASP.NET Web API

原文链接:https://www.f2er.com/aspnet/245414.html

猜你在找的asp.Net相关文章