using System;
namespace System.Runtime.InteropServices
{
/// Specifies the class identifier of a coclass imported from a type library.
// Token: 0x0200004C RID: 76
[ComVisible(true)]
[AttributeUsage(AttributeTargets.Interface, Inherited = false)]
public sealed class CoClassAttribute : Attribute
{
/// Initializes new instance of the with the class identifier of the original coclass.
/// A that contains the class identifier of the original coclass.
// Token: 0x06000671 RID: 1649 RVA: 0x00014BA8 File Offset: 0x00012DA8
public CoClassAttribute(Type coClass)
{
this.klass = coClass;
}
/// Gets the class identifier of the original coclass.
/// A containing the class identifier of the original coclass.
// Token: 0x170000B8 RID: 184
// (get) Token: 0x06000672 RID: 1650 RVA: 0x00014BB8 File Offset: 0x00012DB8
public Type CoClass
{
get
{
return this.klass;
}
}
// Token: 0x040000A0 RID: 160
private Type klass;
}
}