From 14496c9989745c09efe0a08bec579a20606490e9 Mon Sep 17 00:00:00 2001 From: BrennanConroy Date: Tue, 7 May 2019 08:18:12 -0700 Subject: [PATCH] React to SignalR hub protocol change (#10010) https://github.com/aspnet/AspNetCore/issues/5320 --- src/Components/Server/src/BlazorPack/BlazorPackHubProtocol.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Components/Server/src/BlazorPack/BlazorPackHubProtocol.cs b/src/Components/Server/src/BlazorPack/BlazorPackHubProtocol.cs index 668439236e..ea97e65cdc 100644 --- a/src/Components/Server/src/BlazorPack/BlazorPackHubProtocol.cs +++ b/src/Components/Server/src/BlazorPack/BlazorPackHubProtocol.cs @@ -27,7 +27,6 @@ namespace Microsoft.AspNetCore.Components.Server.BlazorPack private const int NonVoidResult = 3; private static readonly int ProtocolVersion = 1; - private static readonly int ProtocolMinorVersion = 0; /// public string Name => ProtocolName; @@ -35,9 +34,6 @@ namespace Microsoft.AspNetCore.Components.Server.BlazorPack /// public int Version => ProtocolVersion; - /// - public int MinorVersion => ProtocolMinorVersion; - /// public TransferFormat TransferFormat => TransferFormat.Binary;