Class SysexReceivedEventArgs
Provides data for the SysexReceived event.
public class SysexReceivedEventArgs : EventArgs
- Inheritance
-
SysexReceivedEventArgs
- Inherited Members
Constructors
SysexReceivedEventArgs(byte, byte[])
Initializes a new instance of the SysexReceivedEventArgs class using the specified feature ID and optional data payload.
public SysexReceivedEventArgs(byte feature, byte[] args)
Parameters
feature
byteThe identifier of the system exclusive (SysEx) feature received in the message event.
args
byte[]The data payload received together with the SysEx message.
Properties
Args
Gets the data payload received together with the SysEx message.
public byte[] Args { get; }
Property Value
- byte[]
Feature
Gets the identifier of the system exclusive (SysEx) feature received in the message event.
public byte Feature { get; }