ObjectCreationDelegate Delegate
.NET Framework (current version)
Creates a COM object.
Assembly: mscorlib (in mscorlib.dll)
[<ComVisibleAttribute(true)>] type ObjectCreationDelegate = delegate of aggregator:nativeint -> nativeint
Parameters
- aggregator
-
Type:
System.IntPtr
A pointer to the managed object's IUnknown interface.
Return Value
Type: System.IntPtrAn IntPtr object that represents the IUnknown interface of the COM object.
This delegate is called to create a COM object as an alternative to CoCreateInstance when a managed object needs to create a new instance of its unmanaged portion. The IUnknown interface of the managed object is passed as a parameter and the delegate should return the IUnknown interface of the unmanaged object. Both interfaces are passed as type IntPtr to avoid marshaling.
Every derived class of Delegate and MulticastDelegate has a constructor and an Invoke method.
.NET Framework
Available since 1.1
Available since 1.1
Show: