This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,27 @@
using System;
using Cpp2IlInjected;
namespace System.Runtime.InteropServices
{
/// <summary>Specifies a default interface to expose to COM. This class cannot be inherited.</summary>
// Token: 0x02000569 RID: 1385
[Token(Token = "0x2000569")]
[AttributeUsage(AttributeTargets.Class)]
[ComVisible(true)]
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: 0x06002A98 RID: 10904 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002A98")]
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
public ComDefaultInterfaceAttribute(Type defaultInterface)
{
}
// Token: 0x040018B4 RID: 6324
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40018B4")]
internal Type _val;
}
}