Table of Contents

Class YamlConverter<T>

Namespace
Codebelt.Extensions.YamlDotNet.Converters
Assembly
Codebelt.Extensions.YamlDotNet.dll

Converts an object to or from YAML (YAML ain't markup language).

public abstract class YamlConverter<T> : YamlConverter, IYamlTypeConverter

Type Parameters

T

The type of object or value handled by the converter.

Inheritance
Object
YamlConverter<T>
Implements
IYamlTypeConverter
Derived
Inherited Members

Methods

CanConvert(Type)

Determines whether this instance can convert the specified object type.

public override bool CanConvert(Type typeToConvert)

Parameters

typeToConvert Type

The System.Type of the object.

Returns

Boolean

true if this instance can convert the specified object type; otherwise, false.

ReadYaml(IParser, Type)

Reads and converts the YAML to type T.

public abstract T ReadYaml(IParser reader, Type typeToConvert)

Parameters

reader IParser

The reader to read from.

typeToConvert Type

The type to convert.

Returns

T

The converted value.

WriteYaml(IEmitter, T)

Writes a specified value as YAML.

public abstract void WriteYaml(IEmitter writer, T value)

Parameters

writer IEmitter

The writer to write to.

value T

The value to convert to YAML.

See Also