Class TrailVisitor<TData>
This visitor keeps a trail of the visited item in the Trail.
Inheritance
System.Object
TrailVisitor<TData>
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.Windows.Diagrams.Core.dll
Syntax
public sealed class TrailVisitor<TData> : IVisitor<TData>
Type Parameters
TData
The data type of the visitor. |
Constructors
TrailVisitor()
Properties
HasCompleted
Gets a value indicating whether this visitor has completed.
Declaration
public bool HasCompleted { get; }
Property Value
System.Boolean
|
Implements
Trail
Gets the tracking list.
Declaration
public IList<TData> Trail { get; }
Property Value
System.Collections.Generic.IList<TData>
The tracking list. |
Methods
Visit(TData)
Visits the specified object.
Declaration
public void Visit(TData obj)
Parameters
TData
obj
The object. |