Table of Contents

Class DocumentTree

Namespace
Manpuku.Edinet.Xbrl
Assembly
Manpuku.Edinet.Xbrl.dll

Represents a tree of related XBRL documents. Holds the root node and provides DFS enumeration of all nodes in the tree.

public class DocumentTree
Inheritance
DocumentTree
Inherited Members

Properties

Nodes

Enumerates all nodes in the tree in depth-first order (root included).

public IEnumerable<DocumentTreeNode> Nodes { get; }

Property Value

IEnumerable<DocumentTreeNode>

Root

The root node of the document tree.

public DocumentTreeNode Root { get; }

Property Value

DocumentTreeNode