MingweiSamuel.Camille 2.0.0-alpha-nightly-2018-12-16-3842eae176

This is a prerelease version of MingweiSamuel.Camille.
There is a newer version of this package available.
See the version list below for details.
dotnet add package MingweiSamuel.Camille --version 2.0.0-alpha-nightly-2018-12-16-3842eae176
                    
NuGet\Install-Package MingweiSamuel.Camille -Version 2.0.0-alpha-nightly-2018-12-16-3842eae176
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MingweiSamuel.Camille" Version="2.0.0-alpha-nightly-2018-12-16-3842eae176" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MingweiSamuel.Camille" Version="2.0.0-alpha-nightly-2018-12-16-3842eae176" />
                    
Directory.Packages.props
<PackageReference Include="MingweiSamuel.Camille" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MingweiSamuel.Camille --version 2.0.0-alpha-nightly-2018-12-16-3842eae176
                    
#r "nuget: MingweiSamuel.Camille, 2.0.0-alpha-nightly-2018-12-16-3842eae176"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package MingweiSamuel.Camille@2.0.0-alpha-nightly-2018-12-16-3842eae176
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MingweiSamuel.Camille&version=2.0.0-alpha-nightly-2018-12-16-3842eae176&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=MingweiSamuel.Camille&version=2.0.0-alpha-nightly-2018-12-16-3842eae176&prerelease
                    
Install as a Cake Tool

Camille

AppVeyor branch NuGet Stable NuGet Pre Release

C# Library for the Riot Games API

Camille's goals are speed and reliability. Camille handles rate limits and large requests seamlessly. Data classes are automatically generated from the Riot API Reference (Swagger).

Features

  • Fast, asynchronous, thread-safe
  • Automatically retries failed requests
  • Highly-configurable
  • Targets .NET Standard 1.1+ (.NET Core 1.0+, .NET Framework 4.5+)
  • Riot API V4 Support

Installation

Install via NuGet (MingweiSamuel.Camille).

Usage

All API interactions are done using a RiotApi instance. RiotApi.NewInstance takes either just an API key (for default settings) or a IRiotApiConfig instance (for custom settings).

var riotApi = RiotApi.NewInstance("RGAPI-12345678-abcd-1234-abcd-123456abcdef");
var riotApi = RiotApi.NewInstance(
    new RiotApiConfig.Builder("RGAPI-12345678-abcd-1234-abcd-123456abcdef")
    {
        MaxConcurrentRequests = 200,
        Retries = 10,
        // ...
    }.Build()
);

API methods are divided up into respective endpoints, corresponding to the left bar of the API reference.

Examples

// Get summoners by name synchronously. (using async is faster).
var summoners = new[]
{
    riotApi.SummonerV4.GetBySummonerName(Region.NA, "c9 sneaky"),
    riotApi.SummonerV4.GetBySummonerName(Region.NA, "double LIFT")
};

foreach (var summoner in summoners)
{
    Console.WriteLine($"{summoner.Name}'s Top 10 Champs:");

    var masteries =
        riotApi.ChampionMasteryV4.GetAllChampionMasteries(Region.NA, summoner.Id);

    for (var i = 0; i < 10; i++)
    {
        var mastery = masteries[i];
        // Get champion for this mastery.
        var champ = mastery.ChampionId.ToString();
        // print i, champ id, champ mastery points, and champ level
        Console.WriteLine("{0,3}) {1,-16} {2,7} ({3})", i + 1, champ,
            mastery.ChampionPoints, mastery.ChampionLevel);
    }
    Console.WriteLine();
}

Output (2017-01-18):

C9 Sneaky's Top 10 Champs:
  1) Jhin             268,866 (7)
  2) Lucian           195,541 (7)
  3) Ezreal           146,950 (7)
  4) Ashe             144,269 (7)
  5) Caitlyn          139,390 (7)
  6) Sivir             84,331 (7)
  7) Twitch            82,702 (7)
  8) Vayne             80,733 (7)
  9) Tristana          75,150 (6)
 10) Miss Fortune      70,757 (7)

