Table of Contents

Class YamlConverter

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

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

public abstract class YamlConverter : IYamlTypeConverter
Inheritance
Object
YamlConverter
Implements
IYamlTypeConverter
Derived

Properties

Formatter

Gets or sets the YamlFormatter associated with this instance.

public YamlFormatter Formatter { get; set; }

Property Value

YamlFormatter

The YamlFormatter associated with this instance.

Methods

CanConvert(Type)

Determines whether this instance can convert the specified object type.

public abstract 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.

Explicit Interface Implementations

IYamlTypeConverter.Accepts(Type)

bool IYamlTypeConverter.Accepts(Type type)

Parameters

type Type

Returns

Boolean

IYamlTypeConverter.ReadYaml(IParser, Type, ObjectDeserializer)

object IYamlTypeConverter.ReadYaml(IParser parser, Type type, ObjectDeserializer rootDeserializer)

Parameters

parser IParser
type Type
rootDeserializer ObjectDeserializer

Returns

Object

IYamlTypeConverter.WriteYaml(IEmitter, Object, Type, ObjectSerializer)

void IYamlTypeConverter.WriteYaml(IEmitter emitter, object value, Type type, ObjectSerializer serializer)

Parameters

emitter IEmitter
value Object
type Type
serializer ObjectSerializer