Event model produced by the YAML parser and consumed by the emitter.
AnchorAliasRepresents an alias event.DocumentEndRepresents a document end event.DocumentStartRepresents a document start event.MappingEndRepresents a mapping end event.MappingStartRepresents a mapping start event.NodeEventContains the behavior that is common between node events.ParsingEventBase class for parsing events.ScalarRepresents a scalar event.SequenceEndRepresents a sequence end event.SequenceStartRepresents a sequence start event.StreamEndRepresents a stream end event.StreamStartRepresents a stream start event.SharpYaml's low-level parser produces a stream of parsing events (for example stream/document start and end, mappings, sequences, and scalars). These types are useful when you want to process YAML without building a DOM or mapping to .NET objects.