RegistryKey.OpenSubKey Método

Definição

Recupera a subchave especificada.

Sobrecargas

OpenSubKey(String, Boolean)

Recupera uma subchave especificada e especifica se o acesso de gravação deve ser aplicado à chave.

OpenSubKey(String, RegistryKeyPermissionCheck, RegistryRights)

Recupera a subchave especificada para acesso de leitura ou leitura/gravação, solicitando direitos de acesso especificados.

OpenSubKey(String, RegistryRights)

Recupera uma subchave com o nome e os direitos de acesso especificados. Disponível a partir do .NET Framework 4.6.

OpenSubKey(String)

Recupera uma subchave como somente leitura.

OpenSubKey(String, RegistryKeyPermissionCheck)

Recupera a subchave especificada para acesso de leitura ou de leitura/gravação.

OpenSubKey(String, Boolean)

Origem:
RegistryKey.cs

Recupera uma subchave especificada e especifica se o acesso de gravação deve ser aplicado à chave.

public:
 Microsoft::Win32::RegistryKey ^ OpenSubKey(System::String ^ name, bool writable);
public Microsoft.Win32.RegistryKey OpenSubKey (string name, bool writable);
public Microsoft.Win32.RegistryKey? OpenSubKey (string name, bool writable);
member this.OpenSubKey : string * bool -> Microsoft.Win32.RegistryKey
Public Function OpenSubKey (name As String, writable As Boolean) As RegistryKey

Parâmetros

name
String

Nome ou caminho da subchave a ser aberto.

writable
Boolean

Defina como true se precisar de acesso de gravação para a chave.

Retornos

A subchave solicitada ou null caso a operação tenha falhado.

Exceções

name é null.

O RegistryKey é fechado (chaves fechadas não podem ser acessadas).

O usuário não tem as permissões necessárias para acessar a chave do Registro no modo especificado.

Exemplos

O exemplo de código a seguir cria uma chave de teste e usa o OpenSubKey método para abri-la, demonstrando as duas sobrecargas do método.

#using <Microsoft.VisualBasic.dll>

using namespace System;
using namespace Microsoft::Win32;
using namespace Microsoft::VisualBasic;

int main()
{
    // Delete and recreate the test key.
    Registry::CurrentUser->DeleteSubKey( L"RegistryOpenSubKeyExample", false );
    RegistryKey ^ rk = Registry::CurrentUser->CreateSubKey( L"RegistryOpenSubKeyExample" );
    rk->Close();

    // Obtain an instance of RegistryKey for the CurrentUser registry
    // root.
    RegistryKey ^ rkCurrentUser = Registry::CurrentUser;

    // Obtain the test key (read-only) and display it.
    RegistryKey ^ rkTest = rkCurrentUser->OpenSubKey( L"RegistryOpenSubKeyExample" );
    Console::WriteLine( L"Test key: {0}", rkTest );
    rkTest->Close();
    rkCurrentUser->Close();

    // Obtain the test key in one step, using the CurrentUser registry
    // root.
    rkTest = Registry::CurrentUser->OpenSubKey( L"RegistryOpenSubKeyExample" );
    Console::WriteLine( L"Test key: {0}", rkTest );
    rkTest->Close();

    // Open the test key in read/write mode.
    rkTest = Registry::CurrentUser->OpenSubKey( L"RegistryOpenSubKeyExample", true );
    rkTest->SetValue( L"TestName", L"TestValue" );
    Console::WriteLine( L"Test value for TestName: {0}", rkTest->GetValue( L"TestName" ) );
    rkTest->Close();

    return 0;
} //Main
using System;
using Microsoft.Win32;
using Microsoft.VisualBasic;

