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

ShowTVShowShouts() public static méthode

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

Same methods

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