C# Класс Tiraggo.Core.tgVisitParameters

Passed to each callback method during visitation. Contains everything you need to implement your logic.
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
Node tgVisitableNode
Parent tgVisitableNode
ProcessChildren bool
Root object
UserState object

Описание свойств

Node публичное свойство

The "Node being visited, can be either a collection or an entity
public tgVisitableNode,Tiraggo.Core Node
Результат tgVisitableNode

Parent публичное свойство

The parent of the "Node" being visited, can be a collection or an entity
public tgVisitableNode,Tiraggo.Core Parent
Результат tgVisitableNode

ProcessChildren публичное свойство

Set to false and the current nodes children will not be visited. This does not however terminate the entire visit process.
public bool ProcessChildren
Результат bool

Root публичное свойство

The root node passed into static Visit() method, can be a Collection or an Entity
public object Root
Результат object

UserState публичное свойство

You can store data here and it will passed throughout the visitation process.
public object UserState
Результат object