The setting that specifies the deletion method for content in this storage area. The AreaDeleteMethod class has constants defined for the deletion method settings.

Valid settings are:

  • DESTRUCTIVE: Specifies that content be overwritten once with zeros before it is deleted.
  • PURGE: Specifies that content be overwritten three times before it is deleted. This is the most secure form of delete.
  • STANDARD (default setting): Specifies that content be deleted using the normal delete operation for the given device or file system.

Namespace: FileNet.Api.Admin
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Property DeleteMethod As AreaDeleteMethod
C#
AreaDeleteMethod DeleteMethod { get; set; }
C++
property AreaDeleteMethod DeleteMethod abstract  {
    AreaDeleteMethod get();
    void set(AreaDeleteMethod value);
}
J#
/** property */
public AreaDeleteMethod get_DeleteMethod();

/** property */
public void set_DeleteMethod(AreaDeleteMethod value);
JScript
public function get DeleteMethod() : AreaDeleteMethod

public function set DeleteMethod(value : AreaDeleteMethod);

Remarks

See Also