C# 클래스 YamlDotNet.RepresentationModel.YamlDocument

Represents an YAML document.
파일 보기 프로젝트 열기: aaubry/YamlDotNet 1 사용 예제들

공개 메소드들

메소드 설명
Accept ( IYamlVisitor visitor ) : void

Accepts the specified visitor by calling the appropriate Visit method on it.

YamlDocument ( YamlNode rootNode ) : System

Initializes a new instance of the YamlDocument class.

YamlDocument ( string rootNode ) : System

Initializes a new instance of the YamlDocument class with a single scalar node.

비공개 메소드들

메소드 설명
AssignAnchors ( ) : void
Save ( IEmitter emitter, bool assignAnchors = true ) : void
YamlDocument ( IParser parser ) : System

Initializes a new instance of the YamlDocument class.

메소드 상세

Accept() 공개 메소드

Accepts the specified visitor by calling the appropriate Visit method on it.
public Accept ( IYamlVisitor visitor ) : void
visitor IYamlVisitor /// A . ///
리턴 void

YamlDocument() 공개 메소드

Initializes a new instance of the YamlDocument class.
public YamlDocument ( YamlNode rootNode ) : System
rootNode YamlNode
리턴 System

YamlDocument() 공개 메소드

Initializes a new instance of the YamlDocument class with a single scalar node.
public YamlDocument ( string rootNode ) : System
rootNode string
리턴 System