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!

DictionaryEntry

This class encapsulates a key/value pair. IDictionary uses it to return the values in the dictionary in CopyTo and GetEnumerator.

public struct DictionaryEntry {
public: 
   //Constructors 
   DictionaryEntry (Object key, Object value);

   //Fields
   Object Key;
   Object Value;
}
}