using System; using System.ComponentModel; namespace System.Diagnostics { /// Specifies a description for a property or event. /// 1 // Token: 0x020000E4 RID: 228 [AttributeUsage(AttributeTargets.All)] public class MonitoringDescriptionAttribute : global::System.ComponentModel.DescriptionAttribute { /// Initializes a new instance of the class, using the specified description. /// The application-defined description text. // Token: 0x060007B0 RID: 1968 RVA: 0x000148C4 File Offset: 0x00012AC4 public MonitoringDescriptionAttribute(string description) : base(description) { } /// Gets description text associated with the item monitored. /// An application-defined description. /// 2 // Token: 0x170001E3 RID: 483 // (get) Token: 0x060007B1 RID: 1969 RVA: 0x000148D0 File Offset: 0x00012AD0 public override string Description { get { return base.Description; } } } }