Interface IIntroProvider
Class BaseIntroProvider
Namespace: MediaBrowser.Controller.Library
Assembly: MediaBrowser.Controller.dll
Syntax
public interface IIntroProvider
Properties
Name
Gets the name.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
System.String | The name. |
Methods
GetAllIntroFiles()
Gets all intro files.
Declaration
IEnumerable<string> GetAllIntroFiles()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<System.String> | IEnumerable{System.String}. |
GetIntros(BaseItem, User)
Gets the intros.
Declaration
Task<IEnumerable<IntroInfo>> GetIntros(BaseItem item, User user)
Parameters
Type | Name | Description |
---|---|---|
BaseItem | item | The item. |
User | user | The user. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<IntroInfo>> | IEnumerable{System.String}. |