19 lines
536 B
C#
19 lines
536 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.Runtime.Remoting
|
|
{
|
|
/// <summary>Defines the interface for unwrapping marshal-by-value objects from indirection.</summary>
|
|
// Token: 0x0200043E RID: 1086
|
|
[Guid("C460E2B4-E199-412a-8456-84DC3E4838C3")]
|
|
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
|
|
[ComVisible(true)]
|
|
public interface IObjectHandle
|
|
{
|
|
/// <summary>Unwraps the object.</summary>
|
|
/// <returns>The unwrapped object.</returns>
|
|
// Token: 0x060029C9 RID: 10697
|
|
object Unwrap();
|
|
}
|
|
}
|