我有一个使用Redis背板的标准SignalR设置,其描述如下:https://docs.microsoft.com/en-us/aspnet/core/signalr/redis-backplane?view=aspnetcore-2.2
使用从Hub派生的类(在接收RPC调用时调用该类),有一种内置的方式来检索Redis背板的状态,以显示其是否已连接到Redis?
public class MyHub : Hub
{
public MyHub() { }
public void Test()
{
// built in way to get the status of the redis backplane here
}
}