Edit

Share via


ComWrappers.CreateObject Method

Definition

Overloads

CreateObject(IntPtr, CreateObjectFlags)

Creates a managed object for the object that externalComObject points to, respecting the values of flags.

CreateObject(IntPtr, CreateObjectFlags, Object, CreatedWrapperFlags)

Creates a managed object for the object pointed at by externalComObject respecting the values of flags.

CreateObject(IntPtr, CreateObjectFlags)

Source:
ComWrappers.cs
Source:
ComWrappers.cs
Source:
ComWrappers.cs
Source:
ComWrappers.cs

Creates a managed object for the object that externalComObject points to, respecting the values of flags.

protected:
 abstract System::Object ^ CreateObject(IntPtr externalComObject, System::Runtime::InteropServices::CreateObjectFlags flags);
protected abstract object? CreateObject(IntPtr externalComObject, System.Runtime.InteropServices.CreateObjectFlags flags);
abstract member CreateObject : nativeint * System.Runtime.InteropServices.CreateObjectFlags -> obj
Protected MustOverride Function CreateObject (externalComObject As IntPtr, flags As CreateObjectFlags) As Object

Parameters

externalComObject
IntPtr

nativeint

Object to import for usage into the .NET runtime.

flags
CreateObjectFlags

Flags used to describe the external object.

Returns

A managed object associated with the supplied external COM object.

Remarks

If the object cannot be created and null is returned, the call to GetOrCreateObjectForComInstance(IntPtr, CreateObjectFlags) will throw a ArgumentNullException.

Applies to

CreateObject(IntPtr, CreateObjectFlags, Object, CreatedWrapperFlags)

Creates a managed object for the object pointed at by externalComObject respecting the values of flags.

protected:
 virtual System::Object ^ CreateObject(IntPtr externalComObject, System::Runtime::InteropServices::CreateObjectFlags flags, System::Object ^ userState, [Runtime::InteropServices::Out] System::Runtime::InteropServices::CreatedWrapperFlags % wrapperFlags);
protected virtual object? CreateObject(IntPtr externalComObject, System.Runtime.InteropServices.CreateObjectFlags flags, object? userState, out System.Runtime.InteropServices.CreatedWrapperFlags wrapperFlags);
abstract member CreateObject : nativeint * System.Runtime.InteropServices.CreateObjectFlags * obj * CreatedWrapperFlags -> obj
override this.CreateObject : nativeint * System.Runtime.InteropServices.CreateObjectFlags * obj * CreatedWrapperFlags -> obj
Protected Overridable Function CreateObject (externalComObject As IntPtr, flags As CreateObjectFlags, userState As Object, ByRef wrapperFlags As CreatedWrapperFlags) As Object

Parameters

externalComObject
IntPtr

nativeint

The object to import for usage into the .NET runtime.

flags
CreateObjectFlags

A bitwise combination of the enumeration values that describes the external object.

userState
Object

The user state provided by the call to GetOrCreateObjectForComInstance(IntPtr, CreateObjectFlags, Object).

wrapperFlags
CreatedWrapperFlags

When this method returns, contains the flags used to describe the created wrapper object.

Returns

Returns a managed object associated with the supplied external COM object.

Remarks

The default implementation throws NotImplementedException.

If the object can't be created and null is returned, the call to GetOrCreateObjectForComInstance(IntPtr, CreateObjectFlags, Object) will throw an ArgumentNullException.

Applies to