diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-09 20:38:01 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-09 20:38:01 -0500 |
| commit | 0024aa44ee1f316dc2c9d7d41d9306dd168159ea (patch) | |
| tree | 9f6c9a2499f6f588dbec4e87e946d175348525c1 /MediaBrowser.Controller/Library | |
| parent | 064c9a02f7a12291d6c60962943a1a3be5c622e6 (diff) | |
update series resolving
Diffstat (limited to 'MediaBrowser.Controller/Library')
| -rw-r--r-- | MediaBrowser.Controller/Library/ILibraryManager.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index 8573f32e0..2ebd1cab9 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -265,6 +265,20 @@ namespace MediaBrowser.Controller.Library /// <param name="item">The item.</param> /// <returns>System.String.</returns> string GetInheritedContentType(BaseItem item); + + /// <summary> + /// Gets the type of the configured content. + /// </summary> + /// <param name="item">The item.</param> + /// <returns>System.String.</returns> + string GetConfiguredContentType(BaseItem item); + + /// <summary> + /// Gets the type of the configured content. + /// </summary> + /// <param name="path">The path.</param> + /// <returns>System.String.</returns> + string GetConfiguredContentType(string path); /// <summary> /// Normalizes the root path list. |
