Пример #1
0
 public static void SetValue(this System.Web.HttpSessionStateBase session, SessionIndex sindex, object value)
 {
     session[sindex.ToString()] = value;
 }
Пример #2
0
 public static object GetValue(this System.Web.HttpSessionStateBase session, SessionIndex sindex)
 {
     return(session[sindex.ToString()]);
 }
Пример #3
0
 public override string ToString()
 {
     return(SessionName + " - " + SessionIndex.ToString());
 }