Skip to content

Instantly share code, notes, and snippets.

@peterhpchen
Created April 16, 2014 15:06
Show Gist options
  • Save peterhpchen/10890979 to your computer and use it in GitHub Desktop.
Save peterhpchen/10890979 to your computer and use it in GitHub Desktop.
RTCPeerConnection Demo
using System;
using System.Web;
using Microsoft.AspNet.SignalR;
namespace WebRTC.RTCPeerConnection
{
public class rtcHub : Hub
{
public void Send(string message)
{
// Call the sendMessage method to update clients.
Clients.Others.sendMessage(message);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment