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)

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

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

Parameters

name
Name of the value to retrieve.

Return Value

The data associated with the value. Returns null if the the value doesn't exist.

See Also

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