Ejemplo n.º 1
0
 public IRtpTransceiver AddTransceiverOfType(RtpMediaType mediaType, IRtpTransceiverInit init)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 2
0
 public IRtpTransceiver AddTransceiverOfType(RtpMediaType rtpMediaType) => new PlatformRtpTransceiver(_peerConnection.AddTransceiver(rtpMediaType.ToPlatformNative()));
Ejemplo n.º 3
0
 public IRtpTransceiver AddTransceiverOfType(RtpMediaType rtpMediaType, IRtpTransceiverInit transceiverInit) => new PlatformRtpTransceiver(
     _peerConnection.AddTransceiver(rtpMediaType.ToPlatformNative(), transceiverInit.ToPlatformNative <RtpTransceiver.RtpTransceiverInit>()));
 public static RTCRtpMediaType ToPlatformNative(this RtpMediaType nativePort) => (RTCRtpMediaType)nativePort;