Exemplo n.º 1
0
        /// <summary>
        /// Creates a new session using the type provided.
        /// </summary>
        /// <param name="session"></param>
        /// <exception cref="System.InvalidOperationException" />
        /// <exception cref="System.Exception" />
        /// <returns></returns>
        public MCAdminSession Create(Type session)
        {
            if (session == null)
            {
                throw new ArgumentNullException("session");
            }
            //Make sure the type is an MCAdminSession.
            //The reason we do this is because a class might implement a class that implements
            //the MCAdminSession type.
            while (session.BaseType != typeof(MCAdminSession))
            {
                if (session.BaseType == typeof(object)) //Avoid infinite loops.
                {
                    throw new InvalidOperationException("Argument \"session\" must contain the base type MCAdmin.WebAccess.Sessions.MCAdminSession.");
                }
            }
            MCAdminSession sessionObj = session.GetConstructor(new Type[] { typeof(Server), typeof(bool) }).Invoke(new object[] { _server, _autoCreate }) as MCAdminSession;

            if (sessionObj == null)
            {
                throw new Exception("Unable to create session object!  Check your code.");
            }
            StoreSession(sessionObj);
            return(sessionObj);
        }
Exemplo n.º 2
0
 private void OnRequest(object sender, RequestEventArgs e)
 {
     if (e.Request.Cookies["seSession_" + _sessionType.Name] != null)
     {
         CurrentSession = (from s in _sessions.ToArray()
                           where
                           s.SessionId.ToString() == e.Request.Cookies["csSession"].Value
                           select s).FirstOrDefault();
     }
     else if (_autoCreate)
     {
         CurrentSession = Create(_sessionType);
         e.Response.Cookies.Add(new ResponseCookie("csSession_" + _sessionType.Name, CurrentSession.SessionId.ToString(), DateTime.Now.AddHours(8)));
     }
 }
Exemplo n.º 3
0
 /// <summary>
 /// Stores a session in memory.
 /// </summary>
 /// <param name="session"></param>
 public void StoreSession(MCAdminSession session)
 {
     _sessions.Add(session);
 }
Exemplo n.º 4
0
 /// <summary>
 /// Stores a session in memory.
 /// </summary>
 /// <param name="session"></param>
 public void StoreSession(MCAdminSession session)
 {
     _sessions.Add(session);
 }