InterfaceIVisitor<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:
cs-api-definition
public interface IVisitor<in T>
Properties
HasCompleted
Gets whether this visitor has finished.
Declaration
cs-api-definition
bool HasCompleted { get; }
Property Value
true if this instance is done; otherwise, false.
Remarks
Assigning this value is important to break the traversals when searching.
Methods
Visit(T)
Visits the specified object.
Declaration
cs-api-definition
void Visit(T obj)
Parameters
obj
T
The object to visit.