using System;
namespace System.Runtime.InteropServices
{
/// Supplies an explicit when an automatic GUID is undesirable.
// Token: 0x02000048 RID: 72
[ComVisible(true)]
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Interface | AttributeTargets.Delegate, Inherited = false)]
public sealed class GuidAttribute : Attribute
{
/// Initializes a new instance of the class with the specified GUID.
/// The to be assigned.
// Token: 0x0600066A RID: 1642 RVA: 0x00014B58 File Offset: 0x00012D58
public GuidAttribute(string guid)
{
this.guidValue = guid;
}
/// Gets the of the class.
/// The of the class.
// Token: 0x170000B5 RID: 181
// (get) Token: 0x0600066B RID: 1643 RVA: 0x00014B68 File Offset: 0x00012D68
public string Value
{
get
{
return this.guidValue;
}
}
// Token: 0x0400009D RID: 157
private string guidValue;
}
}