Created an ItemsByName query dto

This commit is contained in:
LukePulverenti
2013-03-02 02:16:52 -05:00
parent 79baaa4daa
commit e8f5fade43
14 changed files with 94 additions and 38 deletions

View File

@@ -295,10 +295,6 @@ namespace MediaBrowser.Common.Plugins
{
InitializeOnServer(!File.Exists(ConfigurationFilePath));
}
else if (kernel.KernelContext == KernelContext.Ui)
{
InitializeInUi();
}
}
/// <summary>
@@ -309,13 +305,6 @@ namespace MediaBrowser.Common.Plugins
{
}
/// <summary>
/// Starts the plugin in the Ui
/// </summary>
protected virtual void InitializeInUi()
{
}
/// <summary>
/// Disposes the plugins. Undos all actions performed during Init.
/// </summary>
@@ -335,10 +324,6 @@ namespace MediaBrowser.Common.Plugins
{
DisposeOnServer(dispose);
}
else if (Kernel.KernelContext == KernelContext.Ui)
{
DisposeInUI(dispose);
}
}
/// <summary>
@@ -350,15 +335,6 @@ namespace MediaBrowser.Common.Plugins
}
/// <summary>
/// Releases unmanaged and - optionally - managed resources.
/// </summary>
/// <param name="dispose"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
protected virtual void DisposeInUI(bool dispose)
{
}
/// <summary>
/// The _save lock
/// </summary>