public class Example
{
    public static void Main()
    {
        // Delete and recreate the test key.
        Registry.CurrentUser.DeleteSubKey("RegistryOpenSubKeyExample", false);
        RegistryKey rk = Registry.CurrentUser.CreateSubKey("RegistryOpenSubKeyExample");
        rk.Close();

        // Obtain an instance of RegistryKey for the CurrentUser registry
        // root.
        RegistryKey rkCurrentUser = Registry.CurrentUser;

        // Obtain the test key (read-only) and display it.
        RegistryKey rkTest = rkCurrentUser.OpenSubKey("RegistryOpenSubKeyExample");
        Console.WriteLine("Test key: {0}", rkTest);
        rkTest.Close();
        rkCurrentUser.Close();

        // Obtain the test key in one step, using the CurrentUser registry
        // root.
        rkTest = Registry.CurrentUser.OpenSubKey("RegistryOpenSubKeyExample");
        Console.WriteLine("Test key: {0}", rkTest);
        rkTest.Close();

        // Open the test key in read/write mode.
        rkTest = Registry.CurrentUser.OpenSubKey("RegistryOpenSubKeyExample", true);
        rkTest.SetValue("TestName", "TestValue");
        Console.WriteLine("Test value for TestName: {0}", rkTest.GetValue("TestName"));
        rkTest.Close();
    } //Main
} //Example
Imports Microsoft.Win32

Public Class Example
    Public Shared Sub Main()
        ' Delete and recreate the test key.
        Registry.CurrentUser.DeleteSubKey("RegistryOpenSubKeyExample", False)
        Dim rk As RegistryKey = Registry.CurrentUser.CreateSubKey("RegistryOpenSubKeyExample")
        rk.Close

        ' Obtain an instance of RegistryKey for the CurrentUser registry 
        ' root. 
        Dim rkCurrentUser As RegistryKey = Registry.CurrentUser

        ' Obtain the test key (read-only) and display it.
        Dim rkTest As RegistryKey = rkCurrentUser.OpenSubKey("RegistryOpenSubKeyExample")
        Console.WriteLine("Test key: {0}", rkTest)
        rkTest.Close
        rkCurrentUser.Close

        ' Obtain the test key in one step, using the CurrentUser registry 
        ' root.
        rkTest = Registry.CurrentUser.OpenSubKey("RegistryOpenSubKeyExample")
        Console.WriteLine("Test key: {0}", rkTest)
        rkTest.Close

        ' Obtain the test key in read/write mode.
        rkTest = Registry.CurrentUser.OpenSubKey("RegistryOpenSubKeyExample", True)
        rkTest.SetValue("TestName", "TestValue")
        Console.WriteLine("Test value for TestName: {0}", rkTest.GetValue("TestName"))
        rkTest.Close
    End Sub
End Class

Comentários

Se a chave solicitada não existir, esse método retornará null em vez de gerar uma exceção.

Se writable for true, a chave será aberta para leitura e gravação, caso contrário, a chave será aberta como somente leitura.

Para usar o OpenSubKey método , você deve ter uma instância do RegistryKey método . Para obter uma instância de RegistryKey, use um dos membros estáticos da classe Registry.

Confira também

Aplica-se a

OpenSubKey(String, RegistryKeyPermissionCheck, RegistryRights)

Origem:
RegistryKey.cs

Recupera a subchave especificada para acesso de leitura ou leitura/gravação, solicitando direitos de acesso especificados.

public:
 Microsoft::Win32::RegistryKey ^ OpenSubKey(System::String ^ name, Microsoft::Win32::RegistryKeyPermissionCheck permissionCheck, System::Security::AccessControl::RegistryRights rights);
public Microsoft.Win32.RegistryKey OpenSubKey (string name, Microsoft.Win32.RegistryKeyPermissionCheck permissionCheck, System.Security.AccessControl.RegistryRights rights);
public Microsoft.Win32.RegistryKey? OpenSubKey (string name, Microsoft.Win32.RegistryKeyPermissionCheck permissionCheck, System.Security.AccessControl.RegistryRights rights);
[System.Runtime.InteropServices.ComVisible(false)]
public Microsoft.Win32.RegistryKey OpenSubKey (string name, Microsoft.Win32.RegistryKeyPermissionCheck permissionCheck, System.Security.AccessControl.RegistryRights rights);
member this.OpenSubKey : string * Microsoft.Win32.RegistryKeyPermissionCheck * System.Security.AccessControl.RegistryRights -> Microsoft.Win32.RegistryKey
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.OpenSubKey : string * Microsoft.Win32.RegistryKeyPermissionCheck * System.Security.AccessControl.RegistryRights -> Microsoft.Win32.RegistryKey
Public Function OpenSubKey (name As String, permissionCheck As RegistryKeyPermissionCheck, rights As RegistryRights) As RegistryKey

