14 implementations of GetParameterTypes
Microsoft.AspNetCore.Components.Server.Tests (1)
src\SignalR\common\SignalR.Common\test\Internal\Protocol\TestBinder.cs (1)
44public IReadOnlyList<Type> GetParameterTypes(string methodName)
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
2230IReadOnlyList<Type> IInvocationBinder.GetParameterTypes(string methodName)
Microsoft.AspNetCore.SignalR.Common.Tests (2)
Internal\Protocol\CompositeTestBinder.cs (1)
21public IReadOnlyList<Type> GetParameterTypes(string methodName)
Internal\Protocol\TestBinder.cs (1)
44public IReadOnlyList<Type> GetParameterTypes(string methodName)
Microsoft.AspNetCore.SignalR.Core (2)
Internal\HubConnectionBinder.cs (1)
19public IReadOnlyList<Type> GetParameterTypes(string methodName)
src\SignalR\common\Shared\ClientResultsManager.cs (1)
102public IReadOnlyList<Type> GetParameterTypes(string methodName)
Microsoft.AspNetCore.SignalR.Microbenchmarks (1)
TestBinder.cs (1)
41public IReadOnlyList<Type> GetParameterTypes(string methodName)
Microsoft.AspNetCore.SignalR.Specification.Tests (1)
src\SignalR\common\testassets\Tests.Utils\TestClient.cs (1)
345public IReadOnlyList<Type> GetParameterTypes(string methodName)
Microsoft.AspNetCore.SignalR.StackExchangeRedis (2)
RedisHubLifetimeManager.cs (1)
718public IReadOnlyList<Type> GetParameterTypes(string methodName)
src\SignalR\common\Shared\ClientResultsManager.cs (1)
102public IReadOnlyList<Type> GetParameterTypes(string methodName)
Microsoft.AspNetCore.SignalR.Tests (3)
HubConnectionHandlerTests.ClientResult.cs (2)
323public IReadOnlyList<Type> GetParameterTypes(string methodName) 521public IReadOnlyList<Type> GetParameterTypes(string methodName) => new[] { typeof(int) };
Internal\MessageBufferTests.cs (1)
559public IReadOnlyList<Type> GetParameterTypes(string methodName)
Microsoft.AspNetCore.SignalR.Tests.Utils (1)
TestClient.cs (1)
345public IReadOnlyList<Type> GetParameterTypes(string methodName)
11 references to GetParameterTypes
Microsoft.AspNetCore.Components.Server (2)
src\SignalR\common\Protocols.MessagePack\src\Protocol\MessagePackHubProtocolWorker.cs (2)
91var parameterTypes = binder.GetParameterTypes(target); 121var parameterTypes = binder.GetParameterTypes(target);
Microsoft.AspNetCore.SignalR.Protocols.Json (3)
Protocol\JsonHubProtocol.cs (3)
309var paramTypes = binder.GetParameterTypes(target); 364var paramTypes = binder.GetParameterTypes(target); 390var paramTypes = binder.GetParameterTypes(target);
Microsoft.AspNetCore.SignalR.Protocols.MessagePack (2)
Protocol\MessagePackHubProtocolWorker.cs (2)
91var parameterTypes = binder.GetParameterTypes(target); 121var parameterTypes = binder.GetParameterTypes(target);
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson (3)
Protocol\NewtonsoftJsonHubProtocol.cs (3)
294var paramTypes = binder.GetParameterTypes(target); 354var paramTypes = binder.GetParameterTypes(target); 380var paramTypes = binder.GetParameterTypes(target);
Microsoft.AspNetCore.SignalR.Tests (1)
HubConnectionHandlerTests.ClientResult.cs (1)
491invocationBinder.Setup(b => b.GetParameterTypes(It.IsAny<string>())).Returns(new[] { typeof(int) });