Microsoft.AspNet.SignalR.PersistentConnection.OnRejoiningGroups C# (CSharp) Метод

OnRejoiningGroups() защищенный Метод

Called when a connection reconnects after a timeout to determine which groups should be rejoined.
protected OnRejoiningGroups ( IRequest request, IList groups, string connectionId ) : IList
request IRequest The for the current connection.
groups IList The groups the calling connection claims to be part of.
connectionId string The id of the reconnecting client.
Результат IList
        protected virtual IList<string> OnRejoiningGroups(IRequest request, IList<string> groups, string connectionId)
        {
            return groups;
        }