File: System\Diagnostics\PerformanceCounterInstanceLifetime.cs
Web Access
Project: src\src\runtime\src\libraries\System.Diagnostics.PerformanceCounter\src\System.Diagnostics.PerformanceCounter.csproj (System.Diagnostics.PerformanceCounter)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

namespace System.Diagnostics
{
    public enum PerformanceCounterInstanceLifetime
    {
        Global = 0,
        Process = 1
    }
}