DataMemberWalkerWalkRecurse Method

Recursively walks over the data-members in a class type and the the classes referred to by those data-members.

Definition

Namespace: MFiles.VAF.Configuration.JsonMapping
Assembly: MFiles.VAF.Configuration (in MFiles.VAF.Configuration.dll) Version: 23.12.13247.3
C#
protected void WalkRecurse(
	Type type,
	DataMemberInfo parent,
	JsonConfDataMemberWalkerCallback callback,
	WalkerControl control
)

Parameters

type  Type
The class type to traverse the data-members of.
parent  DataMemberInfo
The parent data-member that referenced the type.
callback  JsonConfDataMemberWalkerCallback
The callback to trigger for each data-member encountered.
control  WalkerControl
The walker control object, allowing paths to be skipped and the operation to be canceled.

See Also