Deprecated.
Specifies when a content element will expire, so that it can be deleted from a storage area object. A positive value represents the number of minutes the content element must be retained. Other possible values, as enumerated in the RetentionPeriod class, are:
  • 0: No minimum retention period (content may be deleted at any time).
  • -1: Infinite retention period (content can never be deleted).
  • -2: Same retention period as the associated fixed content device. (For FixedStorageArea objects only.)
  • -101: Reserved for internal use only.
  • -102: Retention period is not supported. This is the default if no RetentionPeriod value has been defined for the storage area.

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

ToggleSyntax

Visual Basic (Declaration)
<ObsoleteAttribute("As of release 5.2.0.")> _
Property RetentionPeriod As Nullable(Of Integer)
C#
[ObsoleteAttribute("As of release 5.2.0.")]
Nullable<int> RetentionPeriod { get; set; }
Visual C++
[ObsoleteAttribute(L"As of release 5.2.0.")]
property Nullable<int> RetentionPeriod {
	Nullable<int> get ();
	void set (Nullable<int> value);
}
JavaScript
function get_retentionPeriod();
function set_retentionPeriod(value);

ToggleRemarks

ToggleSee Also