C# 클래스 Tiraggo.Core.tgVisitParameters

Passed to each callback method during visitation. Contains everything you need to implement your logic.
파일 보기 프로젝트 열기: BrewDawg/Tiraggo 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
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