34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace System.IO
|
|
{
|
|
/// <summary>Sets the description visual designers can display when referencing an event, extender, or property.</summary>
|
|
/// <filterpriority>1</filterpriority>
|
|
// Token: 0x02000119 RID: 281
|
|
[AttributeUsage(AttributeTargets.All)]
|
|
public class IODescriptionAttribute : global::System.ComponentModel.DescriptionAttribute
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.IO.IODescriptionAttribute" /> class.</summary>
|
|
/// <param name="description">The description to use. </param>
|
|
// Token: 0x06000A1F RID: 2591 RVA: 0x0001B9C4 File Offset: 0x00019BC4
|
|
public IODescriptionAttribute(string description)
|
|
: base(description)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets the description.</summary>
|
|
/// <returns>The description for the event, extender, or property.</returns>
|
|
/// <filterpriority>2</filterpriority>
|
|
// Token: 0x1700029A RID: 666
|
|
// (get) Token: 0x06000A20 RID: 2592 RVA: 0x0001B9D0 File Offset: 0x00019BD0
|
|
public override string Description
|
|
{
|
|
get
|
|
{
|
|
return base.DescriptionValue;
|
|
}
|
|
}
|
|
}
|
|
}
|