1 write to Error
Microsoft.AspNetCore.SignalR.Common (1)
Protocol\CloseMessage.cs (1)
49Error = error;
6 references to Error
Microsoft.AspNetCore.Components.Server (2)
src\aspnetcore\src\SignalR\common\Protocols.MessagePack\src\Protocol\MessagePackHubProtocolWorker.cs (2)
560if (string.IsNullOrEmpty(message.Error)) 566writer.Write(message.Error);
Microsoft.AspNetCore.SignalR.Core (2)
HubConnectionHandler.cs (2)
209if (connection.CloseMessage.Error is not null) 212disconnectException = new HubException(connection.CloseMessage.Error);
Microsoft.AspNetCore.SignalR.Protocols.Json (2)
Protocol\JsonHubProtocol.cs (2)
662if (message.Error != null) 664writer.WriteString(ErrorPropertyNameBytes, message.Error);