Doublelift's Top 10 Champs:
  1) Jhin             126,291 (7)
  2) Caitlyn           97,410 (7)
  3) Vayne             79,420 (7)
  4) Lucian            77,254 (7)
  5) Kalista           43,572 (5)
  6) Ashe              36,408 (7)
  7) Ezreal            35,754 (6)
  8) Twitch            33,169 (6)
  9) Kog'Maw           22,459 (5)
 10) Tristana          20,582 (4)
 
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp1.0 is compatible.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.1 is compatible.  netstandard1.2 was computed.  netstandard1.3 was computed.  netstandard1.4 was computed.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 was computed.  netstandard2.1 was computed. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Windows Phone wpa81 was computed. 
Windows Store netcore was computed.  netcore45 was computed.  netcore451 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.9.1-nightly-2022-06-03-b5... 2,166 6/3/2022
2.9.1-nightly-2022-02-11-b5... 1,369 2/11/2022
2.9.1-nightly-2022-02-10-b5... 1,289 2/10/2022
2.9.1-nightly-2022-02-05-b5... 1,328 2/5/2022
2.9.1-nightly-2022-01-19-e5... 1,305 1/19/2022
2.9.1-nightly-2021-12-30-e5... 1,263 12/30/2021
2.9.1-nightly-2021-11-21-e5... 1,936 11/21/2021
2.9.1-nightly-2021-11-20-e5... 1,695 11/20/2021
2.9.1-nightly-2021-11-11-e5... 1,370 11/11/2021
2.9.1-nightly-2021-10-08-e5... 1,369 10/8/2021
2.9.1-nightly-2021-10-07-e5... 1,408 10/7/2021
2.9.1-nightly-2021-10-07-d1... 1,472 10/7/2021
2.8.1-nightly-2021-09-29-d1... 1,436 9/29/2021
2.8.1-nightly-2021-09-10-fc... 1,486 9/10/2021
2.8.1-nightly-2021-09-04-fc... 1,377 9/4/2021
2.8.1-nightly-2021-09-02-fc... 1,459 9/2/2021
2.8.1-nightly-2021-08-25-fc... 1,417 8/25/2021
2.8.1-nightly-2021-07-24-aa... 1,490 7/24/2021
2.8.1-nightly-2021-07-15-aa... 1,379 7/15/2021
2.8.1-nightly-2021-07-03-aa... 1,497 7/3/2021
2.8.1-nightly-2021-06-26-aa... 1,427 6/26/2021
2.8.1-nightly-2021-06-05-aa... 1,486 6/5/2021
2.8.1-nightly-2021-05-21-78... 1,423 5/21/2021
2.8.1-nightly-2021-05-20-78... 1,495 5/20/2021
2.8.1-nightly-2021-05-14-28... 1,408 5/14/2021
2.8.0 5,095 5/9/2021
2.7.3-nightly-2021-05-02-51... 1,435 5/2/2021
2.7.3-nightly-2021-04-30-51... 1,349 4/30/2021
2.7.3-nightly-2021-04-22-51... 1,387 4/22/2021
2.7.3-nightly-2021-04-15-51... 1,393 4/15/2021
2.7.3-nightly-2021-04-14-51... 1,398 4/14/2021
2.7.3-nightly-2021-04-03-51... 1,522 4/3/2021
2.7.3-nightly-2021-01-17-51... 1,574 1/17/2021
2.7.3-nightly-2021-01-14-51... 1,622 1/14/2021
2.7.3-nightly-2021-01-09-51... 1,577 1/9/2021
2.7.3-nightly-2021-01-07-51... 1,663 1/7/2021
2.7.2 2,038 12/12/2020
2.7.2-nightly-2020-11-12-31... 1,596 11/12/2020
2.7.2-nightly-2020-11-06-31... 1,723 11/6/2020
2.7.2-nightly-2020-11-02-31... 1,568 11/2/2020
2.7.1 1,971 11/1/2020
2.7.1-nightly-2020-10-07-31... 1,628 10/7/2020
2.7.1-nightly-2020-10-03-31... 1,567 10/3/2020
2.7.1-nightly-2020-10-02-31... 1,576 10/2/2020
2.7.1-nightly-2020-09-19-31... 1,622 9/19/2020
2.7.0 1,746 9/17/2020
2.6.4-nightly-2020-09-16-7b... 1,674 9/16/2020
2.6.4-nightly-2020-09-15-7b... 1,654 9/15/2020
2.6.3 1,888 9/2/2020
2.6.3-nightly-2020-09-02-7b... 1,694 9/2/2020
2.6.3-nightly-2020-09-01-7b... 1,663 9/1/2020
2.6.3-nightly-2020-08-27-b7... 1,636 8/27/2020
2.6.2 1,865 8/25/2020
2.6.2-nightly-2020-08-04-43... 1,532 8/4/2020
2.6.2-nightly-2020-07-31-43... 1,687 7/31/2020
2.6.2-nightly-2020-07-30-43... 1,679 7/30/2020
2.6.2-nightly-2020-07-27-43... 1,692 7/27/2020
2.6.2-nightly-2020-07-24-43... 1,560 7/24/2020
2.6.2-nightly-2020-07-23-43... 1,613 7/23/2020
2.6.1 2,638 7/23/2020
2.6.1-nightly-2020-07-17-42... 1,709 7/17/2020
2.6.1-nightly-2020-07-14-42... 1,621 7/14/2020
2.6.0 1,764 7/12/2020
2.5.3-nightly-2020-07-12-42... 1,633 7/12/2020
2.5.3-nightly-2020-05-12-d1... 1,677 5/12/2020
2.5.3-nightly-2020-05-11-3a... 1,676 5/11/2020
2.5.3-nightly-2020-04-16-41... 1,626 5/5/2020
2.5.2 1,936 5/4/2020
2.5.2-nightly-2020-04-16-41... 1,669 4/17/2020
2.5.2-nightly-2020-04-14-da... 1,642 4/16/2020
2.5.1 1,779 4/14/2020
2.5.0 1,784 4/13/2020
2.4.2-nightly-2020-04-14-da... 1,592 4/14/2020
2.4.2-nightly-2020-02-18-01... 1,782 2/18/2020
2.4.2-nightly-2020-02-12-1e... 1,705 2/12/2020
2.4.1 2,004 11/5/2019
2.4.1-nightly-2019-11-05-d3... 1,695 11/5/2019
2.4.0 1,853 10/31/2019
2.3.1-nightly-2019-10-31-7f... 1,706 10/31/2019
2.3.1-nightly-2019-10-16-f4... 1,626 10/17/2019
2.3.1-nightly-2019-10-11-0b... 1,653 10/12/2019
2.3.0 1,905 10/11/2019
2.2.3-nightly-2019-10-08-e3... 2,038 10/10/2019
2.2.3-nightly-2019-09-27-64... 2,117 9/27/2019
2.2.3-nightly-2019-08-29-43... 2,187 8/30/2019
2.2.2 2,553 8/29/2019
2.2.2-nightly-2019-08-14-2d... 2,083 8/14/2019
2.2.2-nightly-2019-08-05-2e... 1,985 8/5/2019
2.2.2-nightly-2019-07-09-07... 2,164 7/9/2019
2.2.1 2,409 7/2/2019
2.2.1-nightly-2019-07-02-c9... 2,089 7/2/2019
2.2.1-nightly-2019-05-23-29... 2,270 5/23/2019
2.2.0 2,838 2/7/2019
2.2.0-nightly-2019-04-08-4d... 2,110 4/8/2019
2.2.0-nightly-2019-03-08-2d... 2,162 3/8/2019
2.2.0-nightly-2019-03-05-f6... 2,159 3/5/2019
2.2.0-nightly-2019-02-19-13... 2,276 2/19/2019
2.1.0 2,590 1/27/2019
2.0.0 2,497 12/16/2018
2.0.0-nightly-2019-01-17-9f... 2,303 1/17/2019
2.0.0-alpha-nightly-2018-12... 2,042 12/16/2018
2.0.0-alpha-nightly-2018-12... 2,132 12/16/2018
1.3.0 3,183 7/14/2018
1.3.0-nightly-2018-07-14-7c... 2,708 7/14/2018
1.2.0 3,044 6/2/2018
1.2.0-nightly-2018-07-14-b1... 2,728 7/14/2018
1.2.0-nightly-2018-06-06-2c... 2,691 6/6/2018
1.2.0-nightly-2018-06-06-28... 2,676 6/6/2018
1.2.0-nightly-2018-06-02-98... 2,630 6/3/2018
1.1.0 3,057 2/27/2018
1.1.0-nightly-2018-06-02-17... 2,669 6/2/2018
1.1.0-nightly-2018-02-23-7e... 2,753 2/23/2018
1.0.1 3,209 2/8/2018
1.0.1-nightly-2018-02-16-b9... 2,915 2/16/2018
1.0.1-nightly-2018-02-15-13... 2,908 2/15/2018
1.0.1-nightly-2018-02-14-46... 2,726 2/14/2018
1.0.1-nightly-2018-02-08-97... 2,891 2/8/2018
1.0.0 2,465 1/16/2018
1.0.0-nightly-b24c77881a 2,305 1/16/2018
1.0.0-nightly-986e3393a4 2,433 1/18/2018
1.0.0-nightly-2018-02-08-f0... 2,961 2/8/2018

Nightly Release