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

28 lines
1.1 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Runtime.InteropServices
{
/// <summary>Specifies a default interface to expose to COM. This class cannot be inherited.</summary>
// Token: 0x02000588 RID: 1416
[Token(Token = "0x2000588")]
[ComVisible(true)]
[AttributeUsage(AttributeTargets.Class)]
public sealed class ComDefaultInterfaceAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComDefaultInterfaceAttribute" /> class with the specified <see cref="T:System.Type" /> object as the default interface exposed to COM.</summary>
/// <param name="defaultInterface">A <see cref="T:System.Type" /> value indicating the default interface to expose to COM.</param>
// Token: 0x06002CAC RID: 11436 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002CAC")]
[Address(RVA = "0x681CA0", Offset = "0x680CA0", VA = "0x180681CA0")]
public ComDefaultInterfaceAttribute(Type defaultInterface)
{
}
// Token: 0x04001977 RID: 6519
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4001977")]
internal Type _val;
}
}