Parâmetros

name
String

O nome ou o caminho da subchave a ser criado ou aberto.

permissionCheck
RegistryKeyPermissionCheck

Um dos valores de enumeração que especifica se a chave é aberta para acesso de leitura ou de leitura/gravação.

rights
RegistryRights

Uma combinação bit a bit dos valores de enumeração que especifica o acesso de segurança desejado.

Retornos

A subchave solicitada ou null caso a operação tenha falhado.

Atributos

Exceções

name é null

permissionCheck contém um valor inválido.

O RegistryKey é fechado (chaves fechadas não podem ser acessadas).

rights inclui valores de direitos de Registro inválidos.

- ou -

O usuário não tem as permissões necessárias.

Comentários

Em vez de gerar uma exceção, esse método retornará null se a chave solicitada não existir.

Se permissionCheck for RegistryKeyPermissionCheck.ReadWriteSubTree, a chave será aberta para leitura e gravação; se permissionCheck for RegistryKeyPermissionCheck.ReadSubTree ou RegistryKeyPermissionCheck.Default, a chave será aberta para leitura, a menos que a chave pai tenha sido aberta com RegistryKeyPermissionCheck.ReadWriteSubTree.

O acesso especificado para permissionCheck tem precedência sobre o acesso especificado para rights. Por exemplo, se você especificar RegistryKeyPermissionCheck.ReadSubTree para e RegistryRights.WriteKey para permissionCheckrights, uma tentativa de gravar na subchave gerará uma exceção.

Para usar o método OpenSubKey, você deve ter uma instância da classe RegistryKey. Para obter uma instância de RegistryKey, use um dos membros estáticos da classe Registry.

Confira também

Aplica-se a

OpenSubKey(String, RegistryRights)

Origem:
RegistryKey.cs

Recupera uma subchave com o nome e os direitos de acesso especificados. Disponível a partir do .NET Framework 4.6.

public:
 Microsoft::Win32::RegistryKey ^ OpenSubKey(System::String ^ name, System::Security::AccessControl::RegistryRights rights);
public Microsoft.Win32.RegistryKey OpenSubKey (string name, System.Security.AccessControl.RegistryRights rights);
public Microsoft.Win32.RegistryKey? OpenSubKey (string name, System.Security.AccessControl.RegistryRights rights);
[System.Runtime.InteropServices.ComVisible(false)]
public Microsoft.Win32.RegistryKey OpenSubKey (string name, System.Security.AccessControl.RegistryRights rights);
member this.OpenSubKey : string * System.Security.AccessControl.RegistryRights -> Microsoft.Win32.RegistryKey
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.OpenSubKey : string * System.Security.AccessControl.RegistryRights -> Microsoft.Win32.RegistryKey
Public Function OpenSubKey (name As String, rights As RegistryRights) As RegistryKey

Parâmetros

name
String

O nome ou o caminho da subchave a ser criado ou aberto.

rights
RegistryRights

Os direitos para a chave do Registro.

Retornos

A subchave solicitada ou null caso a operação tenha falhado.

Atributos

Exceções

name é null.

O RegistryKey é fechado (chaves fechadas não podem ser acessadas).

O usuário não tem as permissões necessárias para acessar a chave do Registro no modo especificado.

Comentários

Você deve abrir uma chave antes que ela possa ser manipulada com outros métodos e propriedades. Para modificar uma chave, você deve abri-la com uma sobrecarga do método que permite especificar o OpenSubKey acesso de gravação.

Aplica-se a

OpenSubKey(String)

Origem:
RegistryKey.cs

Recupera uma subchave como somente leitura.

public:
 Microsoft::Win32::RegistryKey ^ OpenSubKey(System::String ^ name);
public Microsoft.Win32.RegistryKey OpenSubKey (string name);
public Microsoft.Win32.RegistryKey? OpenSubKey (string name);
member this.OpenSubKey : string -> Microsoft.Win32.RegistryKey
Public Function OpenSubKey (name As String) As RegistryKey

