Registry.CurrentConfig Pole
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Obsahuje informace o konfiguraci týkající se hardwaru, který není specifický pro uživatele. Toto pole čte základní klíč registru systému Windows HKEY_CURRENT_CONFIG.
public: static initonly Microsoft::Win32::RegistryKey ^ CurrentConfig;
public static readonly Microsoft.Win32.RegistryKey CurrentConfig;
staticval mutable CurrentConfig : Microsoft.Win32.RegistryKey
Public Shared ReadOnly CurrentConfig As RegistryKey
Hodnota pole
Příklady
Následující příklad ukazuje, jak načíst podklíče tohoto klíče a vytiskne jejich názvy na obrazovku. OpenSubKey Pomocí metody vytvořte instanci konkrétního podklíče, který vás zajímá. K manipulaci s tímto klíčem pak můžete použít jiné operace v nástroji RegistryKey .
using namespace System;
using namespace Microsoft::Win32;
void PrintKeys( RegistryKey ^ rkey )
{
// Retrieve all the subkeys for the specified key.
array<String^>^names = rkey->GetSubKeyNames();
int icount = 0;
Console::WriteLine( "Subkeys of {0}", rkey->Name );
Console::WriteLine( "-----------------------------------------------" );
// Print the contents of the array to the console.
System::Collections::IEnumerator^ enum0 = names->GetEnumerator();
while ( enum0->MoveNext() )
{
String^ s = safe_cast<String^>(enum0->Current);
Console::WriteLine( s );
// The following code puts a limit on the number
// of keys displayed. Comment it out to print the
// complete list.
icount++;
if ( icount >= 10 )
break;
}
}
int main()
{
// Create a RegistryKey, which will access the HKEY_CURRENT_CONFIG
// key in the registry of this machine.
RegistryKey ^ rk = Registry::CurrentConfig;
// Print out the keys.
PrintKeys( rk );
}
using System;
using Microsoft.Win32;
class Reg {
public static void Main() {
// Create a RegistryKey, which will access the HKEY_CURRENT_CONFIG
// key in the registry of this machine.
RegistryKey rk = Registry.CurrentConfig;
// Print out the keys.
PrintKeys(rk);
}
static void PrintKeys(RegistryKey rkey) {
// Retrieve all the subkeys for the specified key.
string [] names = rkey.GetSubKeyNames();
int icount = 0;
Console.WriteLine("Subkeys of " + rkey.Name);
Console.WriteLine("-----------------------------------------------");
// Print the contents of the array to the console.
foreach (string s in names) {
Console.WriteLine(s);
// The following code puts a limit on the number
// of keys displayed. Comment it out to print the
// complete list.
icount++;
if (icount >= 10)
break;
}
}
}
Imports Microsoft.Win32
Class Reg
Public Shared Sub Main()
' Create a RegistryKey, which will access the HKEY_CURRENT_CONFIG
' key in the registry of this machine.
Dim rk As RegistryKey = Registry.CurrentConfig
' Print out the keys.
PrintKeys(rk)
End Sub
Shared Sub PrintKeys(rkey As RegistryKey)
' Retrieve all the subkeys for the specified key.
Dim names As String() = rkey.GetSubKeyNames()
Dim icount As Integer = 0
Console.WriteLine("Subkeys of " & rkey.Name)
Console.WriteLine("-----------------------------------------------")
' Print the contents of the array to the console.
Dim s As String
For Each s In names
Console.WriteLine(s)
' The following code puts a limit on the number
' of keys displayed. Comment it out to print the
' complete list.
icount += 1
If icount >= 10 Then
Exit For
End If
Next s
End Sub
End Class
Poznámky
Tento člen je mapován na podklíč v rámci LocalMachine.
Příkladem použití tohoto člena je aplikace, která ukládá jiný název serveru pro svá data v závislosti na tom, zda je systém připojen k síti.