Click or drag to resize

BasicThreadSendAction Method

Dispatches a synchronous action to a BasicThread's context.

Namespace: WinWrap.Basic.Server
Assembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntax
public void SendAction(
	Action<BasicNoUIObj> action
)

Parameters

action  ActionBasicNoUIObj
Action<BasicNoUIObj> delegate called in BasicThread's context. The basic object passed to the delegate is the BasicNoUIObj managed by the thread/context.
Remarks
This call executes synchronously. Exceptions thrown by the delegate are thrown in the caller's context.
See Also