36 lines
1000 B
C#
36 lines
1000 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.Reflection
|
|
{
|
|
/// <summary>Specifies a description for an assembly.</summary>
|
|
// Token: 0x02000232 RID: 562
|
|
[AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
|
|
[ComVisible(true)]
|
|
public sealed class AssemblyTitleAttribute : Attribute
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.AssemblyTitleAttribute" /> class.</summary>
|
|
/// <param name="title">The assembly title. </param>
|
|
// Token: 0x06001DA7 RID: 7591 RVA: 0x0006EB54 File Offset: 0x0006CD54
|
|
public AssemblyTitleAttribute(string title)
|
|
{
|
|
this.name = title;
|
|
}
|
|
|
|
/// <summary>Gets assembly title information.</summary>
|
|
/// <returns>The assembly title.</returns>
|
|
// Token: 0x1700055A RID: 1370
|
|
// (get) Token: 0x06001DA8 RID: 7592 RVA: 0x0006EB64 File Offset: 0x0006CD64
|
|
public string Title
|
|
{
|
|
get
|
|
{
|
|
return this.name;
|
|
}
|
|
}
|
|
|
|
// Token: 0x04000A01 RID: 2561
|
|
private string name;
|
|
}
|
|
}
|