Class YamlConverter
- Assembly
- Codebelt.Extensions.YamlDotNet.dll
Converts an object to and from YAML (YAML ain't markup language).
public abstract class YamlConverter : IYamlTypeConverter
- Inheritance
-
ObjectYamlConverter
- Implements
-
IYamlTypeConverter
- Derived
Properties
Formatter
Gets or sets the YamlFormatter associated with this instance.
public YamlFormatter Formatter { get; set; }
Property Value
- YamlFormatter
The YamlFormatter associated with this instance.
Methods
CanConvert(Type)
Determines whether this instance can convert the specified object type.
public abstract 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
.
Explicit Interface Implementations
IYamlTypeConverter.Accepts(Type)
bool IYamlTypeConverter.Accepts(Type type)
Parameters
type
Type
Returns
- Boolean
IYamlTypeConverter.ReadYaml(IParser, Type, ObjectDeserializer)
object IYamlTypeConverter.ReadYaml(IParser parser, Type type, ObjectDeserializer rootDeserializer)
Parameters
parser
IParsertype
TyperootDeserializer
ObjectDeserializer
Returns
- Object
IYamlTypeConverter.WriteYaml(IEmitter, Object, Type, ObjectSerializer)
void IYamlTypeConverter.WriteYaml(IEmitter emitter, object value, Type type, ObjectSerializer serializer)
Parameters
emitter
IEmittervalue
Objecttype
Typeserializer
ObjectSerializer