28 lines
1.1 KiB
C#
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: 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;
|
|
}
|
|
}
|