Parâmetros

name
String

O nome ou caminho da subchave a ser aberta como somente leitura.

Retornos

A subchave solicitada ou null caso a operação tenha falhado.

Exceções

name é null

O RegistryKey é fechado (chaves fechadas não podem ser acessadas).

O usuário não tem as permissões necessárias para ler a chave do Registro.

Exemplos

O exemplo de código a seguir cria uma chave de teste e usa o OpenSubKey método para abri-la, demonstrando as duas sobrecargas do método.

#using <Microsoft.VisualBasic.dll>

using namespace System;
using namespace Microsoft::Win32;
using namespace Microsoft::VisualBasic;

int main()
{
    // Delete and recreate the test key.
    Registry::CurrentUser->DeleteSubKey( L"RegistryOpenSubKeyExample", false );
    RegistryKey ^ rk = Registry::CurrentUser->CreateSubKey( L"RegistryOpenSubKeyExample" );
    rk->Close();

    // Obtain an instance of RegistryKey for the CurrentUser registry
    // root.
    RegistryKey ^ rkCurrentUser = Registry::CurrentUser;

    // Obtain the test key (read-only) and display it.
    RegistryKey ^ rkTest = rkCurrentUser->OpenSubKey( L"RegistryOpenSubKeyExample" );
    Console::WriteLine( L"Test key: {0}", rkTest );
    rkTest->Close();
    rkCurrentUser->Close();

    // Obtain the test key in one step, using the CurrentUser registry
    // root.
    rkTest = Registry::CurrentUser->OpenSubKey( L"RegistryOpenSubKeyExample" );
    Console::WriteLine( L"Test key: {0}", rkTest );
    rkTest->Close();

    // Open the test key in read/write mode.
    rkTest = Registry::CurrentUser->OpenSubKey( L"RegistryOpenSubKeyExample", true );
    rkTest->SetValue( L"TestName", L"TestValue" );
    Console::WriteLine( L"Test value for TestName: {0}", rkTest->GetValue( L"TestName" ) );
    rkTest->Close();

    return 0;
} //Main
using System;
using Microsoft.Win32;
using Microsoft.VisualBasic;

public class Example
{
    public static void Main()
    {
        // Delete and recreate the test key.
        Registry.CurrentUser.DeleteSubKey("RegistryOpenSubKeyExample", false);
        RegistryKey rk = Registry.CurrentUser.CreateSubKey("RegistryOpenSubKeyExample");
        rk.Close();

        // Obtain an instance of RegistryKey for the CurrentUser registry
        // root.
        RegistryKey rkCurrentUser = Registry.CurrentUser;

        // Obtain the test key (read-only) and display it.
        RegistryKey rkTest = rkCurrentUser.OpenSubKey("RegistryOpenSubKeyExample");
        Console.WriteLine("Test key: {0}", rkTest);
        rkTest.Close();
        rkCurrentUser.Close();

        // Obtain the test key in one step, using the CurrentUser registry
        // root.
        rkTest = Registry.CurrentUser.OpenSubKey("RegistryOpenSubKeyExample");
        Console.WriteLine("Test key: {0}", rkTest);
        rkTest.Close();

        // Open the test key in read/write mode.
        rkTest = Registry.CurrentUser.OpenSubKey("RegistryOpenSubKeyExample", true);
        rkTest.SetValue("TestName", "TestValue");
        Console.WriteLine("Test value for TestName: {0}", rkTest.GetValue("TestName"));
        rkTest.Close();
    } //Main
} //Example
Imports Microsoft.Win32

