1 write to AllowReconnect
Microsoft.AspNetCore.SignalR.Common (1)
Protocol\CloseMessage.cs (1)
50AllowReconnect = allowReconnect;
11 references to AllowReconnect
Microsoft.AspNetCore.Components.Server (1)
src\SignalR\common\Protocols.MessagePack\src\Protocol\MessagePackHubProtocolWorker.cs (1)
569writer.Write(message.AllowReconnect);
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
1660if (!closeMessage.AllowReconnect)
Microsoft.AspNetCore.SignalR.Common (2)
Protocol\CloseMessage.cs (2)
15/// An empty close message with no error and <see cref="AllowReconnect"/> set to <see langword="false"/>. 30/// Initializes a new instance of the <see cref="CloseMessage"/> class with an optional error message and <see cref="AllowReconnect"/> set to <see langword="false"/>.
Microsoft.AspNetCore.SignalR.Protocols.Json (1)
Protocol\JsonHubProtocol.cs (1)
667if (message.AllowReconnect)
Microsoft.AspNetCore.SignalR.Protocols.MessagePack (1)
Protocol\MessagePackHubProtocolWorker.cs (1)
569writer.Write(message.AllowReconnect);
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson (1)
Protocol\NewtonsoftJsonHubProtocol.cs (1)
659if (message.AllowReconnect)
Microsoft.AspNetCore.SignalR.Tests (4)
HubConnectionHandlerTests.cs (4)
158Assert.False(close.AllowReconnect); 965Assert.False(closeMessage.AllowReconnect); 1028Assert.True(message.AllowReconnect); 2294Assert.True(close.AllowReconnect);