Interface IVisitAdapter
Implement this interface to intercept the visitation for all unhandled leaf nodes.
Syntax
public interface IVisitAdapter
Methods
Visit<TProperty, TContainer, TValue>(IPropertyVisitor, TProperty, ref TContainer, ref TValue, ref ChangeTracker)
Invoked when the visitor encounters any leaf node.
Declaration
VisitStatus Visit<TProperty, TContainer, TValue>(IPropertyVisitor visitor, TProperty property, ref TContainer container, ref TValue value, ref ChangeTracker changeTracker)
where TProperty : IProperty<TContainer, TValue>
Parameters
Returns
Type Parameters
Name |
Description |
TProperty |
|
TContainer |
|
TValue |
|