2 writes to Protocol
Microsoft.AspNetCore.SignalR.Core (1)
HubConnectionContext.cs (1)
657Protocol = protocolResolver.GetProtocol(handshakeRequestMessage.Protocol, supportedProtocols)!;
Microsoft.AspNetCore.SignalR.Specification.Tests (1)
src\aspnetcore\src\SignalR\common\testassets\Tests.Utils\HubConnectionContextUtils.cs (1)
26Protocol = protocol ?? new JsonHubProtocol(),
15 references to Protocol
Microsoft.AspNetCore.SignalR.Core (13)
HubConnectionContext.cs (12)
375Protocol.WriteMessage(message, _connectionContext.Transport.Output); 413var buffer = message.GetSerializedMessage(Protocol); 556_connectionContext.Transport.Output.Write(HandshakeProtocol.GetSuccessfulHandshake(Protocol)); 658if (Protocol == null) 666if (!Protocol.IsVersionSupported(handshakeRequestMessage.Version)) 680if ((transferFormatFeature.SupportedFormats & Protocol.TransferFormat) == 0) 683await WriteHandshakeResponseAsync(new HandshakeResponseMessage($"Cannot use the '{Protocol.Name}' protocol on the current transport. The transport does not support '{Protocol.TransferFormat}' transfer format.")); 687transferFormatFeature.ActiveFormat = Protocol.TransferFormat; 690_cachedPingMessage = Protocol.GetMessageBytes(PingMessage.Instance); 713_messageBuffer = new MessageBuffer(_connectionContext, Protocol, _statefulReconnectBufferSize, _logger, _timeProvider); 719Log.HandshakeComplete(_logger, Protocol.Name);
HubConnectionHandler.cs (1)
483var protocol = connection.Protocol;
Microsoft.AspNetCore.SignalR.StackExchangeRedis (2)
RedisHubLifetimeManager.cs (2)
545var protocolName = connection.Protocol.Name; 554connection.Protocol.WriteMessage(completionMessage, memoryBufferWriter);