Class MaxAgePolicy

Namespace
Datamine.MineTrustConnector.Core.Retention
Assembly
Datamine.MineTrustConnector.Core.dll

Retention policy which expires file versions once they cross the specified age threshold. Ages are defined according to the DateModified of the file version instance, and must be specified by exactly one of: Max age in days Max age in weeks Max age in months

public class MaxAgePolicy : RetentionPolicy
Inheritance
MaxAgePolicy
Inherited Members

Properties

OlderThanDays

Gets or sets the number of days before a file version is considered to have expired.

public int? OlderThanDays { get; set; }

Property Value

int?

The older than days.

OlderThanMonths

Gets or sets the number of months before a file version is considered to have expired.

public int? OlderThanMonths { get; set; }

Property Value

int?

The older than months.

OlderThanWeeks

Gets or sets the number of weeks before a file version is considered to have expired.

public int? OlderThanWeeks { get; set; }

Property Value

int?

The older than weeks.

See Also