Questions tagged [signalr.client]

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

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

SignalR.Client lets you communicate with clients on your website, Windows Console Applications, WPF Applications, and WindowsPhones applications in real time through the best continuous connections available between browser, application and server (websockets between Chrome and IIS8, but long polling between IE9 and IIS7.5)

The source is available on GitHub. and documentation here

879 questions
-1
votes
1 answer

SignalR Private Chat Not Returning Data

I implemented SignalR to my project. But I have problem sending private message. I am sending 'toConnectionID' from page. ChatHub.cs public void LoadPrivateMessages(string toUserName,string toConnectionID) { var chatHub =…
Developer007
  • 49
  • 2
  • 10
-1
votes
1 answer

Can anyone recommend a good tutorial for XAMARIN Forms (3.3/4) integration with SignalR for chat purposes?

It seems that most of the content out there is out of date for XAMARIN with SignalR integration.
-1
votes
1 answer

Please correct me with the below code and clarify my doubts

The input value is posted twice as I use myHub.Invoke(Of String)("Chatter", Input) two places after declaring and in else statement. I don't know whether I can replace the .continuewith block in the below code. Sub Main() Dim connection = New…
Aarthi
  • 7
  • 1
  • 9
-1
votes
1 answer

I don't have ChatHub on my server side. How to add reference of chat hub in signalR from some other application?

Actually i have two projects i want when some activity is performed in my 1st project a notification is shown in my 2nd application both applications are asp mvc4 applications within a single solution.
-2
votes
1 answer

Signal R functionality to send data to UI not working in Angular/ASP.Net Core web API 3.1 application with Azure Active directory authentication

I am creating one application using Signal R functionality to push the data on UI in Angular/ASP .NET Core web API 3.1 application with Azure Active directory user authentication. I am writhing this code in angular application. public DoConnection…
-2
votes
1 answer

Long Polling Connection ID in SignalR

I'm just wondering that in the long polling scenario, if a client will receive a new connection ID when the client reconnects after a timeout (no response from server)?
Toan Nguyen
  • 11,263
  • 5
  • 43
  • 59
-2
votes
1 answer

Signalr-Objc long polling

I am totally new to ios developement/siganlr. what i'm trying to do is connect signalr-objc client to get long-polling feed from .net api. It work fine on javascript: var connection = $.hubConnection(); connection.url =…
-2
votes
1 answer

"Best practice" for cascading SignalR data accesses

I have this code in my client side SignalR JavaScript file: ticker.client.observationArrived = function (eventData) { console.log("Enter observationArrived with %o", eventData.time); var observationId = eventData.observationId; // Use…
Hot Licks
  • 47,103
  • 17
  • 93
  • 151
-3
votes
1 answer

ASp.net, SignalR gridview to show real time data

I'm new to SignalR. I just want to create a simple grid using signalR. I want show real time in grid.
Abc
  • 1
  • 1
  • 1
1 2 3
58
59