|  | AsyncInitBaseT, TArg1, TArg2InitAsync Method  | 
 
            Asynchronously initializes an instance. Overridden by the deriving type.
            
 
    Namespace: 
   Ditto.AsyncInit
    Assembly:
   Ditto.AsyncInit (in Ditto.AsyncInit.dll) Version: 1.5.0.2281
 Syntax
Syntaxprotected abstract Task InitAsync(
	TArg1 arg1,
	TArg2 arg2
)
Protected MustOverride Function InitAsync ( 
	arg1 As TArg1,
	arg2 As TArg2
) As Task
protected:
virtual Task^ InitAsync(
	TArg1 arg1, 
	TArg2 arg2
) abstract
abstract InitAsync : 
        arg1 : 'TArg1 * 
        arg2 : 'TArg2 -> Task 
Parameters
- arg1
- Type: TArg1
 The first initialization argument.
- arg2
- Type: TArg2
 The second initialization argument.
Return Value
Type: 
TaskA 
Task capturing the initialization.
 See Also
See Also