1 write to _protocol
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
238_protocol = protocol ?? throw new ArgumentNullException(nameof(protocol));
10 references to _protocol
Microsoft.AspNetCore.SignalR.Client.Core (10)
HubConnection.cs (10)
506var usedProtocolVersion = _protocol.Version; 507if (statefulReconnectFeature is null && _protocol.IsVersionSupported(1)) 514else if (_protocol.Version < 2) 518Log.DisablingReconnect(_logger, _protocol.Name, _protocol.Version); 525Log.HubProtocol(_logger, _protocol.Name, usedProtocolVersion); 1219_protocol.WriteMessage(hubMessage, connectionState.Connection.Transport.Output); 1492var handshakeRequest = new HandshakeRequestMessage(_protocol.Name, protocolVersion); 1652while (_protocol.TryParseMessage(ref buffer, connectionState, out var message)) 2167_messageBuffer = new MessageBuffer(connection, hubConnection._protocol,