diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-11-16 17:46:01 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-11-16 17:46:01 -0500 |
| commit | 049ef9b4ecd2c884e0ddb062b606770ef7f2dfa9 (patch) | |
| tree | 13bb922d8203bcb8e9abb4d9dc2272e2d425bad6 /MediaBrowser.Controller/Library | |
| parent | 5fdd7ec6725a3acb3365e92c090f2e90bbbf122f (diff) | |
update naming methods
Diffstat (limited to 'MediaBrowser.Controller/Library')
| -rw-r--r-- | MediaBrowser.Controller/Library/ILibraryManager.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index 68b99e472..615ddd90f 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -361,6 +361,11 @@ namespace MediaBrowser.Controller.Library /// <returns><c>true</c> if [is video file] [the specified path]; otherwise, <c>false</c>.</returns> bool IsVideoFile(string path); + /// <summary> + /// Determines whether [is audio file] [the specified path]. + /// </summary> + /// <param name="path">The path.</param> + /// <returns><c>true</c> if [is audio file] [the specified path]; otherwise, <c>false</c>.</returns> bool IsAudioFile(string path); /// <summary> @@ -405,5 +410,12 @@ namespace MediaBrowser.Controller.Library /// <param name="considerSeasonless">if set to <c>true</c> [consider seasonless].</param> /// <returns>System.Nullable<System.Int32>.</returns> int? GetEpisodeNumberFromFile(string path, bool considerSeasonless); + + /// <summary> + /// Parses the name. + /// </summary> + /// <param name="name">The name.</param> + /// <returns>ItemInfo.</returns> + ItemLookupInfo ParseName(string name); } }
\ No newline at end of file |
