Click or drag to resize

ObjectImporterResult Class

Represents the result of a call to Omada.OE.AppLogic.Serialization.ObjectImporter.ImportSerializedDataObjects(). The class also represents the result of a call to the DataObjectExchangeWebService web service.
Inheritance Hierarchy
SystemObject
  Omada.OE.ModelObjectImporterResult

Namespace:  Omada.OE.Model
Assembly:  Omada.OE.Model (in Omada.OE.Model.dll) Version: 15.0.0.0
Syntax
C#
public class ObjectImporterResult

The ObjectImporterResult type exposes the following members.

Constructors
  NameDescription
Public methodObjectImporterResult
Top
Properties
  NameDescription
Public propertyCreatedObjectIds
Ids of data objects that have been created as part of the import.
Public propertyDeletedObjectIds
Ids of data objects that have been deleted as part of the import.
Public propertyErrors
Public propertyErrorsWithIndex
Each error message is for a specific object and is prefixed with the index of the object (in the xml specified for "ImportDataObjects"). Format: "[index]:[error message]"
Public propertyIgnoredObjectCount
Number of objects that was ignored by the import. Ignored objects are the ones that: * Has operation == 'None'. * Has operation == 'UpdateIfExists' and the object was not found. * Has operation == 'DeleteIfExists' and the object was not found.
Public propertyIgnoredObjectIndexes
Indexes of objects that were ignored by the import.
Public propertyUnchangedObjectIds
Ids of data objects that have been attempted updated but where the import didn't actually change them because they were identical.
Public propertyUpdatedObjectIds
Ids of data objects that have been updated (where there actually were a change) as part of the import.
Top
Extension Methods
  NameDescription
Public Extension MethodToBool
Converts object to boolean.
(Defined by ObjectExtensions.)
Public Extension MethodToDateTime
Converts object to DateTime.
(Defined by ObjectExtensions.)
Public Extension MethodToInt
Converts object to integer.
(Defined by ObjectExtensions.)
Top
See Also