Class GetThreadState<TThreadState>
Operation signature used to grab state from a calling thread and later pass it on to a newly created thread.
Inheritance
GetThreadState<TThreadState>
Assembly: SoCore.dll
Syntax
public sealed class GetThreadState<out TThreadState> : MulticastDelegate
Type Parameters
Name |
Description |
TThreadState |
Type of state obtained.
|
Constructors
GetThreadState(Object, IntPtr)
Operation signature used to grab state from a calling thread and later pass it on to a newly created thread.
Declaration
public GetThreadState(object object, IntPtr method)
Parameters
Methods
BeginInvoke(AsyncCallback, Object)
Operation signature used to grab state from a calling thread and later pass it on to a newly created thread.
Declaration
public virtual IAsyncResult BeginInvoke(AsyncCallback callback, object object)
Parameters
Returns
EndInvoke(IAsyncResult)
Operation signature used to grab state from a calling thread and later pass it on to a newly created thread.
Declaration
public virtual TThreadState EndInvoke(IAsyncResult result)
Parameters
Returns
Type |
Description |
TThreadState |
|
Invoke()
Operation signature used to grab state from a calling thread and later pass it on to a newly created thread.
Declaration
public virtual TThreadState Invoke()
Returns
Type |
Description |
TThreadState |
|
Extension Methods