Class XzBcjX86FilterSettings

Class XzBcjX86FilterSettings

Namespace: Aspose.Zip.Xz.Settings
Assembly: Aspose.Zip.dll (25.1.0)

xz Bcj X86 filtresi için ayarlar.

public sealed class XzBcjX86FilterSettings : XzFilterSettings

Miras

objectXzFilterSettingsXzBcjX86FilterSettings

Miras Alınan Üyeler

object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Yapıcılar

XzBcjX86FilterSettings()

Aspose.Zip.Xz.Settings.XzBcjX86FilterSettings’in yeni bir örneğini başlatır. Bunu, Aspose.Zip.Xz.XzArchive içinde yürütülebilir dosyaları ve kütüphaneleri sıkıştırmak için kullanın.

public XzBcjX86FilterSettings()

Örnekler

XzLZMA2FilterSettings lzma2 = new XzLZMA2FilterSettings(5242880);
XzBcjX86FilterSettings bcj = new XzBcjX86FilterSettings();
XzArchiveSettings settings = new XzArchiveSettings(new XzFilterSettings[] {bcj,lzma2}, 10485760, XzCheckType.Crc32);
using (XzArchive archive = new XzArchive(settings))
{
    archive.SetSource("data.bin");
    archive.Save("archive.xz");
}
 Türkçe