CMSThreadWrapFuncTResult Method (FuncTResult, Boolean) |
Wraps the given method into CMSThread context
Namespace: CMS.BaseAssembly: CMS.Base (in CMS.Base.dll) Version: 11.0.0
Syntax public static Func<TResult> WrapFunc<TResult>(
Func<TResult> action,
bool multipleThreads = false
)
Parameters
- action
- Type: SystemFuncTResult
Action to wrap - multipleThreads (Optional)
- Type: SystemBoolean
If true, the wrapped method may be used by multiple threads. Use this parameter to ensure that all the threads receive the original context values.
Type Parameters
- TResult
Return Value
Type:
FuncTResultSee Also