asp.Netcore mvcのアプリケーションのstart,endなどのイベント

3575 ワード

私たちは以前aspを使っていました.Netmvcやwebformの場合、Applicationのイベントstart,endなどによく使われます.私たちはいます.Netcoreにも同様の方法があります.
Startupクラスでは、ConfigureメソッドにパラメータIApplicationLifetimeアプリケーションを追加すればよい.具体的な書き方は以下の通りです.
  public void Configure(IApplicationBuilder app, IHostingEnvironment env,IApplicationLifetime applicationLeftTime)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }
            else
            {
                app.UseExceptionHandler("/Home/Error");
                // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
                app.UseHsts();
            }

            applicationLeftTime.ApplicationStarted.Register(() =>
            {
                //         

                Console.Write("ApplicationStarted");
            });

            applicationLeftTime.ApplicationStopped.Register(()=> {
                //         
                Console.Write("ApplicationStopped");
            });

            applicationLeftTime.ApplicationStopping.Register(() => {
                //         
                Console.Write("ApplicationStopping");
            });



            app.UseHttpsRedirection();
            app.UseStaticFiles();
            app.UseCookiePolicy();

            app.UseMvc(routes =>
            {
                routes.MapRoute(
                    name: "default",
                    template: "{controller=Home}/{action=Index}/{id?}");
            });
        }