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!

IDictionaryService.GetKey

Gets the key corresponding to the specified value.

[Visual Basic]
Function GetKey( _
   ByVal value As Object _
) As Object
[C#]
object GetKey(
   object value
);
[C++]
Object* GetKey(
   Object* value
) = 0;
[JScript]
function GetKey(
   value : Object
) : Object;

Parameters

value
The value object to look up in the dictionary.

Return Value

The associated key object, or a null reference (in Visual Basic Nothing) if no key exists.

See Also

IDictionaryService Interface | IDictionaryService Members | System.ComponentModel.Design Namespace