ImportOptions class | QSYS API Reference Guide

Estimated reading time: 2 minutes

Provides options for importing data from XML or CSV format. This class includes properties for specifying the target member where the data will be imported, the source path from where the data will be imported, whether the target member should be cleared before the import, whether the target connection should be used for the import, and whether detailed feedback should be provided during the import operation.

Namespace: ASNA.DataGate.Client.CopyData Assembly: ASNA.QSys.DataGate.Client.dll

Inheritance: Object

Constructors

Name Description
ImportOptions(IMember, String, Boolean, Boolean) Initializes a new instance of the class with the specified target member, source path, clear member flag, and use target connection flag.

ImportOptions(IMember, String, Boolean, Boolean)

Initializes a new instance of the class with the specified target member, source path, clear member flag, and use target connection flag.

ImportOptions(IMember, String, Boolean, Boolean)

Parameters

Type Parameter name Description
IMember target The target member where the data will be imported.
String source The source path from where the data will be imported.
Boolean bClearMember A flag indicating whether the target member should be cleared before the import.
Boolean bUseTargetConnection A flag indicating whether the target connection should be used for the import.

Properties

Type Name Description
Boolean ClearTargetBeforeImport Gets or sets a value indicating whether the target member should be cleared before the import.
Boolean DetailedFeedback Gets or sets a value indicating whether detailed feedback should be provided during the import operation.
String SourcePath Gets or sets the source path from where the data will be imported.
IMember TargetMember Gets or sets the target member where the data will be imported.
Boolean UseTargetConnection Gets or sets a value indicating whether the target connection should be used for the import.