Version

ProcessCompletedTask Method

Override to specify how a completed task is handled. This should call the PageLoaded callback, synchronizing with the ExecutionContext, if a page has been successfully loaded.
Syntax
'Declaration
 
Protected Overridable Sub ProcessCompletedTask( _
   ByVal task As AsyncDataSourcePageTaskHolder, _
   ByVal retryDelay As Integer, _
   ByVal index As Integer, _
   ByVal taskDataHolder As AsyncVirtualDataSourceProviderTaskDataHolder _
) 
protected virtual void ProcessCompletedTask( 
   AsyncDataSourcePageTaskHolder task,
   int retryDelay,
   int index,
   AsyncVirtualDataSourceProviderTaskDataHolder taskDataHolder
)

Parameters

task
The completed task.
retryDelay
The current retry delay to apply if the task was not successful.
index
The index of the completed task.
taskDataHolder
The implementation specific task data.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also