Class EmitterExtensions
- Namespace
- Codebelt.Extensions.YamlDotNet
- Assembly
- Codebelt.Extensions.YamlDotNet.dll
Extension methods for the YamlDotNet.Core.IEmitter interface.
public static class EmitterExtensions
- Inheritance
-
ObjectEmitterExtensions
Methods
WriteEndArray(IEmitter)
Denotes the end of a YAML array.
public static void WriteEndArray(this IEmitter writer)
Parameters
writer
IEmitterThe YamlDotNet.Core.IEmitter to extend.
WriteEndObject(IEmitter)
Denotes the end of a YAML object.
public static void WriteEndObject(this IEmitter writer)
Parameters
writer
IEmitterThe 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
IEmitterThe YamlDotNet.Core.IEmitter to extend.
value
ObjectThe System.Object to serialize.
options
YamlFormatterOptionsOptions 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
IEmitterThe YamlDotNet.Core.IEmitter to extend.
value
ObjectThe System.Object to serialize.
valueType
TypeThe type of the
value
to convert.options
YamlFormatterOptionsOptions 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
IEmitterThe YamlDotNet.Core.IEmitter to extend.
propertyName
StringThe name of the YAML object.
WriteStartArray(IEmitter)
Writes the beginning of a YAML array.
public static void WriteStartArray(this IEmitter writer)
Parameters
writer
IEmitterThe YamlDotNet.Core.IEmitter to extend.
WriteStartObject(IEmitter)
Writes the beginning of a YAML object.
public static void WriteStartObject(this IEmitter writer)
Parameters
writer
IEmitterThe 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
IEmitterThe YamlDotNet.Core.IEmitter to extend.
propertyName
StringThe name of the YAML object.
value
StringThe 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
IEmitterThe YamlDotNet.Core.IEmitter to extend.
value
StringThe value to be written as part of the name/value pair of an YAML object.
setup
Action<ScalarOptions>The ScalarOptions which may be configured.