Click or drag to resize
PersonalDataHelperJoinPersonalData Method
Joins individual results (Text) of personal data collection.

Namespace: CMS.DataProtection
Assembly: CMS.DataProtection (in CMS.DataProtection.dll) Version: 11.0.0
Syntax
C#
public static string JoinPersonalData(
	IEnumerable<string> personalData,
	string outputFormat
)

Parameters

personalData
Type: System.Collections.GenericIEnumerableString
Enumeration of individual personal data (Text) obtained from collectors.
outputFormat
Type: SystemString
Output format to determine proper join method.

Return Value

Type: String
Returns joined personalData with respect to outputFormat.
Exceptions
ExceptionCondition
ArgumentNullExceptionThrown when personalData or outputFormat is null.
NotSupportedExceptionThrown when given outputFormat is not supported.
Remarks
The default system implementation supports HUMAN_READABLE and MACHINE_READABLE output format.
See Also