11 lines
205 B
C#
11 lines
205 B
C#
using Microsoft.AspNetCore.SignalR;
|
|
|
|
namespace AipsRT.Hubs;
|
|
|
|
public class TestHub : Hub
|
|
{
|
|
public async Task SendText(string text)
|
|
{
|
|
await Clients.All.SendAsync("ReceiveText", text);
|
|
}
|
|
} |