aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Kernel/BaseKernel.cs
diff options
context:
space:
mode:
authorLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-08-01 15:09:24 -0400
committerLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-08-01 15:09:24 -0400
commit80fd8d015626cbb5ed9ea8678149b13a4a1272f4 (patch)
tree9a4485a5407957a8f896951afda038f4e4505e17 /MediaBrowser.Common/Kernel/BaseKernel.cs
parent00c22a34546ee426cc7097953eb6b1c3443f946b (diff)
Added ApiPort and ServerHostName to ApiClient
Diffstat (limited to 'MediaBrowser.Common/Kernel/BaseKernel.cs')
-rw-r--r--MediaBrowser.Common/Kernel/BaseKernel.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Common/Kernel/BaseKernel.cs b/MediaBrowser.Common/Kernel/BaseKernel.cs
index cc3cb76f0..3442787bc 100644
--- a/MediaBrowser.Common/Kernel/BaseKernel.cs
+++ b/MediaBrowser.Common/Kernel/BaseKernel.cs
@@ -214,7 +214,7 @@ namespace MediaBrowser.Common.Kernel
/// <summary>
/// Reloads application configuration from the config file
/// </summary>
- private void ReloadConfiguration()
+ protected virtual void ReloadConfiguration()
{
// Deserialize config
if (!File.Exists(ConfigurationPath))
@@ -270,7 +270,7 @@ namespace MediaBrowser.Common.Kernel
/// <summary>
/// Disposes all resources currently in use.
/// </summary>
- public void Dispose()
+ public virtual void Dispose()
{
DisposeHttpServer();
DisposeLogger();