TraktPlugin.TraktHelper.ShowEpisodeShouts C# (CSharp) Méthode

ShowEpisodeShouts() public static méthode

public static ShowEpisodeShouts ( TraktShowSummary show, TraktEpisodeSummary episode ) : void
show TraktPlugin.TraktAPI.DataStructures.TraktShowSummary
episode TraktPlugin.TraktAPI.DataStructures.TraktEpisodeSummary
Résultat void
        public static void ShowEpisodeShouts(TraktShowSummary show, TraktEpisodeSummary episode)
        {
            var showImages = TmdbCache.GetShowImages(show.Ids.Tmdb, true);
            ShowEpisodeShouts(show.Title, show.Year, show.Ids.Tvdb, show.Ids.Trakt, show.Ids.Imdb, episode.Season, episode.Number, episode.IsWatched(show), TmdbCache.GetShowBackdropFilename(showImages), TmdbCache.GetShowBackdropUrl(showImages));
        }

Same methods

TraktHelper::ShowEpisodeShouts ( string title, int tvdbid, int traktid, int season, int episode, bool isWatched, string fanart, string onlineFanart = null ) : void
TraktHelper::ShowEpisodeShouts ( string title, int year, int tvdbid, int traktid, string imdbid, int season, int episode, bool isWatched, string fanart, string onlineFanart = null ) : void
TraktHelper::ShowEpisodeShouts ( string title, string tvdbid, string season, string episode, bool isWatched, string fanart, string onlineFanart = null ) : void