Freigeben über


PerformanceCounter.CounterName-Eigenschaft

Ruft den Namen des Leistungsindikators ab, der dieser PerformanceCounter-Instanz zugeordnet ist, oder legt diesen fest.

Namespace: System.Diagnostics
Assembly: System (in system.dll)

Syntax

'Declaration
Public Property CounterName As String
'Usage
Dim instance As PerformanceCounter
Dim value As String

value = instance.CounterName

instance.CounterName = value
public string CounterName { get; set; }
public:
property String^ CounterName {
    String^ get ();
    void set (String^ value);
}
/** @property */
public String get_CounterName ()

/** @property */
public void set_CounterName (String value)
public function get CounterName () : String

public function set CounterName (value : String)

Eigenschaftenwert

Der Name des Zählers, der i. d. R. die zu messende Menge beschreibt. Dieser Name wird im Dialogfeld Leistungsindikatoren hinzufügen des MMC-Snap-Ins Leistungsindikator-Manager in der Zählerliste angezeigt.

Ausnahmen

Ausnahmetyp Bedingung

ArgumentNullException

CounterName ist NULL (Nothing in Visual Basic).

PlatformNotSupportedException

Die Plattform ist Windows 98 oder Windows Millennium Edition (Me), die keine Leistungsindikatoren unterstützen.

Beispiel

Dim PC As New PerformanceCounter()
PC.CategoryName = "Process"
PC.CounterName = "Private Bytes"
PC.InstanceName = "Explorer"
MessageBox.Show(PC.NextValue().ToString())
PerformanceCounter PC=new PerformanceCounter();
PC.CategoryName="Process";
PC.CounterName="Private Bytes";
PC.InstanceName="Explorer";
MessageBox.Show(PC.NextValue().ToString());
PerformanceCounter^ PC = gcnew PerformanceCounter;
PC->CategoryName = "Process";
PC->CounterName = "Private Bytes";
PC->InstanceName = "Explorer";
MessageBox::Show( PC->NextValue().ToString() );
PerformanceCounter pc = new PerformanceCounter();
pc.set_CategoryName("Process");
pc.set_CounterName("Private Bytes");
pc.set_InstanceName("Explorer");
MessageBox.Show(((Single)pc.NextValue()).ToString());

Plattformen

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

Siehe auch

Referenz

PerformanceCounter-Klasse
PerformanceCounter-Member
System.Diagnostics-Namespace