Question How to pass binary data without Base64 conversion via SignalR

palash

New member
Joined
Jun 6, 2020
Messages
1
Programming Experience
10+
I want to pass binary data without Base64 conversion via SignalR in .NET framework 4.52. As converting to Base64 increase the size of the data and it will give extra load to system. The server is C# application and client is javascript.
 
All data is passed in binary form so, if you first convert to base-64 text, that just needs to be converted back to binary form for transmission. If you show us how you are currently doing it and what you consider your best attempt to solve the problem, we can tell you what you're doing wrong and how to go about fixing it. ALWAYS show us the relevant code.
 
Back
Top Bottom