次の方法で共有


RegistryKey.GetValue メソッド

指定した値を取得します。

オーバーロードの一覧

指定した値に関連付けられているデータを取得します。値が存在しない場合には null を取得します。

[Visual Basic] Overloads Public Function GetValue(String) As Object

[C#] public object GetValue(string);

[C++] public: Object* GetValue(String*);

[JScript] public function GetValue(String) : Object;

指定した値を取得します。指定した値が見つからない場合は、既定値を取得します。

[Visual Basic] Overloads Public Function GetValue(String, Object) As Object

[C#] public object GetValue(string, object);

[C++] public: Object* GetValue(String*, Object*);

[JScript] public function GetValue(String, Object) : Object;

使用例

[Visual Basic, C#, C++] 次のコード例は RegistryKey クラスの例の一部です。

[Visual Basic, C#, C++] メモ   ここでは、GetValue のオーバーロード形式のうちの 1 つだけについて、使用例を示します。その他の例については、各オーバーロード形式のトピックを参照してください。

 
' Delete the non-secure password value.
testSettings = test9999.OpenSubKey("TestSettings", True)
testSettings.DeleteValue("password")

' Verify the deletion.
Console.WriteLine(CType(testSettings.GetValue( _
    "password", "Password not found."), String))
testSettings.Close()

[C#] 
using(RegistryKey 
    testSettings = test9999.OpenSubKey("TestSettings", true))
{
    // Delete the non-secure password value.
    testSettings.DeleteValue("password");

    // Verify the deletion.
    Console.WriteLine((string)testSettings.GetValue(
        "password", "Password not found."));
}

[C++] 
// Delete the non-secure password value.
testSettings = test9999->OpenSubKey(S"TestSettings", true);
testSettings->DeleteValue(S"password");

// Verify the deletion.
Console::WriteLine(dynamic_cast<String*>(
    testSettings->GetValue("password", S"Password not found.")));
testSettings->Close();

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

参照

RegistryKey クラス | RegistryKey メンバ | Microsoft.Win32 名前空間