diff options
| author | Greenback <jimcartlidge@yahoo.co.uk> | 2020-10-08 19:00:55 +0100 |
|---|---|---|
| committer | Greenback <jimcartlidge@yahoo.co.uk> | 2020-10-08 19:00:55 +0100 |
| commit | deb4d27857089e8f3a3602399c5b52ad8df170f2 (patch) | |
| tree | 18c3ec379b72e20843caff9dad907d1842cbcbd8 /MediaBrowser.Common/Configuration/IConfigurationManager.cs | |
| parent | a3f0843ac97c64a8a412d707baa9870d0e53dcff (diff) | |
Moved all settings across to network.xml
Diffstat (limited to 'MediaBrowser.Common/Configuration/IConfigurationManager.cs')
| -rw-r--r-- | MediaBrowser.Common/Configuration/IConfigurationManager.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Common/Configuration/IConfigurationManager.cs b/MediaBrowser.Common/Configuration/IConfigurationManager.cs index fe726090d..7bcd4d8ed 100644 --- a/MediaBrowser.Common/Configuration/IConfigurationManager.cs +++ b/MediaBrowser.Common/Configuration/IConfigurationManager.cs @@ -50,8 +50,9 @@ namespace MediaBrowser.Common.Configuration /// Gets the configuration. /// </summary> /// <param name="key">The key.</param> + /// <param name="objectType">Optional parameter containing the key object to create, if it hasn't been registered.</param> /// <returns>System.Object.</returns> - object GetConfiguration(string key); + object GetConfiguration(string key, Type objectType = null); /// <summary> /// Gets the type of the configuration. |
