ITypeInfo2.CreateInstance(Object, Guid, Object) 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 a new instance of a type that describes a component class (coclass).
public:
void CreateInstance(System::Object ^ pUnkOuter, Guid % riid, [Runtime::InteropServices::Out] System::Object ^ % ppvObj);
public void CreateInstance (object pUnkOuter, ref Guid riid, out object ppvObj);
public void CreateInstance (object? pUnkOuter, ref Guid riid, out object ppvObj);
abstract member CreateInstance : obj * Guid * obj -> unit
Public Sub CreateInstance (pUnkOuter As Object, ByRef riid As Guid, ByRef ppvObj As Object)
Parameters
- pUnkOuter
- Object
An object that acts as the controlling IUnknown
.
- riid
- Guid
The IID of the interface that the caller uses to communicate with the resulting object.
- ppvObj
- Object
When this method returns, contains a reference to the created object. This parameter is passed uninitialized.
Implements
Remarks
For more information, see ITypeInfo::CreateInstance method.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.