Inheritance: IMidiPortDetails
Exemplo n.º 1
0
 protected RtMidiPort(RtMidiPortDetails portDetails)
 {
     if (portDetails == null)
     {
         throw new ArgumentNullException("portDetails");
     }
     Details    = portDetails;
     Connection = MidiPortConnectionState.Closed;
 }
Exemplo n.º 2
0
 public RtMidiInput(RtMidiPortDetails portDetails)
     : base(portDetails)
 {
 }
Exemplo n.º 3
0
 protected RtMidiPort(RtMidiPortDetails portDetails)
 {
     if (portDetails == null)
         throw new ArgumentNullException ("portDetails");
     Details = portDetails;
     Connection = MidiPortConnectionState.Closed;
     State = MidiPortDeviceState.Connected; // there is no way to check that...
 }
Exemplo n.º 4
0
 public RtMidiOutput(RtMidiPortDetails portDetails)
     : base(portDetails)
 {
 }