次の方法で共有


RegistryKey.OpenSubKey メソッド

指定したサブキーを指定した書き込みアクセス許可付きで取得します。

オーバーロードの一覧

サブキーを読み取り専用で取得します。

[Visual Basic] Overloads Public Function OpenSubKey(String) As RegistryKey

[C#] public RegistryKey OpenSubKey(string);

[C++] public: RegistryKey* OpenSubKey(String*);

[JScript] public function OpenSubKey(String) : RegistryKey;

指定したサブキーを取得します。

[Visual Basic] Overloads Public Function OpenSubKey(String, Boolean) As RegistryKey

[C#] public RegistryKey OpenSubKey(string, bool);

[C++] public: RegistryKey* OpenSubKey(String*, bool);

[JScript] public function OpenSubKey(String, Boolean) : RegistryKey;

使用例

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

[Visual Basic, C#, C++] メモ   ここでは、OpenSubKey のオーバーロード形式のうちの 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 名前空間