ActionVisitor<T>
Class
A visitor which encloses a standard action.
Definition
Namespace:Telerik.Windows.Diagrams.Core
Assembly:Telerik.Windows.Diagrams.Core.dll
Type Parameters:
T
The data type.
Syntax:
C#
public sealed class ActionVisitor<T> : IVisitor<T>
Inheritance: objectActionVisitor<T>
Implements:
Constructors
Initializes a new instance of the ActionVisitor<T> class.
Properties
Gets a value indicating whether this instance has completed.
C#
public bool HasCompleted { get; }
true if this instance has completed; otherwise, false.
Implements:
Methods
Visits the specified object.
C#
public void Visit(T obj)
The object.
Implements: