File: StatefulHub.cs
Web Access
Project: src\src\SignalR\server\StackExchangeRedis\test\Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests.csproj (Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests;
 
public class StatefulHub : Hub
{
    public Task SendToAll(string message)
    {
        return Clients.All.SendAsync("SendToAll", message);
    }
}