This documentation is archived and is not being maintained.
ObjectCreationDelegate Delegate
Visual Studio 2010
Creates a COM object.
Assembly: mscorlib (in mscorlib.dll)
[ComVisibleAttribute(true)] public delegate IntPtr ObjectCreationDelegate( IntPtr aggregator )
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.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: