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