using System;
using System.ComponentModel;
namespace System.Timers
{
/// Sets the description that visual designers can display when referencing an event, extender, or property.
// Token: 0x020002F0 RID: 752
[AttributeUsage(AttributeTargets.All)]
public class TimersDescriptionAttribute : global::System.ComponentModel.DescriptionAttribute
{
/// Initializes a new instance of the class.
/// The description to use.
// Token: 0x06001B4C RID: 6988 RVA: 0x0006417C File Offset: 0x0006237C
public TimersDescriptionAttribute(string description)
: base(description)
{
}
/// Gets the description that visual designers can display when referencing an event, extender, or property.
/// The description for the event, extender, or property.
// Token: 0x17000851 RID: 2129
// (get) Token: 0x06001B4D RID: 6989 RVA: 0x00064188 File Offset: 0x00062388
public override string Description
{
get
{
return base.Description;
}
}
}
}