PerformanceCounterInstanceLifetime Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the lifetime of a performance counter instance.
public enum class PerformanceCounterInstanceLifetime
public enum PerformanceCounterInstanceLifetime
type PerformanceCounterInstanceLifetime =
Public Enum PerformanceCounterInstanceLifetime
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Global | 0 | Remove the performance counter instance when no counters are using the process category. |
Process | 1 | Remove the performance counter instance when the process is closed. |
Remarks
The default behavior is Global, which specifies the removal of the performance counter instance when no counters are using the process category.
Note
If the PerformanceCounterCategory.CategoryType property is PerformanceCounterCategoryType.SingleInstance, the PerformanceCounter.InstanceLifetime value for the performance counter must be Global
.