3 implementations of GetProtocol
Microsoft.AspNetCore.SignalR.Core (1)
Internal\DefaultHubProtocolResolver.cs (1)
32public IHubProtocol? GetProtocol(string protocolName, IReadOnlyList<string>? supportedProtocols)
Microsoft.AspNetCore.SignalR.Microbenchmarks (1)
HubConnectionContextBenchmark.cs (1)
93public IHubProtocol GetProtocol(string protocolName, IReadOnlyList<string> supportedProtocols)
Microsoft.AspNetCore.SignalR.Tests (1)
AddSignalRTests.cs (1)
224public IHubProtocol GetProtocol(string protocolName, IReadOnlyList<string> supportedProtocols)
2 references to GetProtocol
Microsoft.AspNetCore.SignalR.Core (1)
HubConnectionContext.cs (1)
543Protocol = protocolResolver.GetProtocol(handshakeRequestMessage.Protocol, supportedProtocols)!;
Microsoft.AspNetCore.SignalR.StackExchangeRedis (1)
Internal\DefaultHubMessageSerializer.cs (1)
19var protocol = hubProtocolResolver.GetProtocol(protocolName, (supportedProtocols as IReadOnlyList<string>) ?? supportedProtocols.ToList());