JoinableTaskCreationOptions Enum

Definition

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

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.

None 0

Specifies that the default behavior should be used.

Applies to