ModelItemDictionary.Keys Property
When overridden in a derived class, gets the keys of the dictionary.
Namespace: Microsoft.Windows.Design.Model
Assembly: Microsoft.Windows.Design.Interaction (in Microsoft.Windows.Design.Interaction.dll)
Syntax
'Declaration
Public MustOverride ReadOnly Property Keys As ICollection(Of ModelItem)
Get
public abstract ICollection<ModelItem> Keys { get; }
public:
virtual property ICollection<ModelItem^>^ Keys {
ICollection<ModelItem^>^ get () abstract;
}
abstract Keys : ICollection<ModelItem>
abstract function get Keys () : ICollection<ModelItem>
Property Value
Type: System.Collections.Generic.ICollection<ModelItem>
An ICollection that contains the keys of the ModelItemDictionary.
Implements
IDictionary<TKey, TValue>.Keys
Remarks
The keys are guaranteed to be in the same order as the values. The resulting collection is read-only.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.Windows.Design.Model Namespace