GbxRemote.Net 1.1.0-beta

This is a prerelease version of GbxRemote.Net.
There is a newer version of this package available.
See the version list below for details.
dotnet add package GbxRemote.Net --version 1.1.0-beta
NuGet\Install-Package GbxRemote.Net -Version 1.1.0-beta
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="GbxRemote.Net" Version="1.1.0-beta" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GbxRemote.Net --version 1.1.0-beta
#r "nuget: GbxRemote.Net, 1.1.0-beta"
#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 GbxRemote.Net as a Cake Addin
#addin nuget:?package=GbxRemote.Net&version=1.1.0-beta&prerelease

// Install GbxRemote.Net as a Cake Tool
#tool nuget:?package=GbxRemote.Net&version=1.1.0-beta&prerelease

GbxRemote.NET

A library for interacting with the XML-RPC protocol of TrackMania servers and similar titles built with .NET Core. It is built using the async task pattern. It comes with pre-made methods for all the documented XML-RPC methods provided by the trackmania server and allows you to easily hook into and react on callbacks. Interacting with ModeScript is also simplified through special features.

Simple Example

static async Task MainAsync(string[] args) {
    // create client instance
    GbxRemoteClient client = new("trackmania.test.server", 5001);

    // connect and login
    if (!await client.LoginAsync("SuperAdmin", "SuperAdmin")) {
        Console.WriteLine("Failed to login.");
        return;
    }

    Console.WriteLine("Connected and authenticated!");

    // get player list
    var players = await client.GetPlayerListAsync();

    foreach (var player in players) {
        Console.WriteLine($"Login: {player.Login}, NickName: {player.NickName}");
    }

    // disconnect and clean up
    await client.DisconnectAsync();
}

static void Main(string[] args) {
    MainAsync(args).GetAwaiter().GetResult();
}

More information can be found on Github.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on GbxRemote.Net:

Package Downloads
GbxRemoteNet.Addons.Hosting

Hosting extensions for GbxRemote.NET

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
5.0.1 5 5/3/2024
5.0.0 247 12/12/2023
4.1.0 522 7/12/2023
4.0.1 237 5/29/2023
4.0.0 221 3/30/2023
3.0.3 298 12/19/2022
3.0.2 580 12/6/2022
3.0.1 315 12/3/2022
3.0.0 359 11/9/2022
2.0.1 402 10/10/2022
2.0.0 474 10/3/2022
1.1.10 459 7/30/2022
1.1.9 548 7/12/2022
1.1.8 406 7/12/2022
1.1.7 537 7/9/2022
1.1.6 677 5/5/2022
1.1.4 414 4/10/2022
1.1.3 345 8/9/2021
1.1.2 378 8/6/2021
1.1.1 320 8/4/2021
1.1.1-beta 245 4/10/2021
1.1.0-beta 235 4/10/2021
1.0.1-beta 198 4/5/2021

This is the first BETA version of the client.