Class YamlFormatter
- Assembly
- Codebelt.Extensions.YamlDotNet.dll
Serializes and deserializes an object, in YAML format.
public class YamlFormatter : StreamFormatter<YamlFormatterOptions>, IConfigurable<YamlFormatterOptions>
- Inheritance
-
ObjectFormatter<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
YamlFormatterOptionsThe 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
StreamThe 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
StreamThe object from which to deserialize the object graph.
objectType
TypeThe 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
StreamThe string from which to deserialize the object graph.
deserializerFactory
Action<IDeserializer, Parser>The delegate that performs the deserialization.
options
YamlFormatterOptionsThe 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
StreamThe 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
ObjectThe object to serialize to YAML format.
objectType
TypeThe type of the object to serialize.
Returns
- Stream
A stream of the serialized
source
.
Exceptions
- System.ArgumentNullException
source
is null -or-objectType
is null.