This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,16 @@
using System;
namespace System.Runtime.InteropServices
{
/// <summary>Provides a way for clients to access the actual object, rather than the adapter object handed out by a custom marshaler.</summary>
// Token: 0x02000319 RID: 793
[ComVisible(true)]
public interface ICustomAdapter
{
/// <summary>Provides access to the underlying object wrapped by a custom marshaler.</summary>
/// <returns>The object contained by the adapter object.</returns>
// Token: 0x0600221B RID: 8731
[return: MarshalAs(UnmanagedType.IUnknown)]
object GetUnderlyingObject();
}
}