Click or drag to resize

DynamicTaskBuilderCanCallTargetMethodDirectly Method

Determines whether the target method of a delegate can be called directly by a generated task class, or if the delegate needs to be serialized.

Namespace:  Ookii.Jumbo.Jet.Jobs.Builder
Assembly:  Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax
public static bool CanCallTargetMethodDirectly(
	Delegate target
)

Parameters

target
Type: SystemDelegate
The delegate.

Return Value

Type: Boolean
if the target method of a delegate can be called directly; if the delegate needs to be serialized using SerializeDelegate(SettingsDictionary, Delegate).
See Also