Class PersonalDataHelper
- Namespace
- CMS.DataProtection
- Assembly
- CMS.DataProtection.dll
Contains helper methods for personal data processing.
public class PersonalDataHelper : AbstractHelper<PersonalDataHelper>
- Inheritance
-
objectPersonalDataHelper
- 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
stringOutput format to determine proper join method.
Returns
- string
Returns joined
personalData
with respect tooutputFormat
.
Remarks
The default system implementation supports HUMAN_READABLE and MACHINE_READABLE output format.
Exceptions
- ArgumentNullException
Thrown when
personalData
oroutputFormat
is null.- NotSupportedException
Thrown when given
outputFormat
is not supported.
- See Also
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
stringOutput format to determine proper join method.
Returns
- string
Returns joined
personalData
with respect tooutputFormat
, or empty string for emptypersonalData
.
Remarks
The default system implementation supports HUMAN_READABLE and MACHINE_READABLE output format.
Exceptions
- ArgumentNullException
Thrown when
personalData
oroutputFormat
is null.- NotSupportedException
Thrown when given
outputFormat
is not supported.
- See Also