Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

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: 0x0200058A RID: 1418
[Token(Token = "0x200058A")]
[ComVisible(true)]
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class)]
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: 0x06002CAD RID: 11437 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002CAD")]
[Address(RVA = "0x41F8E0", Offset = "0x41E8E0", VA = "0x18041F8E0")]
public ClassInterfaceAttribute(ClassInterfaceType classInterfaceType)
{
}
// Token: 0x0400197C RID: 6524
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400197C")]
internal ClassInterfaceType _val;
}
}