2013-03-03 16:53:58 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Resolvers
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Provides a base "rule" that anyone can use to have paths ignored by the resolver
|
|
|
|
|
/// </summary>
|
2013-03-03 06:58:04 +00:00
|
|
|
|
public interface IResolverIgnoreRule
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-02-23 00:24:50 +00:00
|
|
|
|
bool ShouldIgnore(ItemResolveArgs args);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|