using System;
using System.Runtime.InteropServices;
namespace System.Reflection
{
/// Defines a product name custom attribute for an assembly manifest.
// Token: 0x02000231 RID: 561
[AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
[ComVisible(true)]
public sealed class AssemblyProductAttribute : Attribute
{
/// Initializes a new instance of the class.
/// The product name information.
// Token: 0x06001DA5 RID: 7589 RVA: 0x0006EB3C File Offset: 0x0006CD3C
public AssemblyProductAttribute(string product)
{
this.name = product;
}
/// Gets product name information.
/// A string containing the product name.
// Token: 0x17000559 RID: 1369
// (get) Token: 0x06001DA6 RID: 7590 RVA: 0x0006EB4C File Offset: 0x0006CD4C
public string Product
{
get
{
return this.name;
}
}
// Token: 0x04000A00 RID: 2560
private string name;
}
}