TaskScheduler.TryExecuteTask Method
For apps that target Windows Phone OS 7.0 and 7.1, do not use this member in your app. If you do, your code will throw a MethodAccessException. This member is security-critical, which restricts it to internal use by the .NET Framework for Windows Phone class library.
Assembly: mscorlib (in mscorlib.dll)
A Boolean that is true if task was successfully executed, false if it was not. A common reason for execution failure is that the task had previously been executed or is in the process of being executed by another thread.
[SECURITY CRITICAL]
Namespace:
System.Threading.Tasks[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Attempts to execute the provided Task on this scheduler.
Assembly: mscorlib (in mscorlib.dll)
'Declaration <SecurityCriticalAttribute> _ Protected Function TryExecuteTask ( _ task As Task _ ) As Boolean
Parameters
- task
- Type: System.Threading.Tasks.Task
A Task object to be executed.
Return Value
Type: System.BooleanA Boolean that is true if task was successfully executed, false if it was not. A common reason for execution failure is that the task had previously been executed or is in the process of being executed by another thread.
Show: