[bcl] Sync recent NS2.1 changes (#15696)
[mono-project.git] / mcs / class / corlib / corefx / DiagnosticCounter.cs
blobc0df86315799508878cf334becae9940b2930c5f
1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
5 namespace System.Diagnostics.Tracing
7 public abstract partial class DiagnosticCounter : IDisposable
9 internal DiagnosticCounter (string name, EventSource eventSource) { }
10 internal DiagnosticCounter () { }
11 public string DisplayName { get; set; }
12 public string DisplayUnits { get; set; }
13 public EventSource EventSource { get; }
14 public string Name { get; }
15 public void AddMetadata (string key, string value) { }
16 public void Dispose () { }