Table of Contents

Class EmitterExtensions

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

Extension methods for the YamlDotNet.Core.IEmitter interface.

public static class EmitterExtensions
Inheritance
Object
EmitterExtensions

Methods

WriteEndArray(IEmitter)

Denotes the end of a YAML array.

public static void WriteEndArray(this IEmitter writer)

Parameters

writer IEmitter

The YamlDotNet.Core.IEmitter to extend.

WriteEndObject(IEmitter)

Denotes the end of a YAML object.

public static void WriteEndObject(this IEmitter writer)

Parameters

writer IEmitter

The YamlDotNet.Core.IEmitter to extend.

WriteObject(IEmitter, Object, YamlFormatterOptions)

Serializes the specified value into a YAML format.

public static void WriteObject(this IEmitter writer, object value, YamlFormatterOptions options)

Parameters

writer IEmitter

The YamlDotNet.Core.IEmitter to extend.

value Object

The System.Object to serialize.

options YamlFormatterOptions

Options to control the conversion behavior.

WriteObject(IEmitter, Object, Type, YamlFormatterOptions)

Serializes the specified value into a YAML format.

public static void WriteObject(this IEmitter writer, object value, Type valueType, YamlFormatterOptions options)

Parameters

writer IEmitter

The YamlDotNet.Core.IEmitter to extend.

value Object

The System.Object to serialize.

valueType Type

The type of the value to convert.

options YamlFormatterOptions

Options to control the conversion behavior.

WritePropertyName(IEmitter, String)

Writes the propertyName of an YAML object.

public static void WritePropertyName(this IEmitter writer, string propertyName)

Parameters

writer IEmitter

The YamlDotNet.Core.IEmitter to extend.

propertyName String

The name of the YAML object.

WriteStartArray(IEmitter)

Writes the beginning of a YAML array.

public static void WriteStartArray(this IEmitter writer)

Parameters

writer IEmitter

The YamlDotNet.Core.IEmitter to extend.

WriteStartObject(IEmitter)

Writes the beginning of a YAML object.

public static void WriteStartObject(this IEmitter writer)

Parameters

writer IEmitter

The YamlDotNet.Core.IEmitter to extend.

WriteString(IEmitter, String, String, Action<ScalarOptions>)

Writes the propertyName and value as part of a name/value pair of an YAML object.

public static void WriteString(this IEmitter writer, string propertyName, string value, Action<ScalarOptions> setup = null)

Parameters

writer IEmitter

The YamlDotNet.Core.IEmitter to extend.

propertyName String

The name of the YAML object.

value String

The value to be written as part of the name/value pair of an YAML object.

setup Action<ScalarOptions>

The ScalarOptions which may be configured.

WriteValue(IEmitter, String, Action<ScalarOptions>)

Writes the value of an YAML object.

public static void WriteValue(this IEmitter writer, string value, Action<ScalarOptions> setup = null)

Parameters

writer IEmitter

The YamlDotNet.Core.IEmitter to extend.

value String

The value to be written as part of the name/value pair of an YAML object.

setup Action<ScalarOptions>

The ScalarOptions which may be configured.