ClassKeyValueTrailVisitor<TKey, TValue>
Class
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:
cs-api-definition
public sealed class KeyValueTrailVisitor<TKey, TValue> : IVisitor<KeyValuePair<TKey, TValue>>
Inheritance: objectKeyValueTrailVisitor<TKey, TValue>
Implements:
Constructors
KeyValueTrailVisitor()
Declaration
cs-api-definition
public KeyValueTrailVisitor()
Properties
HasCompleted
Gets a value indicating whether this instance has completed.
Declaration
cs-api-definition
public bool HasCompleted { get; }
Property Value
true if this instance has completed; otherwise, false.
Implements
Methods
Visit(KeyValuePair<TKey, TValue>)
Visits the specified key pair.
Declaration
cs-api-definition
public void Visit(KeyValuePair<TKey, TValue> obj)
Parameters
obj
KeyValuePair<TKey, TValue>
The object.
Implements