ModelItemDictionary.Values Property
When overridden in a derived class, gets the values 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 Values As ICollection(Of ModelItem)
Get
public abstract ICollection<ModelItem> Values { get; }
public:
virtual property ICollection<ModelItem^>^ Values {
ICollection<ModelItem^>^ get () abstract;
}
abstract Values : ICollection<ModelItem>
abstract function get Values () : ICollection<ModelItem>
Property Value
Type: System.Collections.Generic.ICollection<ModelItem>
An ICollection that contains the items of the ModelItemDictionary.
Implements
IDictionary<TKey, TValue>.Values
Remarks
The values are guaranteed to be in the same order as the keys. 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