ILocalRegistryCorrected.CreateInstance Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates an instance of a class listed in the local registry.
public:
int CreateInstance(Guid clsid, IntPtr punkOuterIUnknown, Guid % riid, System::UInt32 dwFlags, [Runtime::InteropServices::Out] IntPtr % ppvObj);
public int CreateInstance (Guid clsid, IntPtr punkOuterIUnknown, ref Guid riid, uint dwFlags, out IntPtr ppvObj);
abstract member CreateInstance : Guid * nativeint * Guid * uint32 * nativeint -> int
Public Function CreateInstance (clsid As Guid, punkOuterIUnknown As IntPtr, ByRef riid As Guid, dwFlags As UInteger, ByRef ppvObj As IntPtr) As Integer
Parameters
- clsid
- Guid
[in] Class identifier (CLSID) of the requested object. This is the CLSID associated with the data and code that is used to create the object.
- punkOuterIUnknown
-
IntPtr
nativeint
[in] Pointer to the IUnknown
interface of the newly created object. A value of null indicates that the object is not being created as part of an aggregate. If non-null, this is a pointer to the aggregate object's IUnknown
.
- riid
- Guid
[in] Interface to be used to communicate with the object. For example, IID_IClassFactory
.
- dwFlags
- UInt32
[in] Flags controlling the instance creation from the CLSCTX enumeration. Specifies a value of CLSCTX_INPROC_SERVER.
- ppvObj
-
IntPtr
nativeint
[out] Address of pointer variable that receives the interface pointer requested in riid
. Upon successful return, ppvObj
contains the requested interface pointer. Upon failure, ppvObj
contains null
.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
The CreateInstance
method is equivalent to COM's CoCreateInstance
function. It creates a single uninitialized object of the kind associated with the specified CLSID and returns any requested interface pointers.
CreateInstance
looks up the class object in the local registry of registered objects, connects to the class object associated with the specified CLSID, creates an uninitialized instance of the object, and releases the class object. This method encapsulates calls to the COM function CoGetClassObject
to get a pointer to the object's class factory, to CreateInstance
to create an instance of the object, and to Release the reference to the object's class factory.
Note
Call CreateInstance
when you want to create a single instance of an object based on a CLSID and do not need to keep the class factory object to create other instances of the object. To create multiple objects from a single class object, use the GetClassObjectOfClsid method.
This method registers an object in the local registry hive (for example, [HKEY_LOCAL_MACHINE\Software\Microsoft\VisualStudio\8.0\CLSID]). In this section of the registry, InProcServer32 is used as a value rather than a subkey. We only support instantiating objects on the main UI thread.
Specify a value of CLSCTX_INPROC_SERVER for the dwFlags
parameter to instantiate the object locally. If you do not specify this value, then the object will be instantiated globally using COM's CoCreateInstance
function.