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

Gets the value corresponding to the specified key.

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

Parameters

key
The key object to look up the value for.

Return Value

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

See Also

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