SignalR.PersistentConnection.OnReconnectedAsync C# (CSharp) 메소드

OnReconnectedAsync() 보호된 메소드

Called when a connection reconnects after a timeout.
protected OnReconnectedAsync ( IRequest request, IEnumerable groups, string connectionId ) : Task
request IRequest The for the current connection.
groups IEnumerable The groups the calling connection is a part of.
connectionId string The id of the re-connecting client.
리턴 Task
        protected virtual Task OnReconnectedAsync(IRequest request, IEnumerable<string> groups, string connectionId)
        {
            return TaskAsyncHelper.Empty;
        }