Class MaxSizePolicy

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

Retention policy which expires file versions once their aggregated size has exceeded the specified limit. The limit does not apply if there is only one version of a file remaining. Size limits must be specified by exactly one of: Max size in MB Max size in GB

public class MaxSizePolicy : RetentionPolicy
Inheritance
MaxSizePolicy
Inherited Members

Properties

LimitInGB

Gets or sets the total file size limit in GB.

public int? LimitInGB { get; set; }

Property Value

int?

The limit in GB.

LimitInMB

Gets or sets the total file size limit in MB.

public int? LimitInMB { get; set; }

Property Value

int?

The limit in MB.

See Also