Class ActionVisitor<T>
A visitor which encloses a standard action.
Inheritance
System.Object
ActionVisitor<T>
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 ActionVisitor<T> : IVisitor<T>
Type Parameters
T
The data type. |
Constructors
ActionVisitor(Action<T>)
Initializes a new instance of the ActionVisitor<T> class.
Declaration
public ActionVisitor(Action<T> action)
Parameters
System.Action<T>
action
The action. |
Properties
HasCompleted
Gets a value indicating whether this instance has completed.
Declaration
public bool HasCompleted { get; }
Property Value
System.Boolean
|
Implements
Methods
Visit(T)
Visits the specified object.
Declaration
public void Visit(T obj)
Parameters
T
obj
The object. |