C# Class Yaml.Boolean

Class for storing a Yaml Boolean node tag:yaml.org,2002:bool
Inheritance: Scalar
Exibir arquivo Open project: rs-services/RightGridWindowsImplementation

Public Methods

Method Description
Boolean ( ParseStream stream ) : System

Parse boolean

Boolean ( bool val ) : System

New boolean

ToString ( ) : string

To String

Protected Methods

Method Description
Write ( WriteStream stream ) : void

Write to YAML

Method Details

Boolean() public method

Parse boolean
public Boolean ( ParseStream stream ) : System
stream ParseStream
return System

Boolean() public method

New boolean
public Boolean ( bool val ) : System
val bool
return System

ToString() public method

To String
public ToString ( ) : string
return string

Write() protected method

Write to YAML
protected Write ( WriteStream stream ) : void
stream WriteStream
return void