COM.createFromVariant(COMVariant) 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 the COM class by using the specified instance of the COMVariant class.
public:
static Dynamics::AX::Application::COM ^ createFromVariant(Dynamics::AX::Application::COMVariant ^ _variant);
public static Dynamics.AX.Application.COM createFromVariant (Dynamics.AX.Application.COMVariant _variant);
static member createFromVariant : Dynamics.AX.Application.COMVariant -> Dynamics.AX.Application.COM
Public Shared Function createFromVariant (_variant As COMVariant) As COM
Parameters
- _variant
- COMVariant
The instance of the COMVariant class to use to create the new instance of the COM class.
Returns
An instance of the COM class for the COM object that is specified by the variant parameter; nullNothingnullptrunita null reference (Nothing in Visual Basic) if the instance of the COM class could not be created.
Remarks
To help reduce security risks that are associated with unmanaged code, make sure that you validate the objects that are passed to this method, and that all DLLs used for your COM objects are protected by access control lists.