4 implementations of Version
Microsoft.AspNetCore.Components.Server (1)
BlazorPack\BlazorPackHubProtocol.cs (1)
27public int Version => ProtocolVersion;
Microsoft.AspNetCore.SignalR.Protocols.Json (1)
Protocol\JsonHubProtocol.cs (1)
77public int Version => ProtocolVersion;
Microsoft.AspNetCore.SignalR.Protocols.MessagePack (1)
Protocol\MessagePackHubProtocol.cs (1)
30public int Version => ProtocolVersion;
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson (1)
Protocol\NewtonsoftJsonHubProtocol.cs (1)
67public int Version => ProtocolVersion;
4 references to Version
Microsoft.AspNetCore.SignalR.Client.Core (3)
HubConnection.cs (3)
506var usedProtocolVersion = _protocol.Version; 514else if (_protocol.Version < 2) 518Log.DisablingReconnect(_logger, _protocol.Name, _protocol.Version);
Microsoft.AspNetCore.SignalR.Specification.Tests (1)
src\aspnetcore\src\SignalR\common\testassets\Tests.Utils\TestClient.cs (1)
355HandshakeProtocol.WriteRequestMessage(new HandshakeRequestMessage(_protocol.Name, _protocol.Version), memoryBufferWriter);