ThreadPoolOption Enum

Definition

Indicates the thread pool in which the work, submitted by Activity, runs.

public enum class ThreadPoolOption
[System.Runtime.InteropServices.ComVisible(false)]
[System.Serializable]
public enum ThreadPoolOption
[<System.Runtime.InteropServices.ComVisible(false)>]
[<System.Serializable>]
type ThreadPoolOption = 
Public Enum ThreadPoolOption
Inheritance
ThreadPoolOption
Attributes

Fields

Inherit 1

The same type of thread pool apartment as the caller's thread apartment is used.

MTA 3

A multithreaded apartment (MTA) is used.

None 0

No thread pool is used. If this value is used to configure a ServiceConfig that is passed to an Activity, an exception is thrown.

STA 2

A single-threaded apartment (STA) is used.

Remarks

ThreadPoolOption is used for the value of ThreadPool.

Applies to