C# 클래스 System.Yaml.YamlNodeManipulator

Implements utility functions to instantiating YamlNode's
파일 보기 프로젝트 열기: jbruening/YamlSerializer-Fork

보호된 메소드들

메소드 설명
map ( ) : YamlMapping

Create a mapping node. Tag is set to be "!!map".

map_tag ( string tag ) : YamlMapping

Create a mapping node.

seq ( ) : YamlSequence

Create a sequence node. Tag is set to be "!!seq".

seq_tag ( string tag ) : YamlSequence

Create a sequence node.

str ( string value ) : YamlScalar

Create a scalar node. Tag is set to be "!!str".

str ( string tag, string value ) : YamlScalar

Create a scalar node.

메소드 상세

map() 보호된 정적인 메소드

Create a mapping node. Tag is set to be "!!map".
protected static map ( ) : YamlMapping
리턴 YamlMapping

map_tag() 보호된 정적인 메소드

Create a mapping node.
protected static map_tag ( string tag ) : YamlMapping
tag string Tag for the mapping.
리턴 YamlMapping

seq() 보호된 정적인 메소드

Create a sequence node. Tag is set to be "!!seq".
protected static seq ( ) : YamlSequence
리턴 YamlSequence

seq_tag() 보호된 정적인 메소드

Create a sequence node.
protected static seq_tag ( string tag ) : YamlSequence
tag string Tag for the seuqnce.
리턴 YamlSequence

str() 보호된 정적인 메소드

Create a scalar node. Tag is set to be "!!str".
protected static str ( string value ) : YamlScalar
value string Value for the scalar node.
리턴 YamlScalar

str() 보호된 정적인 메소드

Create a scalar node.
protected static str ( string tag, string value ) : YamlScalar
tag string Tag for the scalar node.
value string Value for the scalar node.
리턴 YamlScalar