Click or drag to resize
CustomProcessorFactoryRegisterProcessor Method
Registers given processorMethod to objectType. Processor will be instantiated by calling the processorMethod.

Namespace: CMS.ContinuousIntegration.Internal
Assembly: CMS.ContinuousIntegration (in CMS.ContinuousIntegration.dll) Version: 10.0.0
Syntax
C#
public static void RegisterProcessor(
	string objectType,
	Func<AbstractFileSystemJob, ICustomProcessor> processorMethod
)

Parameters

objectType
Type: SystemString
Object type to associate the processorMethod with.
processorMethod
Type: SystemFuncAbstractFileSystemJob, ICustomProcessor
Method returning implementation of the ICustomProcessor interface that should handle given objectType.
See Also