2 writes to Protocol
Microsoft.AspNetCore.SignalR.Core (1)
HubConnectionContext.cs (1)
653Protocol = 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)
371Protocol.WriteMessage(message, _connectionContext.Transport.Output); 409var buffer = message.GetSerializedMessage(Protocol); 552_connectionContext.Transport.Output.Write(HandshakeProtocol.GetSuccessfulHandshake(Protocol)); 654if (Protocol == null) 662if (!Protocol.IsVersionSupported(handshakeRequestMessage.Version)) 676if ((transferFormatFeature.SupportedFormats & Protocol.TransferFormat) == 0) 679await WriteHandshakeResponseAsync(new HandshakeResponseMessage($"Cannot use the '{Protocol.Name}' protocol on the current transport. The transport does not support '{Protocol.TransferFormat}' transfer format.")); 683transferFormatFeature.ActiveFormat = Protocol.TransferFormat; 686_cachedPingMessage = Protocol.GetMessageBytes(PingMessage.Instance); 709_messageBuffer = new MessageBuffer(_connectionContext, Protocol, _statefulReconnectBufferSize, _logger, _timeProvider); 715Log.HandshakeComplete(_logger, Protocol.Name);
HubConnectionHandler.cs (1)
337var protocol = connection.Protocol;
Microsoft.AspNetCore.SignalR.StackExchangeRedis (2)
RedisHubLifetimeManager.cs (2)
545var protocolName = connection.Protocol.Name; 554connection.Protocol.WriteMessage(completionMessage, memoryBufferWriter);