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