Microsoft.AspNetCore.SignalR.PersistentConnection.OnRejoiningGroups C# (CSharp) Method

OnRejoiningGroups() protected method

Called when a connection reconnects after a timeout to determine which groups should be rejoined.
protected OnRejoiningGroups ( HttpRequest request, IList groups, string connectionId ) : IList
request HttpRequest 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.
return IList
        protected virtual IList<string> OnRejoiningGroups(HttpRequest request, IList<string> groups, string connectionId)
        {
            return groups;
        }