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