GiantBomb.Api.GiantBombRestClient.GetReleasesForGameAsync C# (CSharp) Method

GetReleasesForGameAsync() public method

public GetReleasesForGameAsync ( GiantBomb.Api.Model.Game game, string limitFields = null ) : Task>
game GiantBomb.Api.Model.Game
limitFields string
return Task>
        public Task<IEnumerable<Release>> GetReleasesForGameAsync(Game game, string[] limitFields = null)
        {
            return GetReleasesForGameAsync(game.Id, limitFields);
        }
    }

Same methods

GiantBombRestClient::GetReleasesForGameAsync ( int gameId, string limitFields = null ) : Task>