You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
varusersField=typeof(RedisHubLifetimeManager<THub>).GetField("_users",BindingFlags.NonPublic|BindingFlags.Instance)??thrownewNullReferenceException("Unable to get RedisHubLifetimeManager._users field");
35
+
varsubscriptionsField=usersField.FieldType.GetField("_subscriptions",BindingFlags.NonPublic|BindingFlags.Instance)??thrownewNullReferenceException("Unable to get RedisHubLifetimeManager._users._subscriptions field");
36
+
varusers=usersField.GetValue(this)??thrownewNullReferenceException("Unable to get RedisHubLifetimeManager._users value");
37
+
varsubscriptions=subscriptionsField.GetValue(users)??thrownewNullReferenceException("Unable to get RedisHubLifetimeManager._users._subscriptions value");
0 commit comments