mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
imported signalr 1.1.3 into NzbDrone.
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.md in the project root for license information.
|
||||
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Microsoft.AspNet.SignalR.Hubs
|
||||
{
|
||||
internal class HubInvokerContext : IHubIncomingInvokerContext
|
||||
{
|
||||
public HubInvokerContext(IHub hub, StateChangeTracker tracker, MethodDescriptor methodDescriptor, IList<object> args)
|
||||
{
|
||||
Hub = hub;
|
||||
MethodDescriptor = methodDescriptor;
|
||||
Args = args;
|
||||
StateTracker = tracker;
|
||||
}
|
||||
|
||||
public IHub Hub
|
||||
{
|
||||
get;
|
||||
private set;
|
||||
}
|
||||
|
||||
public MethodDescriptor MethodDescriptor
|
||||
{
|
||||
get;
|
||||
private set;
|
||||
}
|
||||
|
||||
public IList<object> Args
|
||||
{
|
||||
get;
|
||||
private set;
|
||||
}
|
||||
|
||||
|
||||
public StateChangeTracker StateTracker
|
||||
{
|
||||
get;
|
||||
private set;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user