fix some documentation periods
This commit is contained in:
parent
afe09612e8
commit
8de6452967
|
@ -6308,7 +6308,7 @@ where AncestorIdText not null and ItemValues.Value not null and ItemValues.Type
|
||||||
/// Gets the attachment.
|
/// Gets the attachment.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="reader">The reader.</param>
|
/// <param name="reader">The reader.</param>
|
||||||
/// <returns>MediaAttachment</returns>
|
/// <returns>MediaAttachment.</returns>
|
||||||
private MediaAttachment GetMediaAttachment(IReadOnlyList<IResultSetValue> reader)
|
private MediaAttachment GetMediaAttachment(IReadOnlyList<IResultSetValue> reader)
|
||||||
{
|
{
|
||||||
var item = new MediaAttachment
|
var item = new MediaAttachment
|
||||||
|
|
|
@ -136,7 +136,7 @@ namespace Emby.Server.Implementations.Library
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initializes a new instance of the <see cref="LibraryManager" /> class.
|
/// Initializes a new instance of the <see cref="LibraryManager" /> class.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="appHost">The application host</param>
|
/// <param name="appHost">The application host.</param>
|
||||||
/// <param name="logger">The logger.</param>
|
/// <param name="logger">The logger.</param>
|
||||||
/// <param name="taskManager">The task manager.</param>
|
/// <param name="taskManager">The task manager.</param>
|
||||||
/// <param name="userManager">The user manager.</param>
|
/// <param name="userManager">The user manager.</param>
|
||||||
|
@ -1793,7 +1793,7 @@ namespace Emby.Server.Implementations.Library
|
||||||
/// Creates the items.
|
/// Creates the items.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="items">The items.</param>
|
/// <param name="items">The items.</param>
|
||||||
/// <param name="parent">The parent item</param>
|
/// <param name="parent">The parent item.</param>
|
||||||
/// <param name="cancellationToken">The cancellation token.</param>
|
/// <param name="cancellationToken">The cancellation token.</param>
|
||||||
public void CreateItems(IEnumerable<BaseItem> items, BaseItem parent, CancellationToken cancellationToken)
|
public void CreateItems(IEnumerable<BaseItem> items, BaseItem parent, CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
|
|
|
@ -23,8 +23,8 @@ namespace Emby.Server.Implementations.Library.Resolvers.TV
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="config">The config.</param>
|
/// <param name="config">The config.</param>
|
||||||
/// <param name="libraryManager">The library manager.</param>
|
/// <param name="libraryManager">The library manager.</param>
|
||||||
/// <param name="localization">The localization</param>
|
/// <param name="localization">The localization.</param>
|
||||||
/// <param name="logger">The logger</param>
|
/// <param name="logger">The logger.</param>
|
||||||
public SeasonResolver(
|
public SeasonResolver(
|
||||||
IServerConfigurationManager config,
|
IServerConfigurationManager config,
|
||||||
ILibraryManager libraryManager,
|
ILibraryManager libraryManager,
|
||||||
|
|
|
@ -95,7 +95,7 @@ namespace Emby.Server.Implementations.ScheduledTasks
|
||||||
/// Queues the scheduled task.
|
/// Queues the scheduled task.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <typeparam name="T"></typeparam>
|
/// <typeparam name="T"></typeparam>
|
||||||
/// <param name="options">Task options</param>
|
/// <param name="options">Task options.</param>
|
||||||
public void QueueScheduledTask<T>(TaskOptions options)
|
public void QueueScheduledTask<T>(TaskOptions options)
|
||||||
where T : IScheduledTask
|
where T : IScheduledTask
|
||||||
{
|
{
|
||||||
|
|
|
@ -29,8 +29,8 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Public constructor with required data.
|
/// Public constructor with required data.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="title">The title or name of the object</param>
|
/// <param name="title">The title or name of the object.</param>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="_book0"></param>
|
/// <param name="_book0"></param>
|
||||||
public BookMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Book _book0)
|
public BookMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Book _book0)
|
||||||
{
|
{
|
||||||
|
@ -51,8 +51,8 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Static create function (for use in LINQ queries, etc.)
|
/// Static create function (for use in LINQ queries, etc.)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="title">The title or name of the object</param>
|
/// <param name="title">The title or name of the object.</param>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="_book0"></param>
|
/// <param name="_book0"></param>
|
||||||
public static BookMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Book _book0)
|
public static BookMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Book _book0)
|
||||||
{
|
{
|
||||||
|
|
|
@ -27,7 +27,7 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Public constructor with required data.
|
/// Public constructor with required data.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="timestart"></param>
|
/// <param name="timestart"></param>
|
||||||
/// <param name="_release0"></param>
|
/// <param name="_release0"></param>
|
||||||
public Chapter(string language, long timestart, Release _release0)
|
public Chapter(string language, long timestart, Release _release0)
|
||||||
|
@ -47,7 +47,7 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Static create function (for use in LINQ queries, etc.)
|
/// Static create function (for use in LINQ queries, etc.)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="timestart"></param>
|
/// <param name="timestart"></param>
|
||||||
/// <param name="_release0"></param>
|
/// <param name="_release0"></param>
|
||||||
public static Chapter Create(string language, long timestart, Release _release0)
|
public static Chapter Create(string language, long timestart, Release _release0)
|
||||||
|
|
|
@ -26,8 +26,8 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Public constructor with required data.
|
/// Public constructor with required data.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="title">The title or name of the object</param>
|
/// <param name="title">The title or name of the object.</param>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="_company0"></param>
|
/// <param name="_company0"></param>
|
||||||
public CompanyMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Company _company0)
|
public CompanyMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Company _company0)
|
||||||
{
|
{
|
||||||
|
@ -47,8 +47,8 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Static create function (for use in LINQ queries, etc.)
|
/// Static create function (for use in LINQ queries, etc.)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="title">The title or name of the object</param>
|
/// <param name="title">The title or name of the object.</param>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="_company0"></param>
|
/// <param name="_company0"></param>
|
||||||
public static CompanyMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Company _company0)
|
public static CompanyMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Company _company0)
|
||||||
{
|
{
|
||||||
|
|
|
@ -25,8 +25,8 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Public constructor with required data.
|
/// Public constructor with required data.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="title">The title or name of the object</param>
|
/// <param name="title">The title or name of the object.</param>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="_customitem0"></param>
|
/// <param name="_customitem0"></param>
|
||||||
public CustomItemMetadata(string title, string language, DateTime dateadded, DateTime datemodified, CustomItem _customitem0)
|
public CustomItemMetadata(string title, string language, DateTime dateadded, DateTime datemodified, CustomItem _customitem0)
|
||||||
{
|
{
|
||||||
|
@ -46,8 +46,8 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Static create function (for use in LINQ queries, etc.)
|
/// Static create function (for use in LINQ queries, etc.)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="title">The title or name of the object</param>
|
/// <param name="title">The title or name of the object.</param>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="_customitem0"></param>
|
/// <param name="_customitem0"></param>
|
||||||
public static CustomItemMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, CustomItem _customitem0)
|
public static CustomItemMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, CustomItem _customitem0)
|
||||||
{
|
{
|
||||||
|
|
|
@ -26,8 +26,8 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Public constructor with required data.
|
/// Public constructor with required data.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="title">The title or name of the object</param>
|
/// <param name="title">The title or name of the object.</param>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="_episode0"></param>
|
/// <param name="_episode0"></param>
|
||||||
public EpisodeMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Episode _episode0)
|
public EpisodeMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Episode _episode0)
|
||||||
{
|
{
|
||||||
|
@ -47,8 +47,8 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Static create function (for use in LINQ queries, etc.)
|
/// Static create function (for use in LINQ queries, etc.)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="title">The title or name of the object</param>
|
/// <param name="title">The title or name of the object.</param>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="_episode0"></param>
|
/// <param name="_episode0"></param>
|
||||||
public static EpisodeMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Episode _episode0)
|
public static EpisodeMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Episode _episode0)
|
||||||
{
|
{
|
||||||
|
|
|
@ -99,7 +99,7 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Static create function (for use in LINQ queries, etc.)
|
/// Static create function (for use in LINQ queries, etc.)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="name">The name of this group</param>
|
/// <param name="name">The name of this group.</param>
|
||||||
public static Group Create(string name)
|
public static Group Create(string name)
|
||||||
{
|
{
|
||||||
return new Group(name);
|
return new Group(name);
|
||||||
|
|
|
@ -27,7 +27,7 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Public constructor with required data.
|
/// Public constructor with required data.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="path">Absolute Path</param>
|
/// <param name="path">Absolute Path.</param>
|
||||||
public LibraryRoot(string path)
|
public LibraryRoot(string path)
|
||||||
{
|
{
|
||||||
if (string.IsNullOrEmpty(path)) throw new ArgumentNullException(nameof(path));
|
if (string.IsNullOrEmpty(path)) throw new ArgumentNullException(nameof(path));
|
||||||
|
@ -40,7 +40,7 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Static create function (for use in LINQ queries, etc.)
|
/// Static create function (for use in LINQ queries, etc.)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="path">Absolute Path</param>
|
/// <param name="path">Absolute Path.</param>
|
||||||
public static LibraryRoot Create(string path)
|
public static LibraryRoot Create(string path)
|
||||||
{
|
{
|
||||||
return new LibraryRoot(path);
|
return new LibraryRoot(path);
|
||||||
|
|
|
@ -30,7 +30,7 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Public constructor with required data.
|
/// Public constructor with required data.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="path">Relative to the LibraryRoot</param>
|
/// <param name="path">Relative to the LibraryRoot.</param>
|
||||||
/// <param name="kind"></param>
|
/// <param name="kind"></param>
|
||||||
/// <param name="_release0"></param>
|
/// <param name="_release0"></param>
|
||||||
public MediaFile(string path, Enums.MediaFileKind kind, Release _release0)
|
public MediaFile(string path, Enums.MediaFileKind kind, Release _release0)
|
||||||
|
@ -51,7 +51,7 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Static create function (for use in LINQ queries, etc.)
|
/// Static create function (for use in LINQ queries, etc.)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="path">Relative to the LibraryRoot</param>
|
/// <param name="path">Relative to the LibraryRoot.</param>
|
||||||
/// <param name="kind"></param>
|
/// <param name="kind"></param>
|
||||||
/// <param name="_release0"></param>
|
/// <param name="_release0"></param>
|
||||||
public static MediaFile Create(string path, Enums.MediaFileKind kind, Release _release0)
|
public static MediaFile Create(string path, Enums.MediaFileKind kind, Release _release0)
|
||||||
|
|
|
@ -26,8 +26,8 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Public constructor with required data.
|
/// Public constructor with required data.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="title">The title or name of the object</param>
|
/// <param name="title">The title or name of the object.</param>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
protected Metadata(string title, string language, DateTime dateadded, DateTime datemodified)
|
protected Metadata(string title, string language, DateTime dateadded, DateTime datemodified)
|
||||||
{
|
{
|
||||||
if (string.IsNullOrEmpty(title)) throw new ArgumentNullException(nameof(title));
|
if (string.IsNullOrEmpty(title)) throw new ArgumentNullException(nameof(title));
|
||||||
|
|
|
@ -30,8 +30,8 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Public constructor with required data.
|
/// Public constructor with required data.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="title">The title or name of the object</param>
|
/// <param name="title">The title or name of the object.</param>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="_movie0"></param>
|
/// <param name="_movie0"></param>
|
||||||
public MovieMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Movie _movie0)
|
public MovieMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Movie _movie0)
|
||||||
{
|
{
|
||||||
|
@ -52,8 +52,8 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Static create function (for use in LINQ queries, etc.)
|
/// Static create function (for use in LINQ queries, etc.)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="title">The title or name of the object</param>
|
/// <param name="title">The title or name of the object.</param>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="_movie0"></param>
|
/// <param name="_movie0"></param>
|
||||||
public static MovieMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Movie _movie0)
|
public static MovieMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Movie _movie0)
|
||||||
{
|
{
|
||||||
|
|
|
@ -30,8 +30,8 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Public constructor with required data.
|
/// Public constructor with required data.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="title">The title or name of the object</param>
|
/// <param name="title">The title or name of the object.</param>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="_musicalbum0"></param>
|
/// <param name="_musicalbum0"></param>
|
||||||
public MusicAlbumMetadata(string title, string language, DateTime dateadded, DateTime datemodified, MusicAlbum _musicalbum0)
|
public MusicAlbumMetadata(string title, string language, DateTime dateadded, DateTime datemodified, MusicAlbum _musicalbum0)
|
||||||
{
|
{
|
||||||
|
@ -52,8 +52,8 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Static create function (for use in LINQ queries, etc.)
|
/// Static create function (for use in LINQ queries, etc.)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="title">The title or name of the object</param>
|
/// <param name="title">The title or name of the object.</param>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="_musicalbum0"></param>
|
/// <param name="_musicalbum0"></param>
|
||||||
public static MusicAlbumMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, MusicAlbum _musicalbum0)
|
public static MusicAlbumMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, MusicAlbum _musicalbum0)
|
||||||
{
|
{
|
||||||
|
|
|
@ -26,8 +26,8 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Public constructor with required data.
|
/// Public constructor with required data.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="title">The title or name of the object</param>
|
/// <param name="title">The title or name of the object.</param>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="_photo0"></param>
|
/// <param name="_photo0"></param>
|
||||||
public PhotoMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Photo _photo0)
|
public PhotoMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Photo _photo0)
|
||||||
{
|
{
|
||||||
|
@ -47,8 +47,8 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Static create function (for use in LINQ queries, etc.)
|
/// Static create function (for use in LINQ queries, etc.)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="title">The title or name of the object</param>
|
/// <param name="title">The title or name of the object.</param>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="_photo0"></param>
|
/// <param name="_photo0"></param>
|
||||||
public static PhotoMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Photo _photo0)
|
public static PhotoMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Photo _photo0)
|
||||||
{
|
{
|
||||||
|
|
|
@ -27,8 +27,8 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Public constructor with required data.
|
/// Public constructor with required data.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="title">The title or name of the object</param>
|
/// <param name="title">The title or name of the object.</param>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="_season0"></param>
|
/// <param name="_season0"></param>
|
||||||
public SeasonMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Season _season0)
|
public SeasonMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Season _season0)
|
||||||
{
|
{
|
||||||
|
@ -48,8 +48,8 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Static create function (for use in LINQ queries, etc.)
|
/// Static create function (for use in LINQ queries, etc.)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="title">The title or name of the object</param>
|
/// <param name="title">The title or name of the object.</param>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="_season0"></param>
|
/// <param name="_season0"></param>
|
||||||
public static SeasonMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Season _season0)
|
public static SeasonMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Season _season0)
|
||||||
{
|
{
|
||||||
|
|
|
@ -30,8 +30,8 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Public constructor with required data.
|
/// Public constructor with required data.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="title">The title or name of the object</param>
|
/// <param name="title">The title or name of the object.</param>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="_series0"></param>
|
/// <param name="_series0"></param>
|
||||||
public SeriesMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Series _series0)
|
public SeriesMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Series _series0)
|
||||||
{
|
{
|
||||||
|
@ -52,8 +52,8 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Static create function (for use in LINQ queries, etc.)
|
/// Static create function (for use in LINQ queries, etc.)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="title">The title or name of the object</param>
|
/// <param name="title">The title or name of the object.</param>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="_series0"></param>
|
/// <param name="_series0"></param>
|
||||||
public static SeriesMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Series _series0)
|
public static SeriesMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Series _series0)
|
||||||
{
|
{
|
||||||
|
|
|
@ -26,8 +26,8 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Public constructor with required data.
|
/// Public constructor with required data.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="title">The title or name of the object</param>
|
/// <param name="title">The title or name of the object.</param>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="_track0"></param>
|
/// <param name="_track0"></param>
|
||||||
public TrackMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Track _track0)
|
public TrackMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Track _track0)
|
||||||
{
|
{
|
||||||
|
@ -47,8 +47,8 @@ namespace Jellyfin.Data.Entities
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Static create function (for use in LINQ queries, etc.)
|
/// Static create function (for use in LINQ queries, etc.)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="title">The title or name of the object</param>
|
/// <param name="title">The title or name of the object.</param>
|
||||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||||||
/// <param name="_track0"></param>
|
/// <param name="_track0"></param>
|
||||||
public static TrackMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Track _track0)
|
public static TrackMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Track _track0)
|
||||||
{
|
{
|
||||||
|
|
|
@ -30,7 +30,7 @@ namespace MediaBrowser.Controller.Drawing
|
||||||
/// Gets the dimensions of the image.
|
/// Gets the dimensions of the image.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="path">Path to the image file.</param>
|
/// <param name="path">Path to the image file.</param>
|
||||||
/// <returns>ImageDimensions</returns>
|
/// <returns>ImageDimensions.</returns>
|
||||||
ImageDimensions GetImageDimensions(string path);
|
ImageDimensions GetImageDimensions(string path);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -38,14 +38,14 @@ namespace MediaBrowser.Controller.Drawing
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="item">The base item.</param>
|
/// <param name="item">The base item.</param>
|
||||||
/// <param name="info">The information.</param>
|
/// <param name="info">The information.</param>
|
||||||
/// <returns>ImageDimensions</returns>
|
/// <returns>ImageDimensions.</returns>
|
||||||
ImageDimensions GetImageDimensions(BaseItem item, ItemImageInfo info);
|
ImageDimensions GetImageDimensions(BaseItem item, ItemImageInfo info);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the blurhash of the image.
|
/// Gets the blurhash of the image.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="path">Path to the image file.</param>
|
/// <param name="path">Path to the image file.</param>
|
||||||
/// <returns>BlurHash</returns>
|
/// <returns>BlurHash.</returns>
|
||||||
string GetImageBlurHash(string path);
|
string GetImageBlurHash(string path);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -1371,7 +1371,7 @@ namespace MediaBrowser.Controller.Entities
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="options">The options.</param>
|
/// <param name="options">The options.</param>
|
||||||
/// <param name="cancellationToken">The cancellation token.</param>
|
/// <param name="cancellationToken">The cancellation token.</param>
|
||||||
/// <returns>true if a provider reports we changed</returns>
|
/// <returns>true if a provider reports we changed.</returns>
|
||||||
public async Task<ItemUpdateType> RefreshMetadata(MetadataRefreshOptions options, CancellationToken cancellationToken)
|
public async Task<ItemUpdateType> RefreshMetadata(MetadataRefreshOptions options, CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
TriggerOnRefreshStart();
|
TriggerOnRefreshStart();
|
||||||
|
|
|
@ -31,9 +31,9 @@ namespace MediaBrowser.Controller.Net
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The request filter is executed before the service.
|
/// The request filter is executed before the service.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="request">The http request wrapper</param>
|
/// <param name="request">The http request wrapper.</param>
|
||||||
/// <param name="response">The http response wrapper</param>
|
/// <param name="response">The http response wrapper.</param>
|
||||||
/// <param name="requestDto">The request DTO</param>
|
/// <param name="requestDto">The request DTO.</param>
|
||||||
public void RequestFilter(IRequest request, HttpResponse response, object requestDto)
|
public void RequestFilter(IRequest request, HttpResponse response, object requestDto)
|
||||||
{
|
{
|
||||||
AuthService.Authenticate(request, this);
|
AuthService.Authenticate(request, this);
|
||||||
|
|
|
@ -27,7 +27,7 @@ namespace MediaBrowser.Controller.Net
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initializes a new instance of the <see cref="SecurityException"/> class.
|
/// Initializes a new instance of the <see cref="SecurityException"/> class.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="message">The message that describes the error</param>
|
/// <param name="message">The message that describes the error.</param>
|
||||||
/// <param name="innerException">The exception that is the cause of the current exception, or a null reference if no inner exception is specified.</param>
|
/// <param name="innerException">The exception that is the cause of the current exception, or a null reference if no inner exception is specified.</param>
|
||||||
public SecurityException(string message, Exception innerException)
|
public SecurityException(string message, Exception innerException)
|
||||||
: base(message, innerException)
|
: base(message, innerException)
|
||||||
|
|
|
@ -166,7 +166,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
||||||
/// Validates the supplied FQPN to ensure it is a ffmpeg utility.
|
/// Validates the supplied FQPN to ensure it is a ffmpeg utility.
|
||||||
/// If checks pass, global variable FFmpegPath and EncoderLocation are updated.
|
/// If checks pass, global variable FFmpegPath and EncoderLocation are updated.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="path">FQPN to test</param>
|
/// <param name="path">FQPN to test.</param>
|
||||||
/// <param name="location">Location (External, Custom, System) of tool</param>
|
/// <param name="location">Location (External, Custom, System) of tool</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
private bool ValidatePath(string path, FFmpegLocation location)
|
private bool ValidatePath(string path, FFmpegLocation location)
|
||||||
|
|
|
@ -124,8 +124,8 @@ namespace MediaBrowser.Model.Services
|
||||||
/// Gets or sets a query parameter value by name. A query may contain multiple values of the same name
|
/// Gets or sets a query parameter value by name. A query may contain multiple values of the same name
|
||||||
/// (i.e. "x=1&x=2"), in which case the value is an array, which works for both getting and setting.
|
/// (i.e. "x=1&x=2"), in which case the value is an array, which works for both getting and setting.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="name">The query parameter name</param>
|
/// <param name="name">The query parameter name.</param>
|
||||||
/// <returns>The query parameter value or array of values</returns>
|
/// <returns>The query parameter value or array of values.</returns>
|
||||||
public string this[string name]
|
public string this[string name]
|
||||||
{
|
{
|
||||||
get => Get(name);
|
get => Get(name);
|
||||||
|
|
|
@ -312,7 +312,7 @@ namespace MediaBrowser.Providers.Plugins.Tmdb.Movies
|
||||||
/// <param name="id">The id.</param>
|
/// <param name="id">The id.</param>
|
||||||
/// <param name="isTmdbId">if set to <c>true</c> [is TMDB identifier].</param>
|
/// <param name="isTmdbId">if set to <c>true</c> [is TMDB identifier].</param>
|
||||||
/// <param name="language">The language.</param>
|
/// <param name="language">The language.</param>
|
||||||
/// <param name="cancellationToken">The cancellation token</param>
|
/// <param name="cancellationToken">The cancellation token.</param>
|
||||||
/// <returns>Task{CompleteMovieData}.</returns>
|
/// <returns>Task{CompleteMovieData}.</returns>
|
||||||
internal async Task<MovieResult> FetchMainResult(string id, bool isTmdbId, string language, CancellationToken cancellationToken)
|
internal async Task<MovieResult> FetchMainResult(string id, bool isTmdbId, string language, CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user