This documentation is archived and is not being maintained.
TaskCompletionSource<TResult>::Task Property
Visual Studio 2010
Gets the Task<TResult> created by this TaskCompletionSource<TResult>.
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: System.Threading.Tasks::Task<TResult>Returns the Task<TResult> created by this TaskCompletionSource<TResult>.
This property enables a consumer to access the Task<TResult> that is controlled by this instance. When you create a TaskCompletionSource<TResult> object, the Status property of this Task object returns WaitingForActivation.
The SetResult, SetException, SetException, and SetCanceled methods (and their "Try" variants) on this instance all result in the relevant state transitions on this underlying Task.
Windows 7, 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
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: