Class YamlConverter<T>
- Assembly
- Codebelt.Extensions.YamlDotNet.dll
Converts an object to or from YAML (YAML ain't markup language).
public abstract class YamlConverter<T> : YamlConverter, IYamlTypeConverter
Type Parameters
T
The type of object or value handled by the converter.
- Inheritance
-
ObjectYamlConverter<T>
- Implements
-
IYamlTypeConverter
- Derived
- Inherited Members
Methods
CanConvert(Type)
Determines whether this instance can convert the specified object type.
public override bool CanConvert(Type typeToConvert)
Parameters
typeToConvert
TypeThe System.Type of the object.
Returns
- Boolean
true
if this instance can convert the specified object type; otherwise,false
.
ReadYaml(IParser, Type)
Reads and converts the YAML to type T
.
public abstract T ReadYaml(IParser reader, Type typeToConvert)
Parameters
reader
IParserThe reader to read from.
typeToConvert
TypeThe type to convert.
Returns
- T
The converted value.
WriteYaml(IEmitter, T)
Writes a specified value
as YAML.
public abstract void WriteYaml(IEmitter writer, T value)
Parameters
writer
IEmitterThe writer to write to.
value
TThe value to convert to YAML.