We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3400f7 commit 14496c9Copy full SHA for 14496c9
src/Components/Server/src/BlazorPack/BlazorPackHubProtocol.cs
@@ -27,17 +27,13 @@ internal sealed class BlazorPackHubProtocol : IHubProtocol
27
private const int NonVoidResult = 3;
28
29
private static readonly int ProtocolVersion = 1;
30
- private static readonly int ProtocolMinorVersion = 0;
31
32
/// <inheritdoc />
33
public string Name => ProtocolName;
34
35
36
public int Version => ProtocolVersion;
37
38
- /// <inheritdoc />
39
- public int MinorVersion => ProtocolMinorVersion;
40
-
41
42
public TransferFormat TransferFormat => TransferFormat.Binary;
43
0 commit comments