Merge pull request #1973 from EraYaN/docs-warning-fixes

Fix the last of the docs warnings
This commit is contained in:
dkanada 2019-11-07 18:12:26 +09:00 committed by GitHub
commit ad852ffd9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 64 additions and 69 deletions

View file

@ -126,12 +126,6 @@ namespace MediaBrowser.Api
_appHost = appHost; _appHost = appHost;
} }
/// <summary>
/// Gets the specified request.
/// </summary>
/// <param name="request">The request.</param>
/// <returns>System.Object.</returns>
///
/// <summary> /// <summary>
/// Gets the specified request. /// Gets the specified request.
/// </summary> /// </summary>

View file

@ -64,10 +64,10 @@ namespace MediaBrowser.Model.Globalization
bool HasUnicodeCategory(string value, UnicodeCategory category); bool HasUnicodeCategory(string value, UnicodeCategory category);
/// <summary> /// <summary>
/// Returns the correct <see cref="Cultureinfo" /> for the given language. /// Returns the correct <see cref="CultureInfo" /> for the given language.
/// </summary> /// </summary>
/// <param name="language">The language.</param> /// <param name="language">The language.</param>
/// <returns>The correct <see cref="Cultureinfo" /> for the given language.</returns> /// <returns>The correct <see cref="CultureInfo" /> for the given language.</returns>
CultureDto FindLanguageInfo(string language); CultureDto FindLanguageInfo(string language);
} }
} }

View file

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<Authors>Jellyfin Contributors</Authors> <Authors>Jellyfin Contributors</Authors>
@ -16,6 +16,7 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" /> <PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.0.0" /> <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.0.0" />
<PackageReference Include="System.Globalization" Version="4.3.0" />
<PackageReference Include="System.Text.Json" Version="4.6.0" /> <PackageReference Include="System.Text.Json" Version="4.6.0" />
</ItemGroup> </ItemGroup>

View file

@ -18,7 +18,7 @@ namespace MediaBrowser.Model.Net
public int ReceivedBytes { get; set; } public int ReceivedBytes { get; set; }
/// <summary> /// <summary>
/// The <see cref="IpEndPointInfo"/> the data was received from. /// The <see cref="IPEndPoint"/> the data was received from.
/// </summary> /// </summary>
public IPEndPoint RemoteEndPoint { get; set; } public IPEndPoint RemoteEndPoint { get; set; }
public IPAddress LocalIPAddress { get; set; } public IPAddress LocalIPAddress { get; set; }

View file

@ -2,64 +2,64 @@ namespace MediaBrowser.Providers.Tmdb.Models.Search
{ {
public class MovieResult public class MovieResult
{ {
/// <summary> /// <summary>
/// Gets or sets a value indicating whether this <see cref="TmdbMovieSearchResult" /> is adult. /// Gets or sets a value indicating whether this <see cref="MovieResult" /> is adult.
/// </summary> /// </summary>
/// <value><c>true</c> if adult; otherwise, <c>false</c>.</value> /// <value><c>true</c> if adult; otherwise, <c>false</c>.</value>
public bool Adult { get; set; } public bool Adult { get; set; }
/// <summary> /// <summary>
/// Gets or sets the backdrop_path. /// Gets or sets the backdrop_path.
/// </summary> /// </summary>
/// <value>The backdrop_path.</value> /// <value>The backdrop_path.</value>
public string Backdrop_Path { get; set; } public string Backdrop_Path { get; set; }
/// <summary> /// <summary>
/// Gets or sets the id. /// Gets or sets the id.
/// </summary> /// </summary>
/// <value>The id.</value> /// <value>The id.</value>
public int Id { get; set; } public int Id { get; set; }
/// <summary> /// <summary>
/// Gets or sets the original_title. /// Gets or sets the original_title.
/// </summary> /// </summary>
/// <value>The original_title.</value> /// <value>The original_title.</value>
public string Original_Title { get; set; } public string Original_Title { get; set; }
/// <summary> /// <summary>
/// Gets or sets the original_name. /// Gets or sets the original_name.
/// </summary> /// </summary>
/// <value>The original_name.</value> /// <value>The original_name.</value>
public string Original_Name { get; set; } public string Original_Name { get; set; }
/// <summary> /// <summary>
/// Gets or sets the release_date. /// Gets or sets the release_date.
/// </summary> /// </summary>
/// <value>The release_date.</value> /// <value>The release_date.</value>
public string Release_Date { get; set; } public string Release_Date { get; set; }
/// <summary> /// <summary>
/// Gets or sets the poster_path. /// Gets or sets the poster_path.
/// </summary> /// </summary>
/// <value>The poster_path.</value> /// <value>The poster_path.</value>
public string Poster_Path { get; set; } public string Poster_Path { get; set; }
/// <summary> /// <summary>
/// Gets or sets the popularity. /// Gets or sets the popularity.
/// </summary> /// </summary>
/// <value>The popularity.</value> /// <value>The popularity.</value>
public double Popularity { get; set; } public double Popularity { get; set; }
/// <summary> /// <summary>
/// Gets or sets the title. /// Gets or sets the title.
/// </summary> /// </summary>
/// <value>The title.</value> /// <value>The title.</value>
public string Title { get; set; } public string Title { get; set; }
/// <summary> /// <summary>
/// Gets or sets the vote_average. /// Gets or sets the vote_average.
/// </summary> /// </summary>
/// <value>The vote_average.</value> /// <value>The vote_average.</value>
public double Vote_Average { get; set; } public double Vote_Average { get; set; }
/// <summary> /// <summary>
/// For collection search results /// For collection search results
/// </summary> /// </summary>
public string Name { get; set; } public string Name { get; set; }
/// <summary> /// <summary>
/// Gets or sets the vote_count. /// Gets or sets the vote_count.
/// </summary> /// </summary>
/// <value>The vote_count.</value> /// <value>The vote_count.</value>
public int Vote_Count { get; set; } public int Vote_Count { get; set; }
} }
} }