Click or drag to resize
CMSThreadWrapT Method (ActionT, Boolean)
Wraps the given method into CMSThread context

Namespace: CMS.Base
Assembly: CMS.Base (in CMS.Base.dll) Version: 8.2.23
Syntax
C#
public static Action<T> Wrap<T>(
	Action<T> action,
	bool multipleThreads = false
)

Parameters

action
Type: SystemActionT
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

T

Return Value

Type: ActionT
See Also