Public Class Example
    Public Shared Sub Main()
        ' Delete and recreate the test key.
        Registry.CurrentUser.DeleteSubKey("RegistryOpenSubKeyExample", False)
        Dim rk As RegistryKey = Registry.CurrentUser.CreateSubKey("RegistryOpenSubKeyExample")
        rk.Close

        ' Obtain an instance of RegistryKey for the CurrentUser registry 
        ' root. 
        Dim rkCurrentUser As RegistryKey = Registry.CurrentUser

        ' Obtain the test key (read-only) and display it.
        Dim rkTest As RegistryKey = rkCurrentUser.OpenSubKey("RegistryOpenSubKeyExample")
        Console.WriteLine("Test key: {0}", rkTest)
        rkTest.Close
        rkCurrentUser.Close

        ' Obtain the test key in one step, using the CurrentUser registry 
        ' root.
        rkTest = Registry.CurrentUser.OpenSubKey("RegistryOpenSubKeyExample")
        Console.WriteLine("Test key: {0}", rkTest)
        rkTest.Close

        ' Obtain the test key in read/write mode.
        rkTest = Registry.CurrentUser.OpenSubKey("RegistryOpenSubKeyExample", True)
        rkTest.SetValue("TestName", "TestValue")
        Console.WriteLine("Test value for TestName: {0}", rkTest.GetValue("TestName"))
        rkTest.Close
    End Sub
End Class

Comentários

Você deve abrir uma chave antes que ela possa ser manipulada com outros métodos e propriedades. Para modificar uma chave, você deve abri-la com uma sobrecarga do método que permite especificar o OpenSubKey acesso de gravação, como a OpenSubKey(String, RegistryKeyPermissionCheck) sobrecarga ou a OpenSubKey(String, Boolean) sobrecarga.

Se a subchave especificada não puder ser encontrada, será null retornada.

Para usar o OpenSubKey método , você deve ter uma instância de RegistryKey. Para obter uma instância de RegistryKey, use um dos membros estáticos da Registry classe .

Confira também

Aplica-se a

OpenSubKey(String, RegistryKeyPermissionCheck)

Origem:
RegistryKey.cs

Recupera a subchave especificada para acesso de leitura ou de leitura/gravação.

public:
 Microsoft::Win32::RegistryKey ^ OpenSubKey(System::String ^ name, Microsoft::Win32::RegistryKeyPermissionCheck permissionCheck);
public Microsoft.Win32.RegistryKey OpenSubKey (string name, Microsoft.Win32.RegistryKeyPermissionCheck permissionCheck);
public Microsoft.Win32.RegistryKey? OpenSubKey (string name, Microsoft.Win32.RegistryKeyPermissionCheck permissionCheck);
[System.Runtime.InteropServices.ComVisible(false)]
public Microsoft.Win32.RegistryKey OpenSubKey (string name, Microsoft.Win32.RegistryKeyPermissionCheck permissionCheck);
member this.OpenSubKey : string * Microsoft.Win32.RegistryKeyPermissionCheck -> Microsoft.Win32.RegistryKey
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.OpenSubKey : string * Microsoft.Win32.RegistryKeyPermissionCheck -> Microsoft.Win32.RegistryKey
Public Function OpenSubKey (name As String, permissionCheck As RegistryKeyPermissionCheck) As RegistryKey

Parâmetros

name
String

O nome ou o caminho da subchave a ser criado ou aberto.

permissionCheck
RegistryKeyPermissionCheck

Um dos valores de enumeração que especifica se a chave é aberta para acesso de leitura ou de leitura/gravação.

Retornos

A subchave solicitada ou null caso a operação tenha falhado.

Atributos

Exceções

name é null

permissionCheck contém um valor inválido.

O RegistryKey é fechado (chaves fechadas não podem ser acessadas).

O usuário não tem as permissões necessárias para ler a chave do Registro.

Exemplos

O exemplo de código a seguir cria uma subchave contendo 100 pares chave/valor e a fecha. O exemplo abre a subchave com Default, registra o tempo necessário para ler todos os valores e fecha a subchave. O exemplo abre a subchave com ReadSubTree e registra o tempo necessário para ler todos os valores. Por fim, o exemplo calcula e exibe o aprimoramento percentual.

using System;
using Microsoft.Win32;
using System.Diagnostics;

