An open API service indexing awesome lists of open source software.

https://github.com/antelcat/protoo-sharp

ported to .NET from https://github.com/versatica/protoo
https://github.com/antelcat/protoo-sharp

aspnetcore protoo protoo-server server-side signaling websocket

Last synced: 6 months ago
JSON representation

ported to .NET from https://github.com/versatica/protoo

Awesome Lists containing this project

README

          

# ProtooSharp
ported to .NET from [protoo](https://github.com/versatica/protoo)

## Usage

in ASP.NET

```csharp
var builder = WebApplication.CreateBuilder();

builder.Services.AddProtooServer(); // add protoo server

var app = builder.Build();

app.UseWebSockets(); // use websockets before map protoo server
app.MapProtooServer("/{your}/{route}"); //map protoo server

app.Run();

```