Files
Dec2017-Script-Dump/System/Timers/TimersDescriptionAttribute.cs
2026-06-04 11:42:34 +02:00

32 lines
1.1 KiB
C#

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