Files
Dec2017-Script-Dump/mscorlib/System/Runtime/InteropServices/ICustomAdapter.cs
T
2026-06-04 11:42:34 +02:00

17 lines
575 B
C#

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();
}
}