BASS.NET API for the Un4seen BASS Audio Library

MidiInputDeviceStop Method

BASS.NET API for the Un4seen BASS Audio Library
Stops 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 Stop()

Return Value

Type: Boolean
on success, else .
Remarks

The Device must have been opened and started to record messages. You might use the IsOpened and IsStarted properties to check this. Call Open to open the Midi input device and Start to start recording messages. After you have called this method the Device is no longer recording and receiving any ShortMessage or 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 start recording messages again call the Start 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