GbxRemote.Net
1.1.0-beta
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
<PackageReference Include="GbxRemote.Net" Version="1.1.0-beta" />
paket add GbxRemote.Net --version 1.1.0-beta
#r "nuget: GbxRemote.Net, 1.1.0-beta"
// 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 | Versions 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. |
-
net5.0
- Newtonsoft.Json (>= 13.0.1)
- NLog (>= 4.7.9)
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.2 | 144 | 5/16/2024 |
5.0.1 | 91 | 5/3/2024 |
5.0.0 | 804 | 12/12/2023 |
4.1.0 | 552 | 7/12/2023 |
4.0.1 | 255 | 5/29/2023 |
4.0.0 | 263 | 3/30/2023 |
3.0.3 | 316 | 12/19/2022 |
3.0.2 | 613 | 12/6/2022 |
3.0.1 | 346 | 12/3/2022 |
3.0.0 | 385 | 11/9/2022 |
2.0.1 | 429 | 10/10/2022 |
2.0.0 | 506 | 10/3/2022 |
1.1.10 | 470 | 7/30/2022 |
1.1.9 | 578 | 7/12/2022 |
1.1.8 | 431 | 7/12/2022 |
1.1.7 | 571 | 7/9/2022 |
1.1.6 | 720 | 5/5/2022 |
1.1.4 | 444 | 4/10/2022 |
1.1.3 | 377 | 8/9/2021 |
1.1.2 | 411 | 8/6/2021 |
1.1.1 | 344 | 8/4/2021 |
1.1.1-beta | 270 | 4/10/2021 |
1.1.0-beta | 260 | 4/10/2021 |
1.0.1-beta | 214 | 4/5/2021 |
This is the first BETA version of the client.