Table of Contents

Class ScalarOptions

Namespace
Codebelt.Extensions.YamlDotNet
Assembly
Codebelt.Extensions.YamlDotNet.dll

Configuration options for EmitterExtensions.

public class ScalarOptions : NodeOptions, IParameterObject
Inheritance
Object
ScalarOptions
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.

PropertyInitial Value
StyleYamlDotNet.Core.ScalarStyle.Any
IsPlainImplicittrue
IsQuotedImplicittrue
IsKeyfalse

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.

See Also