IVisitor<T>
Interface
Describes a visitor to a data structure.
Definition
Namespace:Telerik.Windows.Diagrams.Core
Assembly:Telerik.Windows.Diagrams.Core.dll
Type Parameters:
T
The type of objects to be visited.
Syntax:
C#
public interface IVisitor<in T>
Derived Classes:
Properties
Gets whether this visitor has finished.
C#
bool HasCompleted { get; }
true if this instance is done; otherwise, false.
Remarks:
Assigning this value is important to break the traversals when searching.
Methods
Visits the specified object.
C#
void Visit(T obj)
The object to visit.