Table of Contents

Class YamlFormatter

Namespace
Codebelt.Extensions.YamlDotNet.Formatters
Assembly
Codebelt.Extensions.YamlDotNet.dll

Serializes and deserializes an object, in YAML format.

public class YamlFormatter : StreamFormatter<YamlFormatterOptions>, IConfigurable<YamlFormatterOptions>
Inheritance
Object
Formatter<Stream>
YamlFormatter
Implements
Inherited Members

Constructors

YamlFormatter()

Initializes a new instance of the YamlFormatter class.

public YamlFormatter()

YamlFormatter(YamlFormatterOptions)

Initializes a new instance of the YamlFormatter class.

public YamlFormatter(YamlFormatterOptions options)

Parameters

options YamlFormatterOptions

The configured YamlFormatterOptions.

YamlFormatter(Action<YamlFormatterOptions>)

Initializes a new instance of the YamlFormatter class.

public YamlFormatter(Action<YamlFormatterOptions> setup)

Parameters

setup Action<YamlFormatterOptions>

The YamlFormatterOptions which need to be configured.

Methods

Deserialize(Stream, Action<IDeserializer, Parser>)

Deserializes the specified value using delegate deserializerFactory.

public void Deserialize(Stream value, Action<IDeserializer, Parser> deserializerFactory)

Parameters

value Stream

The object from which to deserialize the object graph.

deserializerFactory Action<IDeserializer, Parser>

The delegate that performs the deserialization.

Exceptions

System.ArgumentNullException

value is null -or- deserializerFactory is null.

Deserialize(Stream, Type)

Deserializes the specified value into an object of objectType.

public override object Deserialize(Stream value, Type objectType)

Parameters

value Stream

The object from which to deserialize the object graph.

objectType Type

The type of the deserialized object.

Returns

Object

An object of objectType.

Exceptions

System.ArgumentNullException

value is null -or- objectType is null.

DeserializeObject(Stream, Action<IDeserializer, Parser>, YamlFormatterOptions)

Deserializes the specified value using delegate deserializerFactory.

public static void DeserializeObject(Stream value, Action<IDeserializer, Parser> deserializerFactory, YamlFormatterOptions options)

Parameters

value Stream

The string from which to deserialize the object graph.

deserializerFactory Action<IDeserializer, Parser>

The delegate that performs the deserialization.

options YamlFormatterOptions

The configured YamlFormatterOptions.

DeserializeObject(Stream, Action<IDeserializer, Parser>, Action<YamlFormatterOptions>)

Deserializes the specified value using delegate deserializerFactory.

public static void DeserializeObject(Stream value, Action<IDeserializer, Parser> deserializerFactory, Action<YamlFormatterOptions> setup = null)

Parameters

value Stream

The string from which to deserialize the object graph.

deserializerFactory Action<IDeserializer, Parser>

The delegate that performs the deserialization.

setup Action<YamlFormatterOptions>

The YamlFormatterOptions which may be configured.

Serialize(Object, Type)

Serializes the specified source to an object of System.IO.Stream.

public override Stream Serialize(object source, Type objectType)

Parameters

source Object

The object to serialize to YAML format.

objectType Type

The type of the object to serialize.

Returns

Stream

A stream of the serialized source.

Exceptions

System.ArgumentNullException

source is null -or- objectType is null.

See Also