Registry.PerformanceData Alan

Tanım

Yazılım bileşenleri için performans bilgilerini içerir. Bu alan, HKEY_PERFORMANCE_DATA Windows kayıt defteri temel anahtarını okur.

public: static initonly Microsoft::Win32::RegistryKey ^ PerformanceData;
public static readonly Microsoft.Win32.RegistryKey PerformanceData;
 staticval mutable PerformanceData : Microsoft.Win32.RegistryKey
Public Shared ReadOnly PerformanceData As RegistryKey 

Alan Değeri

Örnekler

Aşağıdaki örnek, bu anahtarın alt anahtarlarının nasıl alınduğunu gösterir ve adlarını ekrana yazdırır. OpenSubKey belirli bir ilgi alt anahtarının örneğini oluşturmak için yöntemini kullanın. Daha sonra bu anahtarı işlemek için içindeki RegistryKey diğer işlemleri kullanabilirsiniz. Bu örnekte genellikle hiçbir sonuç döndürülemeyebilir çünkü performans verileri olmayabilir.

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_PERFORMANCE_DATA
   // key in the registry of this machine.
   RegistryKey ^ rk = Registry::PerformanceData;
   
   // 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_PERFORMANCE_DATA
        // key in the registry of this machine.
        RegistryKey rk = Registry.PerformanceData;

        // 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_PERFORMANCE_DATA 
        ' key in the registry of this machine.
        Dim rk As RegistryKey = Registry.PerformanceData
        
        ' 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

Açıklamalar

Her yazılım bileşeni nesneleri için anahtarlar oluşturur, yüklendiğinde sayaçlar oluşturur ve yürütülürken sayaç verileri yazar. İşlevleri kullanarak RegistryKey diğer kayıt defteri verilerine erişebileceğiniz gibi bu verilere de erişebilirsiniz.

Performans verilerini toplamak için kayıt defterini kullansanız da, veriler kayıt defteri veritabanında depolanmaz. Bunun yerine, kayıt defterine bu anahtarla erişmek, sistemin uygun sistem nesnesi yöneticilerinden veri toplamasına neden olur.

Yerel sistemden performans verileri almak için Registry.PerformanceData anahtarıyla yöntemini kullanın GetValue . İlk çağrı anahtarı açar (önce anahtarı açıkça açmanız gerekmez). Ancak, performans verilerini almayı bitirdiğinizde anahtarın tanıtıcısını kapatmak için yöntemini kullandığınızdan Close emin olun. Kullanıcı, performans verileri kullanılırken yazılım bileşenini yükleyemez veya kaldıramaz.

Uzak bir sistemden performans verileri almak için uzak sistemin bilgisayar adı ve Registry.PerformanceData anahtarıyla yöntemini kullanmanız OpenRemoteBaseKey gerekir. Bu çağrı, uzak sistemin performans verilerini temsil eden bir anahtar alır. Verileri almak için Registry.PerformanceData anahtarı yerine bu anahtarı kullanarak çağrısı GetValue yapın.

Not

Windows Server 2003'te, bir kullanıcının bu temel anahtarın alt anahtarlarına erişebilmesi için en azından Performans İzleyicisi Kullanıcılar grubuna ait olması gerekir.

Şunlara uygulanır