public class Example
{
    public static void Main()
    {
        const int LIMIT = 100;
        RegistryKey cu = Registry.CurrentUser;
        const string testKey = "RegistryKeyPermissionCheckExample";

        Console.WriteLine("Generating {0} key/value pairs.", LIMIT);
        RegistryKey rk = cu.CreateSubKey(testKey);
        for (int i = 0; i < LIMIT; i++)
        {
            rk.SetValue("Key" + i, i);
        }

        rk.Close();

        Stopwatch s = new Stopwatch();

        // On the default setting, security is checked every time
        // a key/value pair is read.
        rk = cu.OpenSubKey(testKey, RegistryKeyPermissionCheck.Default);

        s.Start();
        for (int i = 0; i < LIMIT; i++)
        {
            rk.GetValue("Key" + i, i);
        }
        s.Stop();
        rk.Close();
        long delta1 = s.ElapsedTicks;

        s.Reset();

        // When the key is opened with ReadSubTree, security is
        // not checked when the values are read.
        rk = cu.OpenSubKey(testKey, RegistryKeyPermissionCheck.ReadSubTree);

        s.Start();
        for (int i = 0; i < LIMIT; i++)
        {
            rk.GetValue("Key" + i, i);
        }
        s.Stop();
        rk.Close();
        long delta2 = s.ElapsedTicks;

        double faster = (double) (delta1 - delta2) / (double) delta1;
        Console.WriteLine("ReadSubTree is {0}% faster for {1} values.",
            (faster * 100).ToString("0.0"), LIMIT);

        cu.DeleteSubKey(testKey);
    }
}

/* This code example produces output similar to the following:

Generating 100 key/value pairs.
ReadSubTree is 23.4% faster for 100 values.
 */
Imports Microsoft.Win32
Imports System.Diagnostics

Public Class Example
    
    Public Shared Sub Main() 

        Const LIMIT As Integer = 100
        Dim cu As RegistryKey = Registry.CurrentUser
        Const testKey As String = "RegistryKeyPermissionCheckExample"
        
        Console.WriteLine("Generating {0} key/value pairs.", LIMIT)
        Dim rk As RegistryKey = cu.CreateSubKey(testKey)

        For i As Integer = 0 To LIMIT
            rk.SetValue("Key" & i, i)
        Next i
        
        rk.Close()
        
        Dim s As New Stopwatch()
        
        ' On the default setting, security is checked every time
        ' a key/value pair is read.
        rk = cu.OpenSubKey(testKey, _
            RegistryKeyPermissionCheck.Default)
        
        s.Start()
        For i As Integer = 0 To LIMIT
            rk.GetValue("Key" & i, i)
        Next i
        s.Stop()
        rk.Close()
        Dim delta1 As Long = s.ElapsedTicks
        
        s.Reset()
        
        ' When the key is opened with ReadSubTree, security is 
        ' not checked when the values are read.
        rk = cu.OpenSubKey(testKey, _
            RegistryKeyPermissionCheck.ReadSubTree)
        
        s.Start()
        For i As Integer = 0 To LIMIT
            rk.GetValue("Key" & i, i)
        Next i
        s.Stop()
        rk.Close()
        Dim delta2 As Long = s.ElapsedTicks
        
        Dim faster As Double = _
            CDbl(delta1 - delta2) * 100.0 / CDbl(delta1)
        Console.WriteLine("ReadSubTree is {0}% faster for {1} values.", _
            faster.ToString("0.0"), LIMIT)
        
        cu.DeleteSubKey(testKey)
    
    End Sub 
End Class 

' This code example produces output similar to the following:
'
'Generating 100 key/value pairs.
'ReadSubTree is 23.4% faster for 100 values.
'

Comentários

Em vez de gerar uma exceção, esse método retornará null se a chave solicitada não existir.

Se permissionCheck for RegistryKeyPermissionCheck.ReadWriteSubTree, a chave será aberta para leitura e gravação; se permissionCheck for RegistryKeyPermissionCheck.ReadSubTree ou RegistryKeyPermissionCheck.Default, a chave será aberta para leitura, a menos que a chave pai tenha sido aberta com RegistryKeyPermissionCheck.ReadWriteSubTree.

Para usar o método OpenSubKey, você deve ter uma instância da classe RegistryKey. Para obter uma instância de RegistryKey, use um dos membros estáticos da classe Registry.

Confira também

Aplica-se a