Table of Contents

Enum YamlTokenType

Namespace
Cuemon.Runtime.Serialization
Assembly
Cuemon.Core.dll

Defines the various YAML tokens that make up a YAML document.

[Obsolete("All YAML marshalling has been moved to its own assembly; Cuemon.Extensions.YamlDotNet. This member will be removed with next major version.")]
public enum YamlTokenType

Fields

EndArray = 2

The token type is the end of a YAML array.

EndObject = 4

The token type is the end of a YAML object.

None = 0

The token type when YAML is new.

PropertyName = 5

The token type is a YAML property name.

StartArray = 1

The token type is the start of a YAML array.

StartObject = 3

The token type is the start of a YAML object.