adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / ObjectImportState Enumeration


In This Topic
    ObjectImportState Enumeration
    In This Topic
    Indicates the state of an object being imported.
    Syntax
    'Declaration
     
    
    <ComVisibleAttribute(True)>
    <GuidAttribute("9D7B51B9-8A04-4824-9B0C-8E72F8260CBD")>
    <FlagsAttribute()>
    Public Enum ObjectImportState 
       Inherits System.Enum
    [ComVisible(true)]
    [Guid("9D7B51B9-8A04-4824-9B0C-8E72F8260CBD")]
    [Flags()]
    public enum ObjectImportState : System.Enum 
    [ComVisible(true)]
    [Guid("9D7B51B9-8A04-4824-9B0C-8E72F8260CBD")]
    [Flags()]
    public enum class ObjectImportState : public System.Enum 
    Members
    MemberValueDescription
    DuplicateKeyNewer6 Another object already exists with the same key attributes but a different OID, and a newer lastModified timestamp
    DuplicateKeyOlder5 Another object already exists with the same key attributes but a different OID, and an older lastModified timestamp
    DuplicateKeySame4 Another object already exists with the same key attributes but a different OID, and the same lastModified timestamp
    ExistingNewer3 An object exists with the same OID and a newer lastModified timestamp
    ExistingOlder2 An object exists with the same OID and an older lastModified timestamp
    ExistingSame1 An object exists with the same OID and lastModified timestamp
    New0 The object is new.
    Inheritance Hierarchy

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

    See Also