Exemplo n.º 1
0
 public static void SetElement(SessionElement sessionElement, object value)
 {
     HttpContext.Current.Session[sessionElement.ToString()] = value;
 }
Exemplo n.º 2
0
        public static T GetElement <T>(SessionElement sessionElement)
        {
            var element = HttpContext.Current.Session[sessionElement.ToString()];

            return(element == null ? default(T) : (T)element);
        }