ManualResetEventSlim 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 ManualResetEventSlim 类的新实例。
重载
ManualResetEventSlim() |
使用无信号初始状态初始化 ManualResetEventSlim 类的新实例。 |
ManualResetEventSlim(Boolean) |
用一个指示是否将初始状态设置为终止的布尔值初始化 ManualResetEventSlim 类的新实例。 |
ManualResetEventSlim(Boolean, Int32) |
使用一个指示是否将初始状态设置为有信号和指定自旋计数的布尔值初始化 ManualResetEventSlim 类的新实例。 |
ManualResetEventSlim()
- Source:
- ManualResetEventSlim.cs
- Source:
- ManualResetEventSlim.cs
- Source:
- ManualResetEventSlim.cs
使用无信号初始状态初始化 ManualResetEventSlim 类的新实例。
public:
ManualResetEventSlim();
public ManualResetEventSlim ();
Public Sub New ()
另请参阅
适用于
ManualResetEventSlim(Boolean)
- Source:
- ManualResetEventSlim.cs
- Source:
- ManualResetEventSlim.cs
- Source:
- ManualResetEventSlim.cs
用一个指示是否将初始状态设置为终止的布尔值初始化 ManualResetEventSlim 类的新实例。
public:
ManualResetEventSlim(bool initialState);
public ManualResetEventSlim (bool initialState);
new System.Threading.ManualResetEventSlim : bool -> System.Threading.ManualResetEventSlim
Public Sub New (initialState As Boolean)
参数
- initialState
- Boolean
若要将初始状态设置为终止,则为 true;若要将初始状态设置为非终止,则为 false。
另请参阅
适用于
ManualResetEventSlim(Boolean, Int32)
- Source:
- ManualResetEventSlim.cs
- Source:
- ManualResetEventSlim.cs
- Source:
- ManualResetEventSlim.cs
使用一个指示是否将初始状态设置为有信号和指定自旋计数的布尔值初始化 ManualResetEventSlim 类的新实例。
public:
ManualResetEventSlim(bool initialState, int spinCount);
public ManualResetEventSlim (bool initialState, int spinCount);
new System.Threading.ManualResetEventSlim : bool * int -> System.Threading.ManualResetEventSlim
Public Sub New (initialState As Boolean, spinCount As Integer)
参数
- initialState
- Boolean
若要将初始状态设置为终止,则为 true;若要将初始状态设置为非终止,则为 false。
- spinCount
- Int32
在回退到基于内核的等待操作之前发生的自旋等待数量。
例外
spinCount
小于 0 或大于允许的最大值。