Class XzBcjX86FilterSettings
Class XzBcjX86FilterSettings
İsim alanı : Aspose.Zip.Xz.Settings Toplama: Aspose.Zip.dll (25.5.0)
xz Bcj X86 filtre için ayarlar.
public sealed class XzBcjX86FilterSettings : XzFilterSettings
Inheritance
object ← XzFilterSettings ← XzBcjX86FilterSettings
mirasçı üyeleri
object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Constructors
XzBcjX86FilterSettings()
Aspose.Zip.Xz.Settings.XzBcjX86FilterSettings’in yeni bir örneğini başlatın.Aspose.Zip.Xz.XzArchive’de yürütülebilir dosyaları ve kitaplıkları sıkıştırmak için kullanın.
public XzBcjX86FilterSettings()
Examples
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");
}