adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / ImportResult Enumeration


In This Topic
    ImportResult Enumeration
    In This Topic
    Indicates the state of an object or set of objects after import.
    Syntax
    'Declaration
     
    
    Public Enum ImportResult 
       Inherits System.Enum
    public enum ImportResult : System.Enum 
    public enum class ImportResult : public System.Enum 
    Members
    MemberValueDescription
    ImportFailed0 The import failed.
    ImportSucceeded1 The object was successfully imported, but was not validated or saved.
    SaveFailed4 The object was imported and validated, but the attempt to save it failed. See ImportedObject.Messages for error messages.
    SaveSucceeded5 The object was imported, validated, and saved successfully.
    ValidationFailed2 The object was successfully imported, but validation failed. See ImportedObject.Messages for the validation error messages.
    ValidationSucceeded3 The object was imported and validation succeeded. The object was not saved.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             ArcanaDevelopment.adTempus.Shared.ImportResult

    See Also