Class ImportLine
Used to import data into the system. Representing one entity that will be imported.
Carrier object for ImportLine. Services for the ImportLine Carrier is available from the IImportAgent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
public class ImportLine : Carrier
Constructors
ImportLine()
Default constructor
Declaration
public ImportLine()
See Also
Properties
ExternalKey
Optional external primary key for the row
Declaration
public virtual string ExternalKey { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
Operation
Which operation will be used? This is a read-only property
Declaration
public virtual ImportAction Operation { get; set; }
Property Value
Type | Description |
---|---|
ImportAction |
See Also
Selected
True if the entity shall be imported, false if the entity shall be ignored
Declaration
public virtual bool Selected { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
See Also
Type
Which entity type will be created? This is a read-only property
Declaration
public virtual ImportEntityType Type { get; set; }
Property Value
Type | Description |
---|---|
ImportEntityType |
See Also
Values
An array of the values that will be imported on the entity
Declaration
public virtual string[] Values { get; set; }
Property Value
Type | Description |
---|---|
String[] |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | The carrier contents. |
See Also
ToString(String)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public string ToString(string prefix)
Parameters
Type | Name | Description |
---|---|---|
String | prefix | The line prefix (typically used for indenting) |
Returns
Type | Description |
---|---|
String | The carrier contents. |