NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IDictionary.Values

When implemented by a class, retrieves an ICollection of the values in the IDictionary.

[Visual Basic]
ReadOnly Property Values As ICollection
[C#]
ICollection Values {get;}
[C++]
ICollection* get_Values() = 0;
[JScript]
abstract function get Values() : ICollection;

Property Value

An ICollection of the values in the IDictionary.

Remarks

The order of the values in the returned ICollection is unspecified, but it is guaranteed to be the same order as the corresponding keys in the ICollection returned by the Keys method.

See Also

IDictionary Interface | IDictionary Members | System.Collections Namespace | ICollection