diff options
| author | Cody Robibero <cody@robibe.ro> | 2021-11-03 07:52:06 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-03 07:52:06 -0600 |
| commit | 3398f7f953864c47d66b49287fcc2b613b0c03de (patch) | |
| tree | b2948acf8016f85e80f0495362a5f49bb079d6f6 /MediaBrowser.Common/IApplicationHost.cs | |
| parent | f444e93a56f6613baa8a722099159f2935d4d942 (diff) | |
| parent | 45ceba7ad152de85956af51272c53c29cbbd5a70 (diff) | |
Merge branch 'master' into client-logger
Diffstat (limited to 'MediaBrowser.Common/IApplicationHost.cs')
| -rw-r--r-- | MediaBrowser.Common/IApplicationHost.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Common/IApplicationHost.cs b/MediaBrowser.Common/IApplicationHost.cs index 192a77611..e49ab41f4 100644 --- a/MediaBrowser.Common/IApplicationHost.cs +++ b/MediaBrowser.Common/IApplicationHost.cs @@ -2,6 +2,7 @@ using System; using System.Collections.Generic; using System.Reflection; using System.Threading.Tasks; +using Microsoft.Extensions.DependencyInjection; namespace MediaBrowser.Common { @@ -137,7 +138,8 @@ namespace MediaBrowser.Common /// <summary> /// Initializes this instance. /// </summary> - void Init(); + /// <param name="serviceCollection">Instance of the <see cref="IServiceCollection"/> interface.</param> + void Init(IServiceCollection serviceCollection); /// <summary> /// Creates the instance. |
