EnumeratorToEnumVariantMarshaler.MarshalManagedToNative(Object) Method

Definition

Marshals an object from managed code to unmanaged code.

public:
 override IntPtr MarshalManagedToNative(System::Object ^ pManagedObj);
public:
 virtual IntPtr MarshalManagedToNative(System::Object ^ pManagedObj);
public override IntPtr MarshalManagedToNative (object pManagedObj);
public virtual IntPtr MarshalManagedToNative (object pManagedObj);
abstract member MarshalManagedToNative : obj -> nativeint
override this.MarshalManagedToNative : obj -> nativeint
Public Overrides Function MarshalManagedToNative (pManagedObj As Object) As IntPtr
Public Overridable Function MarshalManagedToNative (pManagedObj As Object) As IntPtr

Parameters

pManagedObj
Object

The managed object to be converted.

Returns

IntPtr

nativeint

A pointer to the unmanaged object.

Implements

Exceptions

pManagedObj is null.

Remarks

The CLR calls this method with the specified instance of a managed object to convert that object from managed code to unmanaged code, and it returns a pointer to the appropriate unmanaged object, representing the COM view of that object.

Applies to