New to Telerik Document ProcessingStart a free 30-day trial

Base settings container for a compression method; specialized subclasses add algorithm‑specific parameters.

Definition

Namespace:Telerik.Windows.Zip

Assembly:Telerik.Windows.Zip.dll

Syntax:

C#
public abstract class CompressionSettings : INotifyPropertyChanged

Inheritance: objectCompressionSettings

Derived Classes: DeflateSettingsLzmaSettingsStoreSettings

Implements: INotifyPropertyChanged

Constructors

Initializes a new instance of the CompressionSettings class with default compression settings.

C#
protected CompressionSettings()

Events

Occurs when a property value changes.

C#
public event PropertyChangedEventHandler PropertyChanged

Implements: INotifyPropertyChanged.PropertyChanged

Methods

Called when property value is changed.

C#
protected void OnPropertyChanged(string propertyName)
Parameters:propertyNamestring

Property name.

Properties

Gets or sets the compression algorithm applied when processing the stream or archive entry.

C#
public CompressionMethod Method { get; protected set; }