12345678910111213141516171819202122232425262728 |
- using System.Threading;
- using System.Threading.Tasks;
- namespace MediaBrowser.Controller.Providers
- {
- public interface ILocalMetadataProvider : IMetadataProvider
- {
- }
- public interface ILocalMetadataProvider<TItemType> : IMetadataProvider<TItemType>, ILocalMetadataProvider
- where TItemType : IHasMetadata
- {
- /// <summary>
- /// Gets the metadata.
- /// </summary>
- /// <param name="info">The information.</param>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <returns>Task{MetadataResult{`0}}.</returns>
- Task<MetadataResult<TItemType>> GetMetadata(ItemInfo info, CancellationToken cancellationToken);
- }
- public class ItemInfo
- {
- public string Path { get; set; }
- public bool IsInMixedFolder { get; set; }
- }
- }
|