Open this page in the API Guide

ICallerContextService.SpawnTask<TResult> Method

Creates an asynchronous task which inherits the properties of the current caller context.

Namespace:  Dundas.BI
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax
Task<TResult> SpawnTask<TResult>(
	string name,
	Func<TResult> func,
	GroupCancellationToken cancellationToken
)

Parameters

name
Type: System.String
A name which will be assigned to the spawned operation (used for diagnostic purposes).
func
Type: System.Func<TResult>
The function to invoke asynchronously.
cancellationToken
Type: Dundas.BI.Data.DataRetrieval.GroupCancellationToken
The cancellation token.

Type Parameters

TResult
The type of object returned by the task.

Return Value

Type: Task<TResult>
A task object representing the asynchronous operation.
Exceptions
ExceptionCondition
ArgumentNullExceptionfunc is null.
See Also