Click or drag to resize

ExportSettingsReadExportedFieldsFromCsvMappingFile Method

Reads (parses) all ExportField from a previously exported (and optionally modified) comma separated value (.csv) mapping file. See methods GetSupportedExportFields and WriteExportedFieldsToCsvMappingFile(String, ListExportField, Boolean) for exporting a .csv mapping file that can be edited by user.

Namespace: OpenDiscoverSDK.Interfaces.Platform.LoadFile
Assembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2025.4.6.0 (2025.4.6)
Syntax
C#
public static List<ExportField> ReadExportedFieldsFromCsvMappingFile(
	string csvFilePath
)

Parameters

csvFilePath  String

Return Value

ListExportField

[Missing <returns> documentation for "M:OpenDiscoverSDK.Interfaces.Platform.LoadFile.ExportSettings.ReadExportedFieldsFromCsvMappingFile(System.String)"]

Remarks

Only the export fields with IsExported set to true are returned.

The first line of .csv file MUST have the following column definitions: "OpenDiscoverFieldName,IsExported,ExportFieldName,FieldType,FieldCategoryType,Description"

Any line in the .csv file beginning with '#' is considered a comment line and ignored.

See Also