36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.Reflection
|
|
{
|
|
/// <summary>Defines a copyright custom attribute for an assembly manifest.</summary>
|
|
// Token: 0x02000225 RID: 549
|
|
[ComVisible(true)]
|
|
[AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
|
|
public sealed class AssemblyCopyrightAttribute : Attribute
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.AssemblyCopyrightAttribute" /> class.</summary>
|
|
/// <param name="copyright">The copyright information. </param>
|
|
// Token: 0x06001D65 RID: 7525 RVA: 0x0006E108 File Offset: 0x0006C308
|
|
public AssemblyCopyrightAttribute(string copyright)
|
|
{
|
|
this.name = copyright;
|
|
}
|
|
|
|
/// <summary>Gets copyright information.</summary>
|
|
/// <returns>A string containing the copyright information.</returns>
|
|
// Token: 0x17000543 RID: 1347
|
|
// (get) Token: 0x06001D66 RID: 7526 RVA: 0x0006E118 File Offset: 0x0006C318
|
|
public string Copyright
|
|
{
|
|
get
|
|
{
|
|
return this.name;
|
|
}
|
|
}
|
|
|
|
// Token: 0x040009E2 RID: 2530
|
|
private string name;
|
|
}
|
|
}
|