mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-29 00:00:50 +02:00
18 lines
625 B
C#
18 lines
625 B
C#
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.md in the project root for license information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNet.SignalR.Infrastructure;
|
|
|
|
namespace Microsoft.AspNet.SignalR.Hubs
|
|
{
|
|
public class ConnectionIdProxy : SignalProxy
|
|
{
|
|
public ConnectionIdProxy(Func<string, ClientHubInvocation, IList<string>, Task> send, string signal, string hubName, params string[] exclude) :
|
|
base(send, signal, hubName, PrefixHelper.HubConnectionIdPrefix, exclude)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|