Class ScalarOptions
- Namespace
- Codebelt.Extensions.YamlDotNet
- Assembly
- Codebelt.Extensions.YamlDotNet.dll
Configuration options for EmitterExtensions.
public class ScalarOptions : NodeOptions, IParameterObject
- Inheritance
-
ObjectScalarOptions
- Implements
- Inherited Members
Constructors
ScalarOptions()
Initializes a new instance of the ScalarOptions class.
public ScalarOptions()
Remarks
The following table shows the initial property values for an instance of ScalarOptions.
Property | Initial Value |
---|---|
Style | YamlDotNet.Core.ScalarStyle.Any |
IsPlainImplicit | true |
IsQuotedImplicit | true |
IsKey | false |
Properties
IsKey
Gets or sets a value indicating whether this scalar event is a key
public bool IsKey { get; set; }
Property Value
- Boolean
true
if this scalar event is a key; otherwise,false
.
IsPlainImplicit
Gets or sets a value indicating whether the tag is optional for the plain style.
public bool IsPlainImplicit { get; set; }
Property Value
- Boolean
true
if tag is optional for the plain style; otherwise,false
.
IsQuotedImplicit
Gets or sets a value indicating whether the tag is optional for any non-plain style.
public bool IsQuotedImplicit { get; set; }
Property Value
- Boolean
true
if tag is optional for any non-plain style; otherwise,false
.
Style
Gets or sets the style of the scalar.
public ScalarStyle Style { get; set; }
Property Value
- ScalarStyle
The style of the scalar.