Name
MatrixBot .NET Core SDK
Description
A .NET 6.0 library to quickly interact with the matrix protocol
Author
enimatek-nl
Maturity
Stable
Language
C#
License
MIT
This open-source library allows you to build .NET chat bots compatible with the Matrix Protocol. It has support for a limited subset of the APIs.
var matrixBot = new MatrixBot.Sdk.MatrixBot();
matrixBot.OnEvent += (object? sender, MatrixBot.Sdk.MatrixBotEventArgs e) =>
{
Console.WriteLine($"{e.RoomId} : {e.Event.Sender}");
};
matrixBot.Start();
You can find the SDK here on NuGet.