中文字幕日韩一区二区_国产一区二区av_国产毛片av_久久久久国产一区_色婷婷电影_国产一区二区精品

如何實現對上下文(Context)數據的統一管理 [提供源代碼下載]

應用開發中,我們經常需要設置一些上下文(Context)信息,這些上下文信息一般基于當前的會話(Session),比如當前登錄用戶的個人信息;或者基于當前方法調用棧,比如在同一個調用中涉及的多個層次之間數據。在這篇文章中,我創建了一個稱為ApplicationContext的組件,對上下文信息進行統一的管理。[Source Code從這里下載]

一、基于CallContext和HttpSessionState的ApplicationContext

如何實現對上下文信息的存儲,對于Web應用來說,我們可以借助于HttpSessionState;對于GUI應用來講,我們則可以使用CallConext。ApplicationContext完全是借助于這兩者建立起來的,首先來看看其定義:

   1: using System;
   2: using System.Collections.Generic;
   3: using System.Runtime.Remoting.Messaging;
   4: using System.Web;
   5: namespace Artech.ApplicationContexts
   6: {
   7:     [Serializable]
   8:     public class ApplicationContext:Dictionary<string, object>
   9:     {
  10:         public const string ContextKey = "Artech.ApplicationContexts.ApplicationContext";
  11:         
  12:         public static ApplicationContext Current
  13:         {
  14:             get
  15:             {
  16:                 if (null != HttpContext.Current)
  17:                 {
  18:                     if (null == HttpContext.Current.Session[ContextKey])
  19:                     {
  20:                         HttpContext.Current.Session[ContextKey] = new ApplicationContext();
  21:                     }
  22:  
  23:                     return HttpContext.Current.Session[ContextKey] as ApplicationContext;
  24:                 }
  25:  
  26:                 if (null == CallContext.GetData(ContextKey))
  27:                 {
  28:                     CallContext.SetData(ContextKey, new ApplicationContext());
  29:                 }
  30:                 return CallContext.GetData(ContextKey) as ApplicationContext;                
  31:             }
  32:         }        
  33:     }
  34: }

NET技術如何實現對上下文(Context)數據的統一管理 [提供源代碼下載],轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 黄色大片免费网站 | 成人影院在线观看 | 91日韩在线| 中文精品视频 | 中文字幕国产精品 | 久久久久久久一区 | 亚洲一区二区久久久 | 亚洲第一区国产精品 | 免费成人在线网 | 一区二区三区av | 国产精品成人在线 | 最新av在线网址 | 欧美三级在线 | 一级做a爰片久久毛片 | 国产欧美日韩精品一区二区三区 | 国产成人精品久久 | 久久亚洲一区二区三区四区 | 亚洲精品国产第一综合99久久 | 国产专区在线 | 国产成人综合网 | 成人不卡视频 | 中文字幕韩在线第一页 | 国产乱码久久久久久 | 欧美一级二级在线观看 | 国产精品成人国产乱一区 | 在线免费小视频 | 一区二区三区日韩 | 成人高清在线 | 亚洲狠狠爱| 欧美综合国产精品久久丁香 | 91在线网站 | 天天操夜夜爽 | 91久久夜色精品国产网站 | 一区二区三区欧美在线 | 91精品久久久 | 日韩高清中文字幕 | 日日摸日日碰夜夜爽亚洲精品蜜乳 | 久久九九99 | 欧美日韩国产一区二区三区 | 国产精品a久久久久 | 在线资源视频 |