React to SignalR hub protocol change (#10010)
https://github.com/aspnet/AspNetCore/issues/5320
This commit is contained in:
parent
d3400f7cb2
commit
14496c9989
|
|
@ -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;
|
||||
|
||||
/// <inheritdoc />
|
||||
public string Name => ProtocolName;
|
||||
|
|
@ -35,9 +34,6 @@ namespace Microsoft.AspNetCore.Components.Server.BlazorPack
|
|||
/// <inheritdoc />
|
||||
public int Version => ProtocolVersion;
|
||||
|
||||
/// <inheritdoc />
|
||||
public int MinorVersion => ProtocolMinorVersion;
|
||||
|
||||
/// <inheritdoc />
|
||||
public TransferFormat TransferFormat => TransferFormat.Binary;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue