public IEnumerable<WebRtcDeviceItem> GetWebRTCDevices()
Return Value
Type: System.Collections.IEnumerable
Collection of plugins.
public IEnumerable<WebRtcDeviceItem> GetWebRTCDevices()
Type: System.Collections.IEnumerable
Collection of plugins.
// get devices var devices = instance.GetWebRTCDevices(); // name of first device string name = ""; if (devices != null) { var devicesList = devices.ToList(); if(devicesList.Count > 0) { name = devicesList[0].Name; } }
Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.