Marshal.GetThreadFromFiberCookie(Int32) 方法     
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
注意
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 是主机在向公共语言运行时发出光纤计划决策警报时使用的不透明令牌。 它们由堆栈和寄存器上下文组成。