Enum MissedEndOfTrackPolicy
Specifies how reading engine should react on missed
End Of Track
event.
The default is Ignore.Namespace: Melanchall.DryWetMidi.Core
Assembly: Melanchall.DryWetMidi.dll
Syntax
public enum MissedEndOfTrackPolicy : byte
Remarks
Although the End Of Track
event is not optional and therefore missing of it
should be treated as error, you can try to read a track chunk relying on the chunk's size only.
Fields
Name | Description |
---|---|
Abort | Abort reading and throw an MissedEndOfTrackEventException. |
Ignore | Ignore missing of the End Of Track event and try to read a track chunk relying on
the chunk's size. |