Microsoft.AspNetCore.SignalR.PersistentConnection.OnRejoiningGroups C# (CSharp) 메소드

OnRejoiningGroups() 보호된 메소드

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.
리턴 IList
        protected virtual IList<string> OnRejoiningGroups(HttpRequest request, IList<string> groups, string connectionId)
        {
            return groups;
        }