IExtensionServiceActivateComponent Method |
Activates the component of the specified type.
Namespace:
Dundas.BI.Extensibility
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (9.0.0.1000)
SyntaxObject ActivateComponent(
Type type,
params Object[] args
)
Function ActivateComponent (
type As Type,
ParamArray args As Object()
) As Object
Object^ ActivateComponent(
Type^ type,
... array<Object^>^ args
)
abstract ActivateComponent :
type : Type *
args : Object[] -> Object
Parameters
- type
- Type: SystemType
The type to activate. - args
- Type: SystemObject
The arguments required by the type's constructor.
Return Value
Type:
ObjectA new instance of the specified type, or
if there was an error.
Exceptions| Exception | Condition |
|---|
| ArgumentNullException | type was . |
Remarks
If
type inherits from
ComponentBase and is part of an extension package,
the
PackageId property will be automatically set by this method.
See Also