JoinableTaskCreationOptions Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies flags that control optional behavior for the creation and execution of tasks.
This enumeration supports a bitwise combination of its member values.
public enum class JoinableTaskCreationOptions
public enum class JoinableTaskCreationOptions
enum JoinableTaskCreationOptions
[System.Flags]
[System.Serializable]
public enum JoinableTaskCreationOptions
[<System.Flags>]
[<System.Serializable>]
type JoinableTaskCreationOptions =
Public Enum JoinableTaskCreationOptions
- Inheritance
-
JoinableTaskCreationOptions
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Specifies that the default behavior should be used. |
LongRunning | 1 | Specifies that a task will be a long-running operation. It provides a hint to the JoinableTaskContext that hang report should not be fired, when the main thread task is blocked on it. |