BASS.NET API for the Un4seen BASS Audio Library

MidiInputDeviceStart Method

BASS.NET API for the Un4seen BASS Audio Library
Starts recording messages from the Midi input device using the DeviceID.

Namespace:  radio42.Multimedia.Midi
Assembly:  Bass.Net (in Bass.Net.dll) Version: 2.4.17.5
Syntax

public bool Start()

Return Value

Type: Boolean
on success, else .
Remarks

The Device must have been opened to record messages. You might use the IsOpened property to check this. Call Open to open the Midi input device. After you have called this method the Device is being used, meaning it will receive any ShortMessage and SysExMessage.

When you have subscribed to the MessageReceived event you'll get notified when a new message was received from the Midi input device. To stop recording messages call the Stop method.

Once you're done with the device call Close to close the device and release it.

Examples

Opens the Midi input device #0:
private MidiInputDevice _inDevice;
...
_inDevice = new MidiInputDevice(0);
_inDevice.MessageReceived += new MidiMessageEventHandler(InDevice_MessageReceived);
if (_inDevice.Open())
{
  if (!_inDevice.Start())
    MessageBox.Show(this, "Midi device could not be started! Error " + _inDevice.LastErrorCode.ToString(), "Midi Error");
}
else
  MessageBox.Show(this, "Midi device could not be opened! Error " + _inDevice.LastErrorCode.ToString(), "Midi Error");
...
// when done
if (_inDevice.IsStarted)
  _inDevice.Stop();
if (_inDevice.IsOpened)
  _inDevice.Close();
...
private void InDevice_MessageReceived(object sender, MidiMessageEventArgs e)
{
  if (e.IsShortMessage)
  {
    Console.WriteLine("{0} : {1}", e.ShortMessage.ID, e.ShortMessage.ToString());
  }
  else if (e.IsSysExMessage)
  {
    Console.WriteLine("{0} : {1}", e.SysExMessage.ID, e.SysExMessage.ToString());
  }
}
See Also

Reference