jamiewest/signalr_core

Client-to-server streaming

ashyr-tm opened this issue · 1 comments

Hi guys.
I want to use stream over a socket, and I found how to receive via the stream using the connection.stream() method, but I could not find how to send via the stream.

I need a method similar to the one used in Javascript.

const subject = new signalR.Subject(); yield connection.send("UploadStream", subject);
https://docs.microsoft.com/en-us/aspnet/core/signalr/streaming?view=aspnetcore-5.0#javascript-client

I will be glad for your help

I also want to know how to do it