6 references to StreamItemMessage
Microsoft.AspNetCore.Components.Server (1)
src\aspnetcore\src\SignalR\common\Protocols.MessagePack\src\Protocol\MessagePackHubProtocolWorker.cs (1)
156return ApplyHeaders(headers, new StreamItemMessage(invocationId, value));
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
969await SendWithLock(connectionState, new StreamItemMessage(streamId, item), tokenSource.Token).ConfigureAwait(false);
Microsoft.AspNetCore.SignalR.Core (1)
Internal\DefaultHubDispatcher.cs (1)
559var streamItemMessage = new StreamItemMessage(invocationId, null);
Microsoft.AspNetCore.SignalR.Protocols.Json (1)
Protocol\JsonHubProtocol.cs (1)
770return new StreamItemMessage(invocationId, item);
Microsoft.AspNetCore.SignalR.Protocols.MessagePack (1)
Protocol\MessagePackHubProtocolWorker.cs (1)
156return ApplyHeaders(headers, new StreamItemMessage(invocationId, value));
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson (1)
Protocol\NewtonsoftJsonHubProtocol.cs (1)
763return new StreamItemMessage(invocationId, item);