BASS.NET API for the Un4seen BASS Audio Library

MidiOutputDeviceSend Method (Byte)

BASS.NET API for the Un4seen BASS Audio Library
Sends a system-exclusive message to the output Device.

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

public bool Send(
	byte[] sysexMessage
)

Parameters

sysexMessage
Type: SystemByte
The byte array containing system-exclusive message data buffer to send.

Return Value

Type: Boolean
on success, else (see LastErrorCode for details).
Remarks

The byte array should normally start with 0xF0 and end with 0xF7 - however, no validity check is performed on this.

The Device must have been opened with the Open method (or check IsOpened) before sending any message.

Examples

private MidiOutputDevice _outDevice = null;
...
_outDevice = new MidiOutputDevice(0);
if ( !_outDevice.Open() )
  Console.WriteLine( "Could not open Midi device!" );

// send a new system-exclusive message to the output device
if (_outDevice.Send(new byte[7] {0xF0, 0x43, 0x75, 0x73, 0x12, 0x00, 0xF7}))
  Console.WriteLine("Error sending system-exclusive message!");
See Also

Reference