36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.AspNetCore.SignalR.Internal;
|
|
|
|
namespace Microsoft.AspNetCore.SignalR.Internal
|
|
{
|
|
internal class HubConnectionBinder<THub> : IInvocationBinder where THub : Hub
|
|
{
|
|
private HubDispatcher<THub> _dispatcher;
|
|
private HubConnectionContext _connection;
|
|
|
|
public HubConnectionBinder(HubDispatcher<THub> dispatcher, HubConnectionContext connection)
|
|
{
|
|
_dispatcher = dispatcher;
|
|
_connection = connection;
|
|
}
|
|
|
|
public IReadOnlyList<Type> GetParameterTypes(string methodName)
|
|
{
|
|
return _dispatcher.GetParameterTypes(methodName);
|
|
}
|
|
|
|
public Type GetReturnType(string invocationId)
|
|
{
|
|
return typeof(object);
|
|
}
|
|
|
|
public Type GetStreamItemType(string streamId)
|
|
{
|
|
return _connection.StreamTracker.GetStreamItemType(streamId);
|
|
}
|
|
}
|
|
} |