Beispiel #1
0
        internal void DoAfterLoadSession(LoadSessionArgs e)
        {
            var handler = AfterLoadSession;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Beispiel #2
0
        internal bool DoBeforeLoadSession(LoadSessionArgs e)
        {
            var handler = BeforeLoadSession;

            if (handler != null)
            {
                handler(this, e);
            }
            return(e.Done);
        }