Kunc.RiotGames.Lol.LeagueClientUpdate 0.1.4

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Kunc.RiotGames.Lol.LeagueClientUpdate --version 0.1.4
NuGet\Install-Package Kunc.RiotGames.Lol.LeagueClientUpdate -Version 0.1.4
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="Kunc.RiotGames.Lol.LeagueClientUpdate" Version="0.1.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Kunc.RiotGames.Lol.LeagueClientUpdate --version 0.1.4
#r "nuget: Kunc.RiotGames.Lol.LeagueClientUpdate, 0.1.4"
#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.
// Install Kunc.RiotGames.Lol.LeagueClientUpdate as a Cake Addin
#addin nuget:?package=Kunc.RiotGames.Lol.LeagueClientUpdate&version=0.1.4

// Install Kunc.RiotGames.Lol.LeagueClientUpdate as a Cake Tool
#tool nuget:?package=Kunc.RiotGames.Lol.LeagueClientUpdate&version=0.1.4

Kunc.RiotGames.Lol.LeagueClientUpdate

Simple client for interacting with the League of Legends LCU.

How to use

using Kunc.RiotGames.Lol.LeagueClientUpdate;

LolLeagueClientUpdate lcu = new LolLeagueClientUpdate(new FileLockfileProvieder());

API requests

To send an API request, you have 2 options:

  1. Use the predefined methods (GetAsync/SendAsync) that are a wrapper around HttpClinet.
  2. Use HttpClient directly (property Client), so you can use many existing methods.
var obj = new { challengeIds = new long[] { -1, -1, -1 } };
await lcu.SendAsync(HttpMethod.Post, "lol-challenges/v1/update-player-preferences/", obj);
await lcu.Client.PostAsJsonAsync("lol-challenges/v1/update-player-preferences/", obj);

RootObject obj1 = await lcu.GetAsync<RootObject>("lol-summoner/v1/current-summoner");
RootObject obj2 = await lcu.Client.GetFromJsonAsync<RootObject>("lol-summoner/v1/current-summoner");

class RootObject { /* Properties */ }

WebSocket

TODO

Event delegate

As a delegate you can use any method that has 0-3 parameters, the order of the parameters does not matter.

The parameters must be:

  • type sender: object, LolLeagueClientUpdate ,ILolLeagueClientUpdate
  • type eventArgs: here you can use any type that represents an object that was sent through wamp
  • CancellationToken, token will by canceled when you call CloseWampAsync

Don't forget to call ConnectWampAsync to start WebSocket!

Lcu.Subscribe("/lol-gameflow/v1/gameflow-phase", () => { });
Lcu.Subscribe([LcuEvent("/lol-gameflow/v1/gameflow-phase")] () => { });
Lcu.Subscribe(new LcuEventAttribute("/lol-gameflow/v1/gameflow-phase"), () => { });

Lcu.SubscribeAll<SomeClass>();

await Lcu.ConnectWampAsync();

class SomeClass
{
    [LcuEvent("/lol-gameflow/v1/gameflow-phase")]
    public void Method1()
    { }

    [LcuEvent("/lol-gameflow/v1/gameflow-phase")]
    public void Method2(LcuEventArgs<string> e)
    { 
        Console.WriteLine(e.Data);
    }

    [LcuEvent("/lol-gameflow/v1/gameflow-phase")]
    public void Method3(object sender, LcuEventArgs<string> e)
    { }

    [LcuEvent("/lol-gameflow/v1/gameflow-phase")]
    public void Method4(LolLeagueClientUpdate sender, LcuEventArgs<string> e, CancellationToken token)
    { }

    [LcuEvent("/lol-gameflow/v1/gameflow-phase")]
    public async Task Method5(ILolLeagueClientUpdate sender)
    { }
}

Disclaimer

Kunc.RiotGames.Lol.LeagueClientUpdate isn't endorsed by Riot Games and doesn't reflect the views or opinions of Riot Games or anyone officially involved in producing or managing Riot Games properties. Riot Games, and all associated properties are trademarks or registered trademarks of Riot Games, Inc.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
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
0.1.4 32 4/24/2024
0.1.3 131 10/8/2023
0.1.2 126 5/23/2023
0.1.1 209 2/22/2023
0.1.0 232 1/17/2023