Exemplo n.º 1
0
 public static void Set(this HttpSessionStateBase Session, GlobalKey Key, object Value)
 {
     Set(Session, Key.ToString(), Value);
 }
Exemplo n.º 2
0
 //HttpSessionStateBase
 public static object Get(this HttpSessionStateBase Session, GlobalKey Key)
 {
     return Get(Session, Key.ToString());
 }
Exemplo n.º 3
0
 public static bool Exists(this HttpSessionStateBase Session, GlobalKey Key)
 {
     return Exists(Session, Key.ToString());
 }
Exemplo n.º 4
0
 public static bool Exists(this HttpSessionState Session, GlobalKey Key)
 {
     return(Exists(Session, Key.ToString()));
 }
Exemplo n.º 5
0
 public static void Set(this HttpSessionState Session, GlobalKey Key, object Value)
 {
     Set(Session, Key.ToString(), Value);
 }
Exemplo n.º 6
0
 public static object Get(this HttpSessionState Session, GlobalKey Key)
 {
     return(Get(Session, Key.ToString()));
 }