DataEngine for .NET Standard | ComponentOne
C1.DataEngine Assembly / C1.DataEngine Namespace / ClearFileType Enumeration

In This Topic
    ClearFileType Enumeration
    In This Topic
    Kind of data files to delete (for disk cleanup). Used in the Workspace.Clear method.
    Syntax
    'Declaration
     
    Public Enum ClearFileType 
       Inherits System.Enum
    public enum ClearFileType : System.Enum 
    Members
    MemberDescription
    All Delete all workspace files, including the original table data. Use this value with caution. It wipes out all DataEngine data for the workspace.
    Index Delete all indexes (table row ids sorted by one or more fields) created in calculations.
    Join Delete all joins created in calculations.
    ProjectionDelete all projections (files containing field values projected on an index sort order) created in calculations. Projections are kept (in automatic cleanup) together with corresponding indexes, that is why there is no separate value for them in the KeepFileType enum, but they can be deleted separately from indexes in manual cleanup.
    Results Delete all result files (data sent to the client) created in calculations.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.DataEngine.ClearFileType

    See Also