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.Keys

When implemented by a class, retrieves an ICollection containing the keys of the IDictionary.

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

Property Value

An ICollection containing the keys of the IDictionary.

Remarks

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

See Also

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