Project Description
A .Net C# interface for www.pubnub.com.
Publish:
pubnub.Channel("Your channel name").Publish(myEvent);
Subscribe:
pubnub.Channel("Your channel name").Subscribe<MyEvent>(DoSomethingWithMyEvent);
See the documentation for more examples, and the Sample project in the source code. To avoid any doubt I have no affiliation with pubnub, I just wrote a C# interface that uses the lower level APIs provided by pubnub.