C# Class Midi.Message

Base class for all MIDI messages.
Show file Open project: jstnryan/midi-dot-net Class Usage Examples

Public Methods

Method Description
MakeTimeShiftedCopy ( float delta ) : Message

Returns a copy of this message, shifted in time by the specified amount.

SendNow ( ) : void

Sends this message immediately.

Protected Methods

Method Description
Message ( float time ) : System

Protected constructor.

Method Details

MakeTimeShiftedCopy() public abstract method

Returns a copy of this message, shifted in time by the specified amount.
public abstract MakeTimeShiftedCopy ( float delta ) : Message
delta float
return Message

Message() protected method

Protected constructor.
protected Message ( float time ) : System
time float The timestamp for this message.
return System

SendNow() public abstract method

Sends this message immediately.
public abstract SendNow ( ) : void
return void