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!

Hashtable.Values

Gets an ICollection containing the values in the Hashtable.

[Visual Basic]
Overridable Public ReadOnly Property Values As ICollection
[C#]
public ICollection Values {virtual get;}
[C++]
public: __property virtual ICollection* get_Values();
[JScript]
public function get Values() : ICollection;

Property Value

An ICollection containing the values in the Hashtable.

Remarks

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

Changes to the Hashtable will continue to be reflected in the returned ICollection. It is not a static copy.

See Also

Hashtable Class | Hashtable Members | System.Collections Namespace | ICollection | Keys