6 implementations of GetParameterTypes
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
2605IReadOnlyList<Type> IInvocationBinder.GetParameterTypes(string methodName)
Microsoft.AspNetCore.SignalR.Core (2)
Internal\HubConnectionBinder.cs (1)
21public IReadOnlyList<Type> GetParameterTypes(string methodName)
src\aspnetcore\src\SignalR\common\Shared\ClientResultsManager.cs (1)
102public IReadOnlyList<Type> GetParameterTypes(string methodName)
Microsoft.AspNetCore.SignalR.Specification.Tests (1)
src\aspnetcore\src\SignalR\common\testassets\Tests.Utils\TestClient.cs (1)
366public IReadOnlyList<Type> GetParameterTypes(string methodName)
Microsoft.AspNetCore.SignalR.StackExchangeRedis (2)
RedisHubLifetimeManager.cs (1)
718public IReadOnlyList<Type> GetParameterTypes(string methodName)
src\aspnetcore\src\SignalR\common\Shared\ClientResultsManager.cs (1)
102public IReadOnlyList<Type> GetParameterTypes(string methodName)
10 references to GetParameterTypes
Microsoft.AspNetCore.Components.Server (2)
src\aspnetcore\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);