Table of Contents
ThreadRunnerBase.Send Method (Func`1, Int32, Boolean)

Executes an action in this ThreadRunnerBase's thread.

Syntax
 public object Send(
   Func<T> action,
   int timeoutInMS,
   out bool done
);

Parameters

action
The action delegate.
timeoutInMS
The time out value in milliseconds.
done
Whether the action has been sucessfully executed before time out expires.
See Also