diff options
| author | Anthony Lavado <anthony@lavado.ca> | 2020-09-03 09:45:17 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-03 09:45:17 -0400 |
| commit | a2d6ea2eed58b5cd1ecb519e3eda820f336d5485 (patch) | |
| tree | 6b0de55286f857587df1562a30c350432f33c1c7 /MediaBrowser.Controller/IServerApplicationHost.cs | |
| parent | 8c28824c8878e409ca426e4860dc3f05521f39b8 (diff) | |
| parent | 993c46f98d995bd1c06b6040833be554717bd0ca (diff) | |
Merge pull request #4043 from cvium/remove_shit_and_shit_adjacent_shit
Split HttpListenerHost into middlewares
Diffstat (limited to 'MediaBrowser.Controller/IServerApplicationHost.cs')
| -rw-r--r-- | MediaBrowser.Controller/IServerApplicationHost.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/IServerApplicationHost.cs b/MediaBrowser.Controller/IServerApplicationHost.cs index 39b896c0f..9f4c00e1c 100644 --- a/MediaBrowser.Controller/IServerApplicationHost.cs +++ b/MediaBrowser.Controller/IServerApplicationHost.cs @@ -20,6 +20,8 @@ namespace MediaBrowser.Controller IServiceProvider ServiceProvider { get; } + bool CoreStartupHasCompleted { get; } + bool CanLaunchWebBrowser { get; } /// <summary> @@ -117,8 +119,7 @@ namespace MediaBrowser.Controller IEnumerable<WakeOnLanInfo> GetWakeOnLanInfo(); string ExpandVirtualPath(string path); - string ReverseVirtualPath(string path); - Task ExecuteHttpHandlerAsync(HttpContext context, Func<Task> next); + string ReverseVirtualPath(string path); } } |
