C# 클래스 YamlDotNet.RepresentationModel.DocumentLoadingState

Manages the state of a YamlDocument while it is loading.
파일 보기 프로젝트 열기: aaubry/YamlDotNet 1 사용 예제들

공개 메소드들

메소드 설명
AddAnchor ( YamlNode node ) : void

Adds the specified node to the anchor list.

AddNodeWithUnresolvedAliases ( YamlNode node ) : void

Adds the specified node to the collection of nodes with unresolved aliases.

GetNode ( string anchor, bool throwException, YamlDotNet.Core.Mark start, YamlDotNet.Core.Mark end ) : YamlNode

Gets the node with the specified anchor.

ResolveAliases ( ) : void

Resolves the aliases that could not be resolved while loading the document.

메소드 상세

AddAnchor() 공개 메소드

Adds the specified node to the anchor list.
public AddAnchor ( YamlNode node ) : void
node YamlNode The node.
리턴 void

AddNodeWithUnresolvedAliases() 공개 메소드

Adds the specified node to the collection of nodes with unresolved aliases.
public AddNodeWithUnresolvedAliases ( YamlNode node ) : void
node YamlNode /// The that has unresolved aliases. ///
리턴 void

GetNode() 공개 메소드

Gets the node with the specified anchor.
public GetNode ( string anchor, bool throwException, YamlDotNet.Core.Mark start, YamlDotNet.Core.Mark end ) : YamlNode
anchor string The anchor.
throwException bool if set to true, the method should throw an exception if there is no node with that anchor.
start YamlDotNet.Core.Mark The start position.
end YamlDotNet.Core.Mark The end position.
리턴 YamlNode

ResolveAliases() 공개 메소드

Resolves the aliases that could not be resolved while loading the document.
public ResolveAliases ( ) : void
리턴 void