4 instantiations of RawResult
Microsoft.AspNetCore.Components.Server (1)
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);
Microsoft.AspNetCore.SignalR.Protocols.MessagePack (1)
Protocol\MessagePackHubProtocolWorker.cs (1)
187result = new RawResult(reader.ReadRaw());
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson (1)
Protocol\NewtonsoftJsonHubProtocol.cs (1)
947return new RawResult(new ReadOnlySequence<byte>(strm.ToArray()));
15 references to RawResult
Microsoft.AspNetCore.Components.Server (2)
src\SignalR\common\Protocols.MessagePack\src\Protocol\MessagePackHubProtocolWorker.cs (2)
185if (itemType == typeof(RawResult)) 497else if (argument is RawResult result)
Microsoft.AspNetCore.SignalR.Common.Tests (2)
Internal\Protocol\JsonHubProtocolTestsBase.cs (1)
439var binder = new TestBinder(null, typeof(RawResult));
Internal\Protocol\MessagePackHubProtocolTests.cs (1)
219var binder = new TestBinder(null, typeof(RawResult));
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))
Microsoft.AspNetCore.SignalR.Protocols.MessagePack (2)
Protocol\MessagePackHubProtocolWorker.cs (2)
185if (itemType == typeof(RawResult)) 497else if (argument is RawResult result)
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson (4)
Protocol\NewtonsoftJsonHubProtocol.cs (4)
227if (returnType == typeof(RawResult)) 431if (returnType == typeof(RawResult)) 602if (message.Result is RawResult result) 937private static RawResult GetRawResult(JToken token)
Microsoft.AspNetCore.SignalR.StackExchangeRedis (2)
RedisHubLifetimeManager.cs (2)
543(typeof(RawResult), connection.ConnectionId, null!, async (_, completionMessage) => 725return typeof(RawResult);