|
| TaskFactory () |
|
| TaskFactory (CancellationToken cancellationToken, TaskCreationOptions creationOptions, TaskContinuationOptions continuationOptions, TaskScheduler scheduler) |
|
Task | StartNew (global::System.Action< object > action, object state, CancellationToken cancellationToken, TaskCreationOptions creationOptions, TaskScheduler scheduler) |
|
Task< TResult > | StartNew< TResult > (global::System.Func< TResult > function, CancellationToken cancellationToken, TaskCreationOptions creationOptions, TaskScheduler scheduler) |
|
Task< TResult > | StartNew< TResult > (global::System.Func< object, TResult > function, object state, CancellationToken cancellationToken, TaskCreationOptions creationOptions, TaskScheduler scheduler) |
|
Task | FromAsync< TArg1 > (global::System.Func< TArg1, global::System.AsyncCallback, object, global::System.IAsyncResult > beginMethod, global::System.Action< global::System.IAsyncResult > endMethod, TArg1 arg1, object state) |
|
Task | FromAsync< TArg1 > (global::System.Func< TArg1, global::System.AsyncCallback, object, global::System.IAsyncResult > beginMethod, global::System.Action< global::System.IAsyncResult > endMethod, TArg1 arg1, object state, TaskCreationOptions creationOptions) |
|
Task | FromAsync< TArg1, TArg2 > (global::System.Func< TArg1, TArg2, global::System.AsyncCallback, object, global::System.IAsyncResult > beginMethod, global::System.Action< global::System.IAsyncResult > endMethod, TArg1 arg1, TArg2 arg2, object state) |
|
Task | FromAsync< TArg1, TArg2 > (global::System.Func< TArg1, TArg2, global::System.AsyncCallback, object, global::System.IAsyncResult > beginMethod, global::System.Action< global::System.IAsyncResult > endMethod, TArg1 arg1, TArg2 arg2, object state, TaskCreationOptions creationOptions) |
|
| TaskFactory () |
|
| TaskFactory (CancellationToken cancellationToken, TaskCreationOptions creationOptions, TaskContinuationOptions continuationOptions, TaskScheduler scheduler) |
|
Task< TResult > | FromAsync (global::System.Func< global::System.AsyncCallback, object, global::System.IAsyncResult > beginMethod, global::System.Func< global::System.IAsyncResult, TResult > endMethod, object state) |
|
Task< TResult > | FromAsync< TArg1 > (global::System.Func< TArg1, global::System.AsyncCallback, object, global::System.IAsyncResult > beginMethod, global::System.Func< global::System.IAsyncResult, TResult > endMethod, TArg1 arg1, object state) |
|
|
static void | CheckCreationOptions (TaskCreationOptions creationOptions) |
|
static void | CheckFromAsyncOptions (TaskCreationOptions creationOptions, bool hasBeginMethod) |
|
static Task< Task > | CommonCWAnyLogic (global::System.Collections.Generic.IList< Task > tasks) |
|
static void | CheckMultiTaskContinuationOptions (TaskContinuationOptions continuationOptions) |
|
static Task< TResult > | FromAsyncImpl (global::System.Func< global::System.AsyncCallback, object, global::System.IAsyncResult > beginMethod, global::System.Func< global::System.IAsyncResult, TResult > endFunction, global::System.Action< global::System.IAsyncResult > endAction, object state, TaskCreationOptions creationOptions) |
|
static Task< TResult > | FromAsyncImpl< TArg1 > (global::System.Func< TArg1, global::System.AsyncCallback, object, global::System.IAsyncResult > beginMethod, global::System.Func< global::System.IAsyncResult, TResult > endFunction, global::System.Action< global::System.IAsyncResult > endAction, TArg1 arg1, object state, TaskCreationOptions creationOptions) |
|
static Task< TResult > | FromAsyncImpl< TArg1, TArg2 > (global::System.Func< TArg1, TArg2, global::System.AsyncCallback, object, global::System.IAsyncResult > beginMethod, global::System.Func< global::System.IAsyncResult, TResult > endFunction, global::System.Action< global::System.IAsyncResult > endAction, TArg1 arg1, TArg2 arg2, object state, TaskCreationOptions creationOptions) |
|
static Task< TResult > | FromAsyncTrim< TInstance, TArgs > (TInstance thisRef, TArgs args, global::System.Func< TInstance, TArgs, global::System.AsyncCallback, object, global::System.IAsyncResult > beginMethod, global::System.Func< TInstance, global::System.IAsyncResult, TResult > endMethod) |
|
Definition at line 11 of file TaskFactory.cs.