A .NET implementation of the Source RCON Protocol.
$ dotnet add package RacoonA .NET implementation of the Source RCON Protocol.
RCONClient: Provides the functionality to connect to a RCON server.RCONServer: Provides the functionality to accept RCON messages.using Racoon;
using Racoon.Extensions;
using var console = new RCONClient(IPAddress.Loopback, 27015, "password", new()
{
AutoConnect = true,
});
var status = await console.Status();
// ...