Table of Contents

Class PersonalDataHelper

Namespace
CMS.DataProtection
Assembly
CMS.DataProtection.dll

Contains helper methods for personal data processing.

public class PersonalDataHelper : AbstractHelper<PersonalDataHelper>
Inheritance
object
PersonalDataHelper
Inherited Members
Extension Methods

Methods

JoinPersonalData(IEnumerable<string>, string)

Joins individual results (Text) of personal data collection.

public static string JoinPersonalData(IEnumerable<string> personalData, string outputFormat)

Parameters

personalData IEnumerable<string>

Enumeration of individual personal data (Text) obtained from collectors.

outputFormat string

Output format to determine proper join method.

Returns

string

Returns joined personalData with respect to outputFormat.

Remarks

The default system implementation supports HUMAN_READABLE and MACHINE_READABLE output format.

Exceptions

ArgumentNullException

Thrown when personalData or outputFormat is null.

NotSupportedException

Thrown when given outputFormat is not supported.

See Also
CollectData(IEnumerable<BaseInfo>, string)

JoinPersonalDataInternal(IEnumerable<string>, string)

Joins individual results (Text) of personal data collection.

protected virtual string JoinPersonalDataInternal(IEnumerable<string> personalData, string outputFormat)

Parameters

personalData IEnumerable<string>

Enumeration of individual personal data (Text) obtained from collectors.

outputFormat string

Output format to determine proper join method.

Returns

string

Returns joined personalData with respect to outputFormat, or empty string for empty personalData.

Remarks

The default system implementation supports HUMAN_READABLE and MACHINE_READABLE output format.

Exceptions

ArgumentNullException

Thrown when personalData or outputFormat is null.

NotSupportedException

Thrown when given outputFormat is not supported.

See Also
CollectData(IEnumerable<BaseInfo>, string)