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