C# Class TmdbWrapper.Movies.Movie

Movie
Inheritance: ITmdbObject
ファイルを表示 Open project: Fishes/TMDbWrapper

Public Methods

Method Description
AlternateTitlesAsync ( string country ) : Task>

Gets a list of altenative titles for the specified country

CastAsync ( ) : Task

Gets the credits of this movie.

ImagesAsync ( ) : Task

All images of this movie.

KeywordsAsync ( ) : Task>

The keywords of a specific movie.

ReleasesAsync ( ) : Task>

Releases of a specific movie.

SimilarMoviesAsync ( int page = 1 ) : Task>

Gets movies that are similiar to the specified movie.

ToString ( ) : string

Returns this instance ToString

TrailersAsync ( ) : Task

Gets the trailer of a specific movie.

TranslationsAsync ( ) : Task

Gets the languages that a specific movie is translated into.

Uri ( BackdropSize size ) : Uri

Uri to the backdrop image.

Uri ( PosterSize size ) : Uri

Uri to the poster image.

Private Methods

Method Description
ITmdbObject ( JSONObject jsonObject ) : void

Method Details

AlternateTitlesAsync() public method

Gets a list of altenative titles for the specified country
public AlternateTitlesAsync ( string country ) : Task>
country string Code of the country
return Task>

CastAsync() public method

Gets the credits of this movie.
public CastAsync ( ) : Task
return Task

ImagesAsync() public method

All images of this movie.
public ImagesAsync ( ) : Task
return Task

KeywordsAsync() public method

The keywords of a specific movie.
public KeywordsAsync ( ) : Task>
return Task>

ReleasesAsync() public method

Releases of a specific movie.
public ReleasesAsync ( ) : Task>
return Task>

SimilarMoviesAsync() public method

Gets movies that are similiar to the specified movie.
public SimilarMoviesAsync ( int page = 1 ) : Task>
page int The request page of the search results, giving 0 will give all results.
return Task>

ToString() public method

Returns this instance ToString
public ToString ( ) : string
return string

TrailersAsync() public method

Gets the trailer of a specific movie.
public TrailersAsync ( ) : Task
return Task

TranslationsAsync() public method

Gets the languages that a specific movie is translated into.
public TranslationsAsync ( ) : Task
return Task

Uri() public method

Uri to the backdrop image.
public Uri ( BackdropSize size ) : Uri
size BackdropSize The size for the image as required
return System.Uri

Uri() public method

Uri to the poster image.
public Uri ( PosterSize size ) : Uri
size PosterSize The size for the image as required
return System.Uri