1 //------------------------------------------------------------------------------
2 // <copyright file="PerformanceCounterPermissionAccess.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //------------------------------------------------------------------------------
6 
7 namespace System.Diagnostics {
8 
9     /// <devdoc>
10     ///    <para>[To be supplied.]</para>
11     /// </devdoc>
12     [Flags]
13     public enum PerformanceCounterPermissionAccess {
14 
15         [Obsolete("This member has been deprecated.  Use System.Diagnostics.PerformanceCounter.PerformanceCounterPermissionAccess.Read instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
16         Browse = 1,
17 
18 #pragma warning disable 618
19         [Obsolete("This member has been deprecated.  Use System.Diagnostics.PerformanceCounter.PerformanceCounterPermissionAccess.Write instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
20         Instrument = 2 | Browse,
21 #pragma warning restore 618
22 
23         None = 0,
24 
25         Read = 1,
26 
27         Write = 2,
28 
29         Administer = 4 | Read | Write,
30     }
31 }
32 
33