ClassKeyValueTrailVisitor<TKey, TValue>
A visitor that tracks (stores) keys from KeyValuePairs in the order they were visited.
Definition
Namespace:Telerik.Windows.Diagrams.Core
Assembly:Telerik.WinControls.RadDiagram.dll
Type Parameters:
TKey
The type of key of the KeyValuePair.
TValue
The type of value of the KeyValuePair.
Syntax:
public sealed class KeyValueTrailVisitor<TKey, TValue> : IVisitor<KeyValuePair<TKey, TValue>>
Inheritance: objectKeyValueTrailVisitor<TKey, TValue>
Implements:
Constructors
KeyValueTrailVisitor()
Declaration
public KeyValueTrailVisitor()
Properties
HasCompleted
Gets a value indicating whether this instance has completed.
Declaration
public bool HasCompleted { get; }
Property Value
true if this instance has completed; otherwise, false.
Implements
Keys
Gets the trail of the keys.
Declaration
public IList<TKey> Keys { get; }
Property Value
IList<TKey>
The keys list.
Values
Gets the trail of the values.
Declaration
public IList<TValue> Values { get; }
Property Value
IList<TValue>
The value list.
Methods
Visit(KeyValuePair<TKey, TValue>)
Visits the specified key pair.
Declaration
public void Visit(KeyValuePair<TKey, TValue> obj)
Parameters
obj
KeyValuePair<TKey, TValue>
The object.
Implements