Top "Signalr.client" questions

Async signaling library for .NET applications, as well as WindowsPhone applications, to help build real-time, multi-user interactive web applications.

SignalR OnDisconnected - a reliable way to handle "User is Online" for chatroom?

I'm implementing a chat room. So far, so good - users can send messages from their browsers via a JS …

c# signalr signalr-hub signalr.client
SignalR 2.0 .NET console client

I have my server console app: static void Main(string[] args) { string url = "http://localhost:8080"; using (WebApp.Start(url)) { MyHub …

c# asp.net .net signalr signalr.client
SignalR integration in android studio

I use signalR lib in my project. but I was not able to compile libs of https://github.com/SignalR/…

android signalr signalr.client
How to use async/await with hub.On in SignalR client

I have a .Net Windows Service (client) that's communicating with a SignalR Hub (server). Most of the client methods will …

c# .net async-await signalr.client
It's possible signalR client web to connect a server on a different PC?

I have a console application who is the signalR server, on my PC. I have a html page who is …

c# signalr http-status-code-400 signalr.client
SignalR 2 does not generate /signalr/hubs

Here is the page: <script src="~/Scripts/jquery-1.10.2.min.js"></script> <script src="~/Scripts/jquery.…

asp.net-mvc signalr signalr-hub signalr.client
HttpClientException when connecting to working hub from SignalR .NET Client

I have a working SignalR application that allows me to connect multiple JavaScript clients and exchange data. When I tried …

signalr signalr.client
SignalR Client How to Set user when start connection?

Server side: public override Task OnConnected() { var connectionId = Context.ConnectionId; var user = Context.User.Identity.Name; // Context.User is NULL …

javascript c# signalr signalr-hub signalr.client
SignalR + Angular: how to add Bearer token to Http Headers

I made an asp.net core 2.0 SignalR Hub which uses Bearer Token for Authentication. Now I'm a bit lost on …

asp.net angular signalr.client
Best Practices for reconnecting a disconnected SignalR client (JS)

I'd like to improve the resilience of my clientside implementation of a signalR client. Currently, I do this: hub.server.…

signalr signalr.client