BasicThreadSendAction Method |
Dispatches a synchronous action to a BasicThread's context.
Namespace: WinWrap.Basic.ServerAssembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntaxpublic void SendAction(
Action<BasicNoUIObj> action
)
Public Sub SendAction (
action As Action(Of BasicNoUIObj)
)
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