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!

RegistryKey.GetValue (String, Object)

Retrieves the specified value, and returns defaultValue if the value doesn't exist. The string name is not case sensitive.

[Visual Basic]
Overloads Public Function GetValue( _
   ByVal name As String, _
   ByVal defaultValue As Object _
) As Object
[C#]
public object GetValue(
   string name,
   object defaultValue
);
[C++]
public: Object* GetValue(
   String* name,
   Object* defaultValue
);
[JScript]
public function GetValue(
   name : String,
   defaultValue : Object
) : Object;

Parameters

name
Name of value to retrieve.
defaultValue
[To be supplied.]

See Also

RegistryKey Class | RegistryKey Members | Microsoft.Win32 Namespace | RegistryKey.GetValue Overload List