DeviceSelectionResult constructor

DeviceSelectionResult(
  1. String? soundcard,
  2. String? monitor
)

Implementation

DeviceSelectionResult(String? soundcard, String? monitor) {
  this.SoundcardDeviceID = soundcard;
  this.MonitorHandle = monitor;
  this.bitrate = null;
  this.framerate = null;
}