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