2 writes to Item
Microsoft.AspNetCore.SignalR.Common (1)
Protocol\StreamItemMessage.cs (1)
23Item = item;
Microsoft.AspNetCore.SignalR.Core (1)
Internal\DefaultHubDispatcher.cs (1)
563streamItemMessage.Item = enumerator.Current;
9 references to Item
Microsoft.AspNetCore.Components.Server (1)
src\aspnetcore\src\SignalR\common\Protocols.MessagePack\src\Protocol\MessagePackHubProtocolWorker.cs (1)
488WriteArgument(message.Item, ref writer);
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
1466else if (!await irq.StreamItem(streamItem.Item).ConfigureAwait(false))
Microsoft.AspNetCore.SignalR.Common (2)
Protocol\StreamItemMessage.cs (2)
29return $"StreamItem {{ {nameof(InvocationId)}: \"{InvocationId}\", {nameof(Item)}: {Item ?? "<<null>>"} }}";
Microsoft.AspNetCore.SignalR.Core (1)
StreamTracker.cs (1)
56task = converter.WriteToStream(message.Item);
Microsoft.AspNetCore.SignalR.Protocols.Json (2)
Protocol\JsonHubProtocol.cs (2)
630if (message.Item == null) 636SerializeObject(writer, message.Item);
Microsoft.AspNetCore.SignalR.Protocols.MessagePack (1)
Protocol\MessagePackHubProtocolWorker.cs (1)
488WriteArgument(message.Item, ref writer);
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson (1)
Protocol\NewtonsoftJsonHubProtocol.cs (1)
626PayloadSerializer.Serialize(writer, message.Item);