1 write to Error
Microsoft.AspNetCore.SignalR.Common (1)
Protocol\CompletionMessage.cs (1)
44Error = error;
11 references to Error
Microsoft.AspNetCore.Components.Server (2)
src\aspnetcore\src\SignalR\common\Protocols.MessagePack\src\Protocol\MessagePackHubProtocolWorker.cs (2)
528message.Error != null ? ErrorResult : 540writer.Write(message.Error);
Microsoft.AspNetCore.SignalR.Common (3)
Protocol\CompletionMessage.cs (3)
52var errorStr = Error == null ? "<<null>>" : $"\"{Error}\""; 54return $"Completion {{ {nameof(InvocationId)}: \"{InvocationId}\", {nameof(Error)}: {errorStr}{resultField} }}";
Microsoft.AspNetCore.SignalR.Core (4)
Internal\DefaultHubDispatcherLog.cs (1)
90=> ClosingStreamWithBindingError(logger, message.InvocationId, message.Error);
src\aspnetcore\src\SignalR\common\Shared\ClientResultsManager.cs (1)
30tcs.SetException(new HubException(completionMessage.Error));
StreamTracker.cs (2)
81converter.TryComplete(message.HasResult || message.Error == null ? null : new HubException(message.Error));
Microsoft.AspNetCore.SignalR.Protocols.Json (2)
Protocol\JsonHubProtocol.cs (2)
595if (!string.IsNullOrEmpty(message.Error)) 597writer.WriteString(ErrorPropertyNameBytes, message.Error);