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

Namespace: CMS.DataProtection
Assembly: CMS.DataProtection (in CMS.DataProtection.dll) Version: 12.0.0
Syntax
C#
protected virtual string JoinPersonalDataInternal(
	IEnumerable<string> personalData,
	string outputFormat
)

Parameters

personalData
Type: System.Collections.Generic.IEnumerable<String>
Enumeration of individual personal data (Text) obtained from collectors.
outputFormat
Type: System.String
Output format to determine proper join method.

Return Value

Type: String
Returns joined personalData with respect to outputFormat, or empty string for empty personalData.
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