咱們之前在用asp.net mvc或者webform的時候,常常用用到Application裏的事件 start,end等。咱們在.net core 裏也一樣有相似的方法。ios
在Startup類裏,Configure方法裏添加一個參數IApplicationLifetime applicationLeftTime就能夠了。具體寫法以下:web
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?}"); }); }