2 instantiations of RawResult
Microsoft.AspNetCore.Components.Server (1)
src\aspnetcore\src\SignalR\common\Protocols.MessagePack\src\Protocol\MessagePackHubProtocolWorker.cs (1)
187result = new RawResult(reader.ReadRaw());
Microsoft.AspNetCore.SignalR.Protocols.Json (1)
Protocol\JsonHubProtocol.cs (1)
825return new RawResult(sequence);
5 references to RawResult
Microsoft.AspNetCore.Components.Server (2)
src\aspnetcore\src\SignalR\common\Protocols.MessagePack\src\Protocol\MessagePackHubProtocolWorker.cs (2)
185if (itemType == typeof(RawResult)) 497else if (argument is RawResult result)
Microsoft.AspNetCore.SignalR.Core (1)
HubLifetimeManager.cs (1)
167/// <param name="type">The type the connection is expected to send. Or <see cref="RawResult"/> if the result is intended for another server.</param>
Microsoft.AspNetCore.SignalR.Protocols.Json (2)
Protocol\JsonHubProtocol.cs (2)
608if (message.Result is RawResult result) 816if (type == typeof(RawResult))