1 write to _protocol
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
266_protocol = protocol ?? throw new ArgumentNullException(nameof(protocol));
10 references to _protocol
Microsoft.AspNetCore.SignalR.Client.Core (10)
HubConnection.cs (10)
536var usedProtocolVersion = _protocol.Version; 537if (statefulReconnectFeature is null && _protocol.IsVersionSupported(1)) 544else if (_protocol.Version < 2) 548Log.DisablingReconnect(_logger, _protocol.Name, _protocol.Version); 555Log.HubProtocol(_logger, _protocol.Name, usedProtocolVersion); 1527_protocol.WriteMessage(hubMessage, connectionState.Connection.Transport.Output); 1804var handshakeRequest = new HandshakeRequestMessage(_protocol.Name, protocolVersion); 1964while (_protocol.TryParseMessage(ref buffer, connectionState, out var message)) 2460_messageBuffer = new MessageBuffer(connection, hubConnection._protocol,