12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- // ==++==
- //
- // Copyright (c) Microsoft Corporation. All rights reserved.
- //
- // ==--==
- namespace System.Runtime.InteropServices
- {
- using System;
- [System.Runtime.InteropServices.ComVisible(true)]
- public struct HandleRef
- {
- // ! Do not add or rearrange fields as the EE depends on this layout.
- //------------------------------------------------------------------
- internal Object m_wrapper;
- internal IntPtr m_handle;
- //-----------------------------------------------------------------
- public HandleRef(Object wrapper, IntPtr handle)
- {
- m_wrapper = wrapper;
- m_handle = handle;
- }
- public Object Wrapper
- {
- get
- {
- return m_wrapper;
- }
- }
- public IntPtr Handle
- {
- get
- {
- return m_handle;
- }
- }
- public static explicit operator IntPtr(HandleRef value)
- {
- return value.m_handle;
- }
- public static IntPtr ToIntPtr(HandleRef value)
- {
- return value.m_handle;
- }
- }
- }
|