AspNetCore.Docs.Samples/samples/WebKeyedService/Hubs/MyHub.cs

12 lines
229 B
C#
Raw Normal View History

using Microsoft.AspNetCore.SignalR;
namespace WebKeyedService.Hubs;
public class MyHub : Hub
{
public void Method([FromKeyedServices("small")] ICache cache)
{
Console.WriteLine(cache.Get("signalr"));
}
}