aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/ILibraryManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-03-01 14:39:46 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-03-01 14:39:46 -0500
commit076a07a54661da993b7ecefd5e294b11b8d90873 (patch)
tree008d8c36e8201cae90b6c8232e4016d9b212df36 /MediaBrowser.Controller/Library/ILibraryManager.cs
parent177cc41e3dfd7b2fc5045a183634059260585f20 (diff)
optimize FindByPath
Diffstat (limited to 'MediaBrowser.Controller/Library/ILibraryManager.cs')
-rw-r--r--MediaBrowser.Controller/Library/ILibraryManager.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs
index 1c515edd5..ff44953ef 100644
--- a/MediaBrowser.Controller/Library/ILibraryManager.cs
+++ b/MediaBrowser.Controller/Library/ILibraryManager.cs
@@ -57,6 +57,13 @@ namespace MediaBrowser.Controller.Library
Person GetPerson(string name);
/// <summary>
+ /// Finds the by path.
+ /// </summary>
+ /// <param name="path">The path.</param>
+ /// <returns>BaseItem.</returns>
+ BaseItem FindByPath(string path);
+
+ /// <summary>
/// Gets the artist.
/// </summary>
/// <param name="name">The name.</param>