IGenericObjectCreateChildAsyncT Method (AsyncHandle, FuncResponse, T, GenericObjectProperties, GenericObjectProperties) |
Creation of child generic object
Namespace: Qlik.EngineAssembly: Qlik.Engine (in Qlik.Engine.dll) Version: 2.1.0.0+Build:7.origin/release/ms13
SyntaxTask<T> CreateChildAsync<T>(
AsyncHandle asyncHandle,
Func<Response, T> onResult,
GenericObjectProperties prop,
GenericObjectProperties propForThis = null
)
where T : GenericObject
Function CreateChildAsync(Of T As GenericObject) (
asyncHandle As AsyncHandle,
onResult As Func(Of Response, T),
prop As GenericObjectProperties,
Optional propForThis As GenericObjectProperties = Nothing
) As Task(Of T)
Parameters
- asyncHandle
- Type: Qlik.EngineAsyncHandle
Handle to asynchronous method request - onResult
- Type: SystemFuncResponse, T
Continuation function - prop
- Type: Qlik.EngineGenericObjectProperties
Properties of the child to create - propForThis (Optional)
- Type: Qlik.EngineGenericObjectProperties
Properties of the parent object (this)
Type Parameters
- T
- Type of the child to create
Return Value
Type:
TaskTA task with the created object as type T
See Also