scripts
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user