28 lines
1.2 KiB
C#
28 lines
1.2 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Runtime.InteropServices
|
|
{
|
|
/// <summary>Indicates the type of class interface to be generated for a class exposed to COM, if an interface is generated at all.</summary>
|
|
// Token: 0x0200056B RID: 1387
|
|
[Token(Token = "0x200056B")]
|
|
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class)]
|
|
[ComVisible(true)]
|
|
public sealed class ClassInterfaceAttribute : Attribute
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ClassInterfaceAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.ClassInterfaceType" /> enumeration member.</summary>
|
|
/// <param name="classInterfaceType">One of the <see cref="T:System.Runtime.InteropServices.ClassInterfaceType" /> values that describes the type of interface that is generated for a class.</param>
|
|
// Token: 0x06002A99 RID: 10905 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6002A99")]
|
|
[Address(RVA = "0x4D83A0", Offset = "0x4D71A0", VA = "0x1804D83A0")]
|
|
public ClassInterfaceAttribute(ClassInterfaceType classInterfaceType)
|
|
{
|
|
}
|
|
|
|
// Token: 0x040018B9 RID: 6329
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x40018B9")]
|
|
internal ClassInterfaceType _val;
|
|
}
|
|
}
|