Xeno-rat
Loading...
Searching...
No Matches
NAudio.Midi.SequencerSpecificEvent Class Reference

Represents a Sequencer Specific event. More...

Inheritance diagram for NAudio.Midi.SequencerSpecificEvent:
Collaboration diagram for NAudio.Midi.SequencerSpecificEvent:

Public Member Functions

 SequencerSpecificEvent (BinaryReader br, int length)
 Reads a new sequencer specific event from a MIDI stream.
 
 SequencerSpecificEvent (byte[] data, long absoluteTime)
 Creates a new Sequencer Specific event.
 
override MidiEvent Clone ()
 Clones the current MidiEvent and returns a new instance of SequencerSpecificEvent with the same data and absolute time.
 
override string ToString ()
 Returns a string representation of the object.
 
override void Export (ref long absoluteTime, BinaryWriter writer)
 Exports the data to a binary writer, updating the absoluteTime and writing the data.
 
- Public Member Functions inherited from NAudio.Midi.MetaEvent
 MetaEvent (MetaEventType metaEventType, int metaDataLength, long absoluteTime)
 Custom constructor for use by derived types, who will manage the data themselves.
 
override string ToString ()
 Returns a string representation of the object, combining the AbsoluteTime and metaEvent properties.
 
- Public Member Functions inherited from NAudio.Midi.MidiEvent
virtual int GetAsShortMessage ()
 Returns the short message value calculated based on the channel and command code.
 
 MidiEvent (long absoluteTime, int channel, MidiCommandCode commandCode)
 Creates a MIDI event with specified parameters.
 
override string ToString ()
 Returns a string representation of the current Midi event.
 

Properties

byte[] Data [get, set]
 The contents of this sequencer specific.
 
- Properties inherited from NAudio.Midi.MetaEvent
MetaEventType MetaEventType [get]
 Gets the type of this meta event.
 
- Properties inherited from NAudio.Midi.MidiEvent
virtual int Channel [get, set]
 The MIDI Channel Number for this event (1-16)
 
int DeltaTime [get]
 The Delta time for this event.
 
long AbsoluteTime [get, set]
 The absolute time for this event.
 
MidiCommandCode CommandCode [get]
 The command code for this event.
 

Private Attributes

byte[] data
 

Additional Inherited Members

- Static Public Member Functions inherited from NAudio.Midi.MetaEvent
static MetaEvent ReadMetaEvent (BinaryReader br)
 Reads a meta event from the provided BinaryReader and returns the corresponding MetaEvent object.
 
- Static Public Member Functions inherited from NAudio.Midi.MidiEvent
static MidiEvent FromRawMessage (int rawMessage)
 Converts a raw MIDI message to a MidiEvent object.
 
static MidiEvent ReadNextEvent (BinaryReader br, MidiEvent previous)
 Reads the next MIDI event from the BinaryReader and returns the corresponding MidiEvent.
 
static bool IsNoteOff (MidiEvent midiEvent)
 Checks if the given MIDI event represents a Note Off message.
 
static bool IsNoteOn (MidiEvent midiEvent)
 Checks if the provided MIDI event is a Note On event and returns true if the velocity is greater than 0.
 
static bool IsEndTrack (MidiEvent midiEvent)
 Checks if the provided MIDI event is an end track event.
 
static int ReadVarInt (BinaryReader br)
 Reads a variable-length encoded integer from the provided BinaryReader and returns the result.
 
static void WriteVarInt (BinaryWriter writer, int value)
 Writes a variable-length encoded integer to the specified BinaryWriter.
 
- Protected Member Functions inherited from NAudio.Midi.MetaEvent
 MetaEvent ()
 Empty constructor.
 
- Protected Member Functions inherited from NAudio.Midi.MidiEvent
 MidiEvent ()
 Default constructor.
 

Detailed Description

Represents a Sequencer Specific event.

Constructor & Destructor Documentation

◆ SequencerSpecificEvent() [1/2]

NAudio.Midi.SequencerSpecificEvent.SequencerSpecificEvent ( BinaryReader br,
int length )
inline

Reads a new sequencer specific event from a MIDI stream.

Parameters
brThe MIDI stream
lengthThe data length

◆ SequencerSpecificEvent() [2/2]

NAudio.Midi.SequencerSpecificEvent.SequencerSpecificEvent ( byte[] data,
long absoluteTime )
inline

Creates a new Sequencer Specific event.

Parameters
dataThe sequencer specific data
absoluteTimeAbsolute time of this event

Member Function Documentation

◆ Clone()

override MidiEvent NAudio.Midi.SequencerSpecificEvent.Clone ( )
virtual

Clones the current MidiEvent and returns a new instance of SequencerSpecificEvent with the same data and absolute time.

Returns
A new instance of SequencerSpecificEvent with the same data and absolute time as the current MidiEvent.

Reimplemented from NAudio.Midi.MetaEvent.

◆ Export()

override void NAudio.Midi.SequencerSpecificEvent.Export ( ref long absoluteTime,
BinaryWriter writer )
inlinevirtual

Exports the data to a binary writer, updating the absoluteTime and writing the data.

Parameters
absoluteTimeThe reference to the absolute time.
writerThe binary writer to which the data is exported.

This method updates the absoluteTime and writes the data to the specified binary writer.

Reimplemented from NAudio.Midi.MetaEvent.

◆ ToString()

override string NAudio.Midi.SequencerSpecificEvent.ToString ( )
inline

Returns a string representation of the object.

Returns
A string containing the hexadecimal representation of the data array elements concatenated with a space.

This method overrides the base ToString method and appends the hexadecimal representation of each element in the data array to the string builder. The resulting string is then returned after removing the trailing space.

Member Data Documentation

◆ data

byte [] NAudio.Midi.SequencerSpecificEvent.data
private

Property Documentation

◆ Data

byte [] NAudio.Midi.SequencerSpecificEvent.Data
getset

The contents of this sequencer specific.


The documentation for this class was generated from the following file: