Marshal.GetThreadFromFiberCookie(Int32) 方法

定义

注意

The GetThreadFromFiberCookie method has been deprecated. Use the hosting API to perform this operation.

将纤程 cookie 转换为相应的 Thread 实例。

public:
 static System::Threading::Thread ^ GetThreadFromFiberCookie(int cookie);
public static System.Threading.Thread GetThreadFromFiberCookie (int cookie);
[System.Obsolete("The GetThreadFromFiberCookie method has been deprecated.  Use the hosting API to perform this operation.", false)]
public static System.Threading.Thread GetThreadFromFiberCookie (int cookie);
[System.Obsolete("The GetThreadFromFiberCookie method has been deprecated.  Use the hosting API to perform this operation.", false)]
[System.Security.SecurityCritical]
public static System.Threading.Thread GetThreadFromFiberCookie (int cookie);
static member GetThreadFromFiberCookie : int -> System.Threading.Thread
[<System.Obsolete("The GetThreadFromFiberCookie method has been deprecated.  Use the hosting API to perform this operation.", false)>]
static member GetThreadFromFiberCookie : int -> System.Threading.Thread
[<System.Obsolete("The GetThreadFromFiberCookie method has been deprecated.  Use the hosting API to perform this operation.", false)>]
[<System.Security.SecurityCritical>]
static member GetThreadFromFiberCookie : int -> System.Threading.Thread
Public Shared Function GetThreadFromFiberCookie (cookie As Integer) As Thread

参数

cookie
Int32

表示纤程 Cookie 的整数。

返回

对应于 cookie 参数的线程。

属性

例外

cookie 参数为 0。

注解

纤程 Cookie 是主机在向公共语言运行时发出其纤程计划决策警报时使用的不透明令牌。 它们由堆栈和寄存器上下文组成。

适用于

另请参阅