using System;
using System.ComponentModel;
namespace System.IO
{
/// Sets the description visual designers can display when referencing an event, extender, or property.
/// 1
// Token: 0x02000119 RID: 281
[AttributeUsage(AttributeTargets.All)]
public class IODescriptionAttribute : global::System.ComponentModel.DescriptionAttribute
{
/// Initializes a new instance of the class.
/// The description to use.
// Token: 0x06000A1F RID: 2591 RVA: 0x0001B9C4 File Offset: 0x00019BC4
public IODescriptionAttribute(string description)
: base(description)
{
}
/// Gets the description.
/// The description for the event, extender, or property.
/// 2
// Token: 0x1700029A RID: 666
// (get) Token: 0x06000A20 RID: 2592 RVA: 0x0001B9D0 File Offset: 0x00019BD0
public override string Description
{
get
{
return base.DescriptionValue;
}
}
}
}