AB#5820 - Introduced WebProfiler for asp.net core

This commit is contained in:
Bjarke Berg
2020-03-24 18:18:25 +01:00
parent 919271b2c6
commit 9339e1d999
19 changed files with 431 additions and 18 deletions

View File

@@ -1,3 +1,5 @@
using System;
namespace Umbraco.Net
{
public interface IUmbracoApplicationLifetime
@@ -10,5 +12,7 @@ namespace Umbraco.Net
/// Terminates the current application. The application restarts the next time a request is received for it.
/// </summary>
void Restart();
event EventHandler ApplicationInit;
}
}