Likhit
Likhit

Reputation: 809

Listening to a website by a WPF application

I want to make a simple chat application working over the internet. My application first Posts the chat strings to a website. The web site will then send the data to the second person.

I have implemented the send phase, but don't know how I can receive data from the server. What is the best way to listen to a website so that it is capable of receiving data at any time asynchronously?

Upvotes: 0

Views: 158

Answers (1)

Nick Butler
Nick Butler

Reputation: 24383

You could use: SignalR

It's even included in MVC 4

Upvotes: 1

Related Questions