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

GetPlatformAsync() public method

public GetPlatformAsync ( int id, string limitFields = null ) : Task
id int
limitFields string
return Task
        public async Task<Platform> GetPlatformAsync(int id, string[] limitFields = null) {
            return await GetSingleResourceAsync<Platform>("platform", ResourceTypes.Platforms, id, limitFields).ConfigureAwait(false);
        }