csharp RTCPeerConnection演示

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp RTCPeerConnection演示相关的知识,希望对你有一定的参考价值。

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);
        }
    }
}

以上是关于csharp RTCPeerConnection演示的主要内容,如果未能解决你的问题,请参考以下文章

iOS 上的 webRTC:无法发送 SDP 应答,RTCPeerConnection.setRemoteDescription() 失败

html RTCPeerConnection简单演示

WebRTC的RTCPeerConnection()原理探析

当不同网络上的对等点时,RTCPeerConnection 失败

RTCPeerConnection 不是构造函数,在 Firefox 和 Safari 中

实例化 RTCPeerconnection 对象后不执行 onaddstream 方法