Click or drag to resize
RepositoryConfigurationEvaluatorAddObjectTypeTransformation Method
Registers a new transformation function which processes given object type string into another string that will be used in repository configuration evaluations instead of the original one.

Namespace: CMS.ContinuousIntegration.Internal
Assembly: CMS.ContinuousIntegration (in CMS.ContinuousIntegration.dll) Version: 11.0.0
Syntax
C#
public static void AddObjectTypeTransformation(
	string prefix,
	Func<string, string> transformation
)

Parameters

prefix
Type: SystemString
Transformation function will be executed only on object type strings that match this prefix.
transformation
Type: SystemFuncString, String
Transformation function to be registered.
See Also