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.
<PackageVersion Include="GbxRemote.Net" Version="1.1.0-beta" />
                    
Directory.Packages.props
<PackageReference Include="GbxRemote.Net" />
                    
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 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.
#:package GbxRemote.Net@1.1.0-beta
                    
#: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=GbxRemote.Net&version=1.1.0-beta&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=GbxRemote.Net&version=1.1.0-beta&prerelease
                    
Install as a Cake Tool

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.  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. 
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.3 134 7/7/2025
5.0.2 345 5/16/2024
5.0.1 128 5/3/2024
5.0.0 1,100 12/12/2023
4.1.0 641 7/12/2023
4.0.1 296 5/29/2023
4.0.0 299 3/30/2023
3.0.3 355 12/19/2022
3.0.2 666 12/6/2022
3.0.1 388 12/3/2022
3.0.0 434 11/9/2022
2.0.1 471 10/10/2022
2.0.0 548 10/3/2022
1.1.10 517 7/30/2022
1.1.9 623 7/12/2022
1.1.8 476 7/12/2022
1.1.7 625 7/9/2022
1.1.6 774 5/5/2022
1.1.4 494 4/10/2022
1.1.3 432 8/9/2021
1.1.2 466 8/6/2021
1.1.1 406 8/4/2021
1.1.1-beta 333 4/10/2021
1.1.0-beta 316 4/10/2021
1.0.1-beta 277 4/5/2021

This is the first BETA version of the client.