TeamMentor.CoreLib.Global.Application_Start C# (CSharp) Method

Application_Start() protected method

protected Application_Start ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        protected void Application_Start(object sender, EventArgs e)
        {
            foreach (var action in TMEvents.OnApplication_Start)
            {
                try
                {
                    action.Invoke();
                }
                catch (Exception ex)
                {
                    ex.logWithStackTrace("[in OnApplication_Start]");
                }
            }
            //TMEvents.OnApplication_Start.invoke();
        }