diff options
| author | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2020-11-09 11:26:06 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-09 11:26:06 +0000 |
| commit | 957b5df0f0048f5e4930cdce97e4306c98a96b40 (patch) | |
| tree | 5b8ca3977aaae84a31eae64304c3aa0a68a0c9cf | |
| parent | 429de724430671a9019ab38af55b8f11889a62cd (diff) | |
Update MediaBrowser.Common/Plugins/IPluginServiceRegistrator.cs
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
| -rw-r--r-- | MediaBrowser.Common/Plugins/IPluginServiceRegistrator.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Common/Plugins/IPluginServiceRegistrator.cs b/MediaBrowser.Common/Plugins/IPluginServiceRegistrator.cs index cb6c27f86..3afe874c5 100644 --- a/MediaBrowser.Common/Plugins/IPluginServiceRegistrator.cs +++ b/MediaBrowser.Common/Plugins/IPluginServiceRegistrator.cs @@ -9,8 +9,10 @@ namespace MediaBrowser.Common.Plugins { /// <summary> /// Registers the plugin's services with the service collection. - /// This object is created prior to the plugin creation, so access to other classes is limited. /// </summary> + /// <remarks> + /// This interface is only used for service registration and requires a parameterless constructor. + /// </remarks> /// <param name="serviceCollection">The service collection.</param> void RegisterServices(IServiceCollection serviceCollection); } |
