Specifies as a percentage of the original size, the minimum to which the initial portion of a content stream must be compressed in order for the entire stream to be compressed. For example, for a compression ratio of 80%, the entire data stream will be compressed if the first block of uploaded data, when compressed, is 80% or less of the original uncompressed size.

Some data formats, such as JPEG and ZIP, do not compress well, and the server compression overhead might not be worth the marginal savings of storage space for such formats. This property allows you to define the threshold at which data will not be compressed. You can also define the block size of the content stream to be compressed, as set in the CompressionBlockSize property of the IContentConfiguration interface.

This property requires that content compression be turned on, as set in the CmCompressionEnabled property. For administrator-related information, see Content compression.

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

ToggleSyntax

Visual Basic (Declaration)
Property CmCompressionThresholdPercent As Nullable(Of Integer)
C#
Nullable<int> CmCompressionThresholdPercent { get; set; }
Visual C++
property Nullable<int> CmCompressionThresholdPercent {
	Nullable<int> get ();
	void set (Nullable<int> value);
}
JavaScript
function get_cmCompressionThresholdPercent();
function set_cmCompressionThresholdPercent(value);

ToggleRemarks

ToggleSee Also