1 implementation of GetProtocol
Microsoft.AspNetCore.SignalR.Core (1)
Internal\DefaultHubProtocolResolver.cs (1)
32
public IHubProtocol?
GetProtocol
(string protocolName, IReadOnlyList<string>? supportedProtocols)
2 references to GetProtocol
Microsoft.AspNetCore.SignalR.Core (1)
HubConnectionContext.cs (1)
580
Protocol = protocolResolver.
GetProtocol
(handshakeRequestMessage.Protocol, supportedProtocols)!;
Microsoft.AspNetCore.SignalR.StackExchangeRedis (1)
Internal\DefaultHubMessageSerializer.cs (1)
19
var protocol = hubProtocolResolver.
GetProtocol
(protocolName, (supportedProtocols as IReadOnlyList<string>) ?? supportedProtocols.ToList());