public object RetrieveSessionObject(Guid sessionKey) { SessionItem item = (SessionItem)HttpContext.Current.Session[sessionKey.ToString()]; return(item.SessionObject); }
public void AddUpdateSessionItem(SessionItem item) { throw new NotImplementedException(); }