Provides a set of constants that identify the method used to delete content from a file
storage area, fixed storage area, content cache area, or advanced storage device.
For fixed content devices, deletion implementations depend on the device.
If a fixed content device does not support one of the secure delete methods (that is, destructive or purge),
Namespace:
FileNet.Api.Constants
Assembly:
FileNet.Api (in FileNet.Api.dll)
Syntax
| Visual Basic (Declaration) |
|---|
Public Enumeration AreaDeleteMethod |
| C# |
|---|
public enum AreaDeleteMethod |
| Visual C++ |
|---|
public enum class AreaDeleteMethod |
| JavaScript |
|---|
FileNet.Api.Constants.AreaDeleteMethod = function(); FileNet.Api.Constants.AreaDeleteMethod.createEnum('FileNet.Api.Constants.AreaDeleteMethod', false); |
Members
| Type | Member name | Description |
|---|---|---|
| DESTRUCTIVE |
Provides secured delete at a moderate performance cost. For content stored in a file,
this involves writing over the content once with zeroes prior to deletion.
| |
| PURGE |
Provides highly secured delete at a higher performance cost than destructive delete.
File content is overwritten three times before deletion.
| |
| STANDARD |
Specifies that content be deleted using the normal delete operation for the given device or file system.
|