diff --git a/DotsTheBee/DotsTheBee.cpp b/DotsTheBee/DotsTheBee.cpp new file mode 100644 index 0000000..7a95b98 Binary files /dev/null and b/DotsTheBee/DotsTheBee.cpp differ diff --git a/DotsTheBee/DotsTheBee.vcxproj b/DotsTheBee/DotsTheBee.vcxproj new file mode 100644 index 0000000..4faaf1f --- /dev/null +++ b/DotsTheBee/DotsTheBee.vcxproj @@ -0,0 +1,169 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {A37DD6C5-F166-496A-AC8A-4F70E42361F9} + Win32Proj + DotsTheBee + 10.0.17763.0 + + + + DynamicLibrary + true + v141 + Unicode + + + DynamicLibrary + false + v141 + true + Unicode + + + DynamicLibrary + true + v141 + Unicode + + + DynamicLibrary + false + v141 + true + Unicode + + + + + + + + + + + + + + + + + + + + + false + $(SolutionDir)GayMaker-Studio\bin\$(Configuration)\ + + + true + $(SolutionDir)GayMaker-Studio\bin\$(Configuration)\ + + + true + + + false + + + + Use + Level3 + MaxSpeed + true + true + true + WIN32;NDEBUG;DOTSTHEBEE_EXPORTS;_WINDOWS;_USRDLL;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + true + + + Windows + true + true + true + + + + + Use + Level3 + Disabled + true + WIN32;_DEBUG;DOTSTHEBEE_EXPORTS;_WINDOWS;_USRDLL;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + true + + + Windows + true + + + + + Use + Level3 + Disabled + true + _DEBUG;DOTSTHEBEE_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + true + + + Windows + true + + + + + Use + Level3 + MaxSpeed + true + true + true + NDEBUG;DOTSTHEBEE_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + true + + + Windows + true + true + true + + + + + + + + + + + + Create + Create + Create + Create + + + + + + \ No newline at end of file diff --git a/DotsTheBee/DotsTheBee.vcxproj.filters b/DotsTheBee/DotsTheBee.vcxproj.filters new file mode 100644 index 0000000..9e1641d --- /dev/null +++ b/DotsTheBee/DotsTheBee.vcxproj.filters @@ -0,0 +1,39 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Header Files + + + Header Files + + + Header Files + + + + + Source Files + + + Source Files + + + Source Files + + + \ No newline at end of file diff --git a/DotsTheBee/DotsTheBee.vcxproj.user b/DotsTheBee/DotsTheBee.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/DotsTheBee/DotsTheBee.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/DotsTheBee/dllmain.cpp b/DotsTheBee/dllmain.cpp new file mode 100644 index 0000000..1637303 Binary files /dev/null and b/DotsTheBee/dllmain.cpp differ diff --git a/DotsTheBee/elf.h b/DotsTheBee/elf.h new file mode 100644 index 0000000..3b335df --- /dev/null +++ b/DotsTheBee/elf.h @@ -0,0 +1,3753 @@ +/* This file defines standard ELF types, structures, and macros. + Copyright (C) 1995-2016 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#ifndef _ELF_H +#define _ELF_H 1 + + /* + #include + + __BEGIN_DECLS + */ + + /* Standard ELF types. */ + +#include + +/* Type for a 16-bit quantity. */ +typedef uint16_t Elf32_Half; +typedef uint16_t Elf64_Half; + +/* Types for signed and unsigned 32-bit quantities. */ +typedef uint32_t Elf32_Word; +typedef int32_t Elf32_Sword; +typedef uint32_t Elf64_Word; +typedef int32_t Elf64_Sword; + +/* Types for signed and unsigned 64-bit quantities. */ +typedef uint64_t Elf32_Xword; +typedef int64_t Elf32_Sxword; +typedef uint64_t Elf64_Xword; +typedef int64_t Elf64_Sxword; + +/* Type of addresses. */ +typedef uint32_t Elf32_Addr; +typedef uint64_t Elf64_Addr; + +/* Type of file offsets. */ +typedef uint32_t Elf32_Off; +typedef uint64_t Elf64_Off; + +/* Type for section indices, which are 16-bit quantities. */ +typedef uint16_t Elf32_Section; +typedef uint16_t Elf64_Section; + +/* Type for version symbol information. */ +typedef Elf32_Half Elf32_Versym; +typedef Elf64_Half Elf64_Versym; + + +/* The ELF file header. This appears at the start of every ELF file. */ + +#define EI_NIDENT (16) + +typedef struct +{ + unsigned char e_ident[EI_NIDENT]; /* Magic number and other info */ + Elf32_Half e_type; /* Object file type */ + Elf32_Half e_machine; /* Architecture */ + Elf32_Word e_version; /* Object file version */ + Elf32_Addr e_entry; /* Entry point virtual address */ + Elf32_Off e_phoff; /* Program header table file offset */ + Elf32_Off e_shoff; /* Section header table file offset */ + Elf32_Word e_flags; /* Processor-specific flags */ + Elf32_Half e_ehsize; /* ELF header size in bytes */ + Elf32_Half e_phentsize; /* Program header table entry size */ + Elf32_Half e_phnum; /* Program header table entry count */ + Elf32_Half e_shentsize; /* Section header table entry size */ + Elf32_Half e_shnum; /* Section header table entry count */ + Elf32_Half e_shstrndx; /* Section header string table index */ +} Elf32_Ehdr; + +typedef struct +{ + unsigned char e_ident[EI_NIDENT]; /* Magic number and other info */ + Elf64_Half e_type; /* Object file type */ + Elf64_Half e_machine; /* Architecture */ + Elf64_Word e_version; /* Object file version */ + Elf64_Addr e_entry; /* Entry point virtual address */ + Elf64_Off e_phoff; /* Program header table file offset */ + Elf64_Off e_shoff; /* Section header table file offset */ + Elf64_Word e_flags; /* Processor-specific flags */ + Elf64_Half e_ehsize; /* ELF header size in bytes */ + Elf64_Half e_phentsize; /* Program header table entry size */ + Elf64_Half e_phnum; /* Program header table entry count */ + Elf64_Half e_shentsize; /* Section header table entry size */ + Elf64_Half e_shnum; /* Section header table entry count */ + Elf64_Half e_shstrndx; /* Section header string table index */ +} Elf64_Ehdr; + +/* Fields in the e_ident array. The EI_* macros are indices into the + array. The macros under each EI_* macro are the values the byte + may have. */ + +#define EI_MAG0 0 /* File identification byte 0 index */ +#define ELFMAG0 0x7f /* Magic number byte 0 */ + +#define EI_MAG1 1 /* File identification byte 1 index */ +#define ELFMAG1 'E' /* Magic number byte 1 */ + +#define EI_MAG2 2 /* File identification byte 2 index */ +#define ELFMAG2 'L' /* Magic number byte 2 */ + +#define EI_MAG3 3 /* File identification byte 3 index */ +#define ELFMAG3 'F' /* Magic number byte 3 */ + + /* Conglomeration of the identification bytes, for easy testing as a word. */ +#define ELFMAG "\177ELF" +#define SELFMAG 4 + +#define EI_CLASS 4 /* File class byte index */ +#define ELFCLASSNONE 0 /* Invalid class */ +#define ELFCLASS32 1 /* 32-bit objects */ +#define ELFCLASS64 2 /* 64-bit objects */ +#define ELFCLASSNUM 3 + +#define EI_DATA 5 /* Data encoding byte index */ +#define ELFDATANONE 0 /* Invalid data encoding */ +#define ELFDATA2LSB 1 /* 2's complement, little endian */ +#define ELFDATA2MSB 2 /* 2's complement, big endian */ +#define ELFDATANUM 3 + +#define EI_VERSION 6 /* File version byte index */ + /* Value must be EV_CURRENT */ + +#define EI_OSABI 7 /* OS ABI identification */ +#define ELFOSABI_NONE 0 /* UNIX System V ABI */ +#define ELFOSABI_SYSV 0 /* Alias. */ +#define ELFOSABI_HPUX 1 /* HP-UX */ +#define ELFOSABI_NETBSD 2 /* NetBSD. */ +#define ELFOSABI_GNU 3 /* Object uses GNU ELF extensions. */ +#define ELFOSABI_LINUX ELFOSABI_GNU /* Compatibility alias. */ +#define ELFOSABI_SOLARIS 6 /* Sun Solaris. */ +#define ELFOSABI_AIX 7 /* IBM AIX. */ +#define ELFOSABI_IRIX 8 /* SGI Irix. */ +#define ELFOSABI_FREEBSD 9 /* FreeBSD. */ +#define ELFOSABI_TRU64 10 /* Compaq TRU64 UNIX. */ +#define ELFOSABI_MODESTO 11 /* Novell Modesto. */ +#define ELFOSABI_OPENBSD 12 /* OpenBSD. */ +#define ELFOSABI_ARM_AEABI 64 /* ARM EABI */ +#define ELFOSABI_ARM 97 /* ARM */ +#define ELFOSABI_STANDALONE 255 /* Standalone (embedded) application */ + +#define EI_ABIVERSION 8 /* ABI version */ + +#define EI_PAD 9 /* Byte index of padding bytes */ + +/* Legal values for e_type (object file type). */ + +#define ET_NONE 0 /* No file type */ +#define ET_REL 1 /* Relocatable file */ +#define ET_EXEC 2 /* Executable file */ +#define ET_DYN 3 /* Shared object file */ +#define ET_CORE 4 /* Core file */ +#define ET_NUM 5 /* Number of defined types */ +#define ET_LOOS 0xfe00 /* OS-specific range start */ +#define ET_HIOS 0xfeff /* OS-specific range end */ +#define ET_LOPROC 0xff00 /* Processor-specific range start */ +#define ET_HIPROC 0xffff /* Processor-specific range end */ + +/* Legal values for e_machine (architecture). */ + +#define EM_NONE 0 /* No machine */ +#define EM_M32 1 /* AT&T WE 32100 */ +#define EM_SPARC 2 /* SUN SPARC */ +#define EM_386 3 /* Intel 80386 */ +#define EM_68K 4 /* Motorola m68k family */ +#define EM_88K 5 /* Motorola m88k family */ +#define EM_IAMCU 6 /* Intel MCU */ +#define EM_860 7 /* Intel 80860 */ +#define EM_MIPS 8 /* MIPS R3000 big-endian */ +#define EM_S370 9 /* IBM System/370 */ +#define EM_MIPS_RS3_LE 10 /* MIPS R3000 little-endian */ + /* reserved 11-14 */ +#define EM_PARISC 15 /* HPPA */ + /* reserved 16 */ +#define EM_VPP500 17 /* Fujitsu VPP500 */ +#define EM_SPARC32PLUS 18 /* Sun's "v8plus" */ +#define EM_960 19 /* Intel 80960 */ +#define EM_PPC 20 /* PowerPC */ +#define EM_PPC64 21 /* PowerPC 64-bit */ +#define EM_S390 22 /* IBM S390 */ +#define EM_SPU 23 /* IBM SPU/SPC */ + /* reserved 24-35 */ +#define EM_V800 36 /* NEC V800 series */ +#define EM_FR20 37 /* Fujitsu FR20 */ +#define EM_RH32 38 /* TRW RH-32 */ +#define EM_RCE 39 /* Motorola RCE */ +#define EM_ARM 40 /* ARM */ +#define EM_FAKE_ALPHA 41 /* Digital Alpha */ +#define EM_SH 42 /* Hitachi SH */ +#define EM_SPARCV9 43 /* SPARC v9 64-bit */ +#define EM_TRICORE 44 /* Siemens Tricore */ +#define EM_ARC 45 /* Argonaut RISC Core */ +#define EM_H8_300 46 /* Hitachi H8/300 */ +#define EM_H8_300H 47 /* Hitachi H8/300H */ +#define EM_H8S 48 /* Hitachi H8S */ +#define EM_H8_500 49 /* Hitachi H8/500 */ +#define EM_IA_64 50 /* Intel Merced */ +#define EM_MIPS_X 51 /* Stanford MIPS-X */ +#define EM_COLDFIRE 52 /* Motorola Coldfire */ +#define EM_68HC12 53 /* Motorola M68HC12 */ +#define EM_MMA 54 /* Fujitsu MMA Multimedia Accelerator */ +#define EM_PCP 55 /* Siemens PCP */ +#define EM_NCPU 56 /* Sony nCPU embeeded RISC */ +#define EM_NDR1 57 /* Denso NDR1 microprocessor */ +#define EM_STARCORE 58 /* Motorola Start*Core processor */ +#define EM_ME16 59 /* Toyota ME16 processor */ +#define EM_ST100 60 /* STMicroelectronic ST100 processor */ +#define EM_TINYJ 61 /* Advanced Logic Corp. Tinyj emb.fam */ +#define EM_X86_64 62 /* AMD x86-64 architecture */ +#define EM_PDSP 63 /* Sony DSP Processor */ +#define EM_PDP10 64 /* Digital PDP-10 */ +#define EM_PDP11 65 /* Digital PDP-11 */ +#define EM_FX66 66 /* Siemens FX66 microcontroller */ +#define EM_ST9PLUS 67 /* STMicroelectronics ST9+ 8/16 mc */ +#define EM_ST7 68 /* STmicroelectronics ST7 8 bit mc */ +#define EM_68HC16 69 /* Motorola MC68HC16 microcontroller */ +#define EM_68HC11 70 /* Motorola MC68HC11 microcontroller */ +#define EM_68HC08 71 /* Motorola MC68HC08 microcontroller */ +#define EM_68HC05 72 /* Motorola MC68HC05 microcontroller */ +#define EM_SVX 73 /* Silicon Graphics SVx */ +#define EM_ST19 74 /* STMicroelectronics ST19 8 bit mc */ +#define EM_VAX 75 /* Digital VAX */ +#define EM_CRIS 76 /* Axis Communications 32-bit emb.proc */ +#define EM_JAVELIN 77 /* Infineon Technologies 32-bit emb.proc */ +#define EM_FIREPATH 78 /* Element 14 64-bit DSP Processor */ +#define EM_ZSP 79 /* LSI Logic 16-bit DSP Processor */ +#define EM_MMIX 80 /* Donald Knuth's educational 64-bit proc */ +#define EM_HUANY 81 /* Harvard University machine-independent object files */ +#define EM_PRISM 82 /* SiTera Prism */ +#define EM_AVR 83 /* Atmel AVR 8-bit microcontroller */ +#define EM_FR30 84 /* Fujitsu FR30 */ +#define EM_D10V 85 /* Mitsubishi D10V */ +#define EM_D30V 86 /* Mitsubishi D30V */ +#define EM_V850 87 /* NEC v850 */ +#define EM_M32R 88 /* Mitsubishi M32R */ +#define EM_MN10300 89 /* Matsushita MN10300 */ +#define EM_MN10200 90 /* Matsushita MN10200 */ +#define EM_PJ 91 /* picoJava */ +#define EM_OPENRISC 92 /* OpenRISC 32-bit embedded processor */ +#define EM_ARC_COMPACT 93 /* ARC International ARCompact */ +#define EM_XTENSA 94 /* Tensilica Xtensa Architecture */ +#define EM_VIDEOCORE 95 /* Alphamosaic VideoCore */ +#define EM_TMM_GPP 96 /* Thompson Multimedia General Purpose Proc */ +#define EM_NS32K 97 /* National Semi. 32000 */ +#define EM_TPC 98 /* Tenor Network TPC */ +#define EM_SNP1K 99 /* Trebia SNP 1000 */ +#define EM_ST200 100 /* STMicroelectronics ST200 */ +#define EM_IP2K 101 /* Ubicom IP2xxx */ +#define EM_MAX 102 /* MAX processor */ +#define EM_CR 103 /* National Semi. CompactRISC */ +#define EM_F2MC16 104 /* Fujitsu F2MC16 */ +#define EM_MSP430 105 /* Texas Instruments msp430 */ +#define EM_BLACKFIN 106 /* Analog Devices Blackfin DSP */ +#define EM_SE_C33 107 /* Seiko Epson S1C33 family */ +#define EM_SEP 108 /* Sharp embedded microprocessor */ +#define EM_ARCA 109 /* Arca RISC */ +#define EM_UNICORE 110 /* PKU-Unity & MPRC Peking Uni. mc series */ +#define EM_EXCESS 111 /* eXcess configurable cpu */ +#define EM_DXP 112 /* Icera Semi. Deep Execution Processor */ +#define EM_ALTERA_NIOS2 113 /* Altera Nios II */ +#define EM_CRX 114 /* National Semi. CompactRISC CRX */ +#define EM_XGATE 115 /* Motorola XGATE */ +#define EM_C166 116 /* Infineon C16x/XC16x */ +#define EM_M16C 117 /* Renesas M16C */ +#define EM_DSPIC30F 118 /* Microchip Technology dsPIC30F */ +#define EM_CE 119 /* Freescale Communication Engine RISC */ +#define EM_M32C 120 /* Renesas M32C */ + /* reserved 121-130 */ +#define EM_TSK3000 131 /* Altium TSK3000 */ +#define EM_RS08 132 /* Freescale RS08 */ +#define EM_SHARC 133 /* Analog Devices SHARC family */ +#define EM_ECOG2 134 /* Cyan Technology eCOG2 */ +#define EM_SCORE7 135 /* Sunplus S+core7 RISC */ +#define EM_DSP24 136 /* New Japan Radio (NJR) 24-bit DSP */ +#define EM_VIDEOCORE3 137 /* Broadcom VideoCore III */ +#define EM_LATTICEMICO32 138 /* RISC for Lattice FPGA */ +#define EM_SE_C17 139 /* Seiko Epson C17 */ +#define EM_TI_C6000 140 /* Texas Instruments TMS320C6000 DSP */ +#define EM_TI_C2000 141 /* Texas Instruments TMS320C2000 DSP */ +#define EM_TI_C5500 142 /* Texas Instruments TMS320C55x DSP */ +#define EM_TI_ARP32 143 /* Texas Instruments App. Specific RISC */ +#define EM_TI_PRU 144 /* Texas Instruments Prog. Realtime Unit */ + /* reserved 145-159 */ +#define EM_MMDSP_PLUS 160 /* STMicroelectronics 64bit VLIW DSP */ +#define EM_CYPRESS_M8C 161 /* Cypress M8C */ +#define EM_R32C 162 /* Renesas R32C */ +#define EM_TRIMEDIA 163 /* NXP Semi. TriMedia */ +#define EM_QDSP6 164 /* QUALCOMM DSP6 */ +#define EM_8051 165 /* Intel 8051 and variants */ +#define EM_STXP7X 166 /* STMicroelectronics STxP7x */ +#define EM_NDS32 167 /* Andes Tech. compact code emb. RISC */ +#define EM_ECOG1X 168 /* Cyan Technology eCOG1X */ +#define EM_MAXQ30 169 /* Dallas Semi. MAXQ30 mc */ +#define EM_XIMO16 170 /* New Japan Radio (NJR) 16-bit DSP */ +#define EM_MANIK 171 /* M2000 Reconfigurable RISC */ +#define EM_CRAYNV2 172 /* Cray NV2 vector architecture */ +#define EM_RX 173 /* Renesas RX */ +#define EM_METAG 174 /* Imagination Tech. META */ +#define EM_MCST_ELBRUS 175 /* MCST Elbrus */ +#define EM_ECOG16 176 /* Cyan Technology eCOG16 */ +#define EM_CR16 177 /* National Semi. CompactRISC CR16 */ +#define EM_ETPU 178 /* Freescale Extended Time Processing Unit */ +#define EM_SLE9X 179 /* Infineon Tech. SLE9X */ +#define EM_L10M 180 /* Intel L10M */ +#define EM_K10M 181 /* Intel K10M */ + /* reserved 182 */ +#define EM_AARCH64 183 /* ARM AARCH64 */ + /* reserved 184 */ +#define EM_AVR32 185 /* Amtel 32-bit microprocessor */ +#define EM_STM8 186 /* STMicroelectronics STM8 */ +#define EM_TILE64 187 /* Tileta TILE64 */ +#define EM_TILEPRO 188 /* Tilera TILEPro */ +#define EM_MICROBLAZE 189 /* Xilinx MicroBlaze */ +#define EM_CUDA 190 /* NVIDIA CUDA */ +#define EM_TILEGX 191 /* Tilera TILE-Gx */ +#define EM_CLOUDSHIELD 192 /* CloudShield */ +#define EM_COREA_1ST 193 /* KIPO-KAIST Core-A 1st gen. */ +#define EM_COREA_2ND 194 /* KIPO-KAIST Core-A 2nd gen. */ +#define EM_ARC_COMPACT2 195 /* Synopsys ARCompact V2 */ +#define EM_OPEN8 196 /* Open8 RISC */ +#define EM_RL78 197 /* Renesas RL78 */ +#define EM_VIDEOCORE5 198 /* Broadcom VideoCore V */ +#define EM_78KOR 199 /* Renesas 78KOR */ +#define EM_56800EX 200 /* Freescale 56800EX DSC */ +#define EM_BA1 201 /* Beyond BA1 */ +#define EM_BA2 202 /* Beyond BA2 */ +#define EM_XCORE 203 /* XMOS xCORE */ +#define EM_MCHP_PIC 204 /* Microchip 8-bit PIC(r) */ + /* reserved 205-209 */ +#define EM_KM32 210 /* KM211 KM32 */ +#define EM_KMX32 211 /* KM211 KMX32 */ +#define EM_EMX16 212 /* KM211 KMX16 */ +#define EM_EMX8 213 /* KM211 KMX8 */ +#define EM_KVARC 214 /* KM211 KVARC */ +#define EM_CDP 215 /* Paneve CDP */ +#define EM_COGE 216 /* Cognitive Smart Memory Processor */ +#define EM_COOL 217 /* Bluechip CoolEngine */ +#define EM_NORC 218 /* Nanoradio Optimized RISC */ +#define EM_CSR_KALIMBA 219 /* CSR Kalimba */ +#define EM_Z80 220 /* Zilog Z80 */ +#define EM_VISIUM 221 /* Controls and Data Services VISIUMcore */ +#define EM_FT32 222 /* FTDI Chip FT32 */ +#define EM_MOXIE 223 /* Moxie processor */ +#define EM_AMDGPU 224 /* AMD GPU */ + /* reserved 225-242 */ +#define EM_RISCV 243 /* RISC-V */ + +#define EM_BPF 247 /* Linux BPF -- in-kernel virtual machine */ + +#define EM_NUM 248 + +/* Old spellings/synonyms. */ + +#define EM_ARC_A5 EM_ARC_COMPACT + +/* If it is necessary to assign new unofficial EM_* values, please + pick large random numbers (0x8523, 0xa7f2, etc.) to minimize the + chances of collision with official or non-GNU unofficial values. */ + +#define EM_ALPHA 0x9026 + + /* Legal values for e_version (version). */ + +#define EV_NONE 0 /* Invalid ELF version */ +#define EV_CURRENT 1 /* Current version */ +#define EV_NUM 2 + +/* Section header. */ + +typedef struct +{ + Elf32_Word sh_name; /* Section name (string tbl index) */ + Elf32_Word sh_type; /* Section type */ + Elf32_Word sh_flags; /* Section flags */ + Elf32_Addr sh_addr; /* Section virtual addr at execution */ + Elf32_Off sh_offset; /* Section file offset */ + Elf32_Word sh_size; /* Section size in bytes */ + Elf32_Word sh_link; /* Link to another section */ + Elf32_Word sh_info; /* Additional section information */ + Elf32_Word sh_addralign; /* Section alignment */ + Elf32_Word sh_entsize; /* Entry size if section holds table */ +} Elf32_Shdr; + +typedef struct +{ + Elf64_Word sh_name; /* Section name (string tbl index) */ + Elf64_Word sh_type; /* Section type */ + Elf64_Xword sh_flags; /* Section flags */ + Elf64_Addr sh_addr; /* Section virtual addr at execution */ + Elf64_Off sh_offset; /* Section file offset */ + Elf64_Xword sh_size; /* Section size in bytes */ + Elf64_Word sh_link; /* Link to another section */ + Elf64_Word sh_info; /* Additional section information */ + Elf64_Xword sh_addralign; /* Section alignment */ + Elf64_Xword sh_entsize; /* Entry size if section holds table */ +} Elf64_Shdr; + +/* Special section indices. */ + +#define SHN_UNDEF 0 /* Undefined section */ +#define SHN_LORESERVE 0xff00 /* Start of reserved indices */ +#define SHN_LOPROC 0xff00 /* Start of processor-specific */ +#define SHN_BEFORE 0xff00 /* Order section before all others + (Solaris). */ +#define SHN_AFTER 0xff01 /* Order section after all others + (Solaris). */ +#define SHN_HIPROC 0xff1f /* End of processor-specific */ +#define SHN_LOOS 0xff20 /* Start of OS-specific */ +#define SHN_HIOS 0xff3f /* End of OS-specific */ +#define SHN_ABS 0xfff1 /* Associated symbol is absolute */ +#define SHN_COMMON 0xfff2 /* Associated symbol is common */ +#define SHN_XINDEX 0xffff /* Index is in extra table. */ +#define SHN_HIRESERVE 0xffff /* End of reserved indices */ + + /* Legal values for sh_type (section type). */ + +#define SHT_NULL 0 /* Section header table entry unused */ +#define SHT_PROGBITS 1 /* Program data */ +#define SHT_SYMTAB 2 /* Symbol table */ +#define SHT_STRTAB 3 /* String table */ +#define SHT_RELA 4 /* Relocation entries with addends */ +#define SHT_HASH 5 /* Symbol hash table */ +#define SHT_DYNAMIC 6 /* Dynamic linking information */ +#define SHT_NOTE 7 /* Notes */ +#define SHT_NOBITS 8 /* Program space with no data (bss) */ +#define SHT_REL 9 /* Relocation entries, no addends */ +#define SHT_SHLIB 10 /* Reserved */ +#define SHT_DYNSYM 11 /* Dynamic linker symbol table */ +#define SHT_INIT_ARRAY 14 /* Array of constructors */ +#define SHT_FINI_ARRAY 15 /* Array of destructors */ +#define SHT_PREINIT_ARRAY 16 /* Array of pre-constructors */ +#define SHT_GROUP 17 /* Section group */ +#define SHT_SYMTAB_SHNDX 18 /* Extended section indeces */ +#define SHT_NUM 19 /* Number of defined types. */ +#define SHT_LOOS 0x60000000 /* Start OS-specific. */ +#define SHT_GNU_ATTRIBUTES 0x6ffffff5 /* Object attributes. */ +#define SHT_GNU_HASH 0x6ffffff6 /* GNU-style hash table. */ +#define SHT_GNU_LIBLIST 0x6ffffff7 /* Prelink library list */ +#define SHT_CHECKSUM 0x6ffffff8 /* Checksum for DSO content. */ +#define SHT_LOSUNW 0x6ffffffa /* Sun-specific low bound. */ +#define SHT_SUNW_move 0x6ffffffa +#define SHT_SUNW_COMDAT 0x6ffffffb +#define SHT_SUNW_syminfo 0x6ffffffc +#define SHT_GNU_verdef 0x6ffffffd /* Version definition section. */ +#define SHT_GNU_verneed 0x6ffffffe /* Version needs section. */ +#define SHT_GNU_versym 0x6fffffff /* Version symbol table. */ +#define SHT_HISUNW 0x6fffffff /* Sun-specific high bound. */ +#define SHT_HIOS 0x6fffffff /* End OS-specific type */ +#define SHT_LOPROC 0x70000000 /* Start of processor-specific */ +#define SHT_HIPROC 0x7fffffff /* End of processor-specific */ +#define SHT_LOUSER 0x80000000 /* Start of application-specific */ +#define SHT_HIUSER 0x8fffffff /* End of application-specific */ + +/* Legal values for sh_flags (section flags). */ + +#define SHF_WRITE (1 << 0) /* Writable */ +#define SHF_ALLOC (1 << 1) /* Occupies memory during execution */ +#define SHF_EXECINSTR (1 << 2) /* Executable */ +#define SHF_MERGE (1 << 4) /* Might be merged */ +#define SHF_STRINGS (1 << 5) /* Contains nul-terminated strings */ +#define SHF_INFO_LINK (1 << 6) /* `sh_info' contains SHT index */ +#define SHF_LINK_ORDER (1 << 7) /* Preserve order after combining */ +#define SHF_OS_NONCONFORMING (1 << 8) /* Non-standard OS specific handling + required */ +#define SHF_GROUP (1 << 9) /* Section is member of a group. */ +#define SHF_TLS (1 << 10) /* Section hold thread-local data. */ +#define SHF_COMPRESSED (1 << 11) /* Section with compressed data. */ +#define SHF_MASKOS 0x0ff00000 /* OS-specific. */ +#define SHF_MASKPROC 0xf0000000 /* Processor-specific */ +#define SHF_ORDERED (1 << 30) /* Special ordering requirement + (Solaris). */ +#define SHF_EXCLUDE (1U << 31) /* Section is excluded unless + referenced or allocated (Solaris).*/ + + /* Section compression header. Used when SHF_COMPRESSED is set. */ + +typedef struct +{ + Elf32_Word ch_type; /* Compression format. */ + Elf32_Word ch_size; /* Uncompressed data size. */ + Elf32_Word ch_addralign; /* Uncompressed data alignment. */ +} Elf32_Chdr; + +typedef struct +{ + Elf64_Word ch_type; /* Compression format. */ + Elf64_Word ch_reserved; + Elf64_Xword ch_size; /* Uncompressed data size. */ + Elf64_Xword ch_addralign; /* Uncompressed data alignment. */ +} Elf64_Chdr; + +/* Legal values for ch_type (compression algorithm). */ +#define ELFCOMPRESS_ZLIB 1 /* ZLIB/DEFLATE algorithm. */ +#define ELFCOMPRESS_LOOS 0x60000000 /* Start of OS-specific. */ +#define ELFCOMPRESS_HIOS 0x6fffffff /* End of OS-specific. */ +#define ELFCOMPRESS_LOPROC 0x70000000 /* Start of processor-specific. */ +#define ELFCOMPRESS_HIPROC 0x7fffffff /* End of processor-specific. */ + +/* Section group handling. */ +#define GRP_COMDAT 0x1 /* Mark group as COMDAT. */ + +/* Symbol table entry. */ + +typedef struct +{ + Elf32_Word st_name; /* Symbol name (string tbl index) */ + Elf32_Addr st_value; /* Symbol value */ + Elf32_Word st_size; /* Symbol size */ + unsigned char st_info; /* Symbol type and binding */ + unsigned char st_other; /* Symbol visibility */ + Elf32_Section st_shndx; /* Section index */ +} Elf32_Sym; + +typedef struct +{ + Elf64_Word st_name; /* Symbol name (string tbl index) */ + unsigned char st_info; /* Symbol type and binding */ + unsigned char st_other; /* Symbol visibility */ + Elf64_Section st_shndx; /* Section index */ + Elf64_Addr st_value; /* Symbol value */ + Elf64_Xword st_size; /* Symbol size */ +} Elf64_Sym; + +/* The syminfo section if available contains additional information about + every dynamic symbol. */ + +typedef struct +{ + Elf32_Half si_boundto; /* Direct bindings, symbol bound to */ + Elf32_Half si_flags; /* Per symbol flags */ +} Elf32_Syminfo; + +typedef struct +{ + Elf64_Half si_boundto; /* Direct bindings, symbol bound to */ + Elf64_Half si_flags; /* Per symbol flags */ +} Elf64_Syminfo; + +/* Possible values for si_boundto. */ +#define SYMINFO_BT_SELF 0xffff /* Symbol bound to self */ +#define SYMINFO_BT_PARENT 0xfffe /* Symbol bound to parent */ +#define SYMINFO_BT_LOWRESERVE 0xff00 /* Beginning of reserved entries */ + +/* Possible bitmasks for si_flags. */ +#define SYMINFO_FLG_DIRECT 0x0001 /* Direct bound symbol */ +#define SYMINFO_FLG_PASSTHRU 0x0002 /* Pass-thru symbol for translator */ +#define SYMINFO_FLG_COPY 0x0004 /* Symbol is a copy-reloc */ +#define SYMINFO_FLG_LAZYLOAD 0x0008 /* Symbol bound to object to be lazy + loaded */ + /* Syminfo version values. */ +#define SYMINFO_NONE 0 +#define SYMINFO_CURRENT 1 +#define SYMINFO_NUM 2 + + +/* How to extract and insert information held in the st_info field. */ + +#define ELF32_ST_BIND(val) (((unsigned char) (val)) >> 4) +#define ELF32_ST_TYPE(val) ((val) & 0xf) +#define ELF32_ST_INFO(bind, type) (((bind) << 4) + ((type) & 0xf)) + +/* Both Elf32_Sym and Elf64_Sym use the same one-byte st_info field. */ +#define ELF64_ST_BIND(val) ELF32_ST_BIND (val) +#define ELF64_ST_TYPE(val) ELF32_ST_TYPE (val) +#define ELF64_ST_INFO(bind, type) ELF32_ST_INFO ((bind), (type)) + +/* Legal values for ST_BIND subfield of st_info (symbol binding). */ + +#define STB_LOCAL 0 /* Local symbol */ +#define STB_GLOBAL 1 /* Global symbol */ +#define STB_WEAK 2 /* Weak symbol */ +#define STB_NUM 3 /* Number of defined types. */ +#define STB_LOOS 10 /* Start of OS-specific */ +#define STB_GNU_UNIQUE 10 /* Unique symbol. */ +#define STB_HIOS 12 /* End of OS-specific */ +#define STB_LOPROC 13 /* Start of processor-specific */ +#define STB_HIPROC 15 /* End of processor-specific */ + +/* Legal values for ST_TYPE subfield of st_info (symbol type). */ + +#define STT_NOTYPE 0 /* Symbol type is unspecified */ +#define STT_OBJECT 1 /* Symbol is a data object */ +#define STT_FUNC 2 /* Symbol is a code object */ +#define STT_SECTION 3 /* Symbol associated with a section */ +#define STT_FILE 4 /* Symbol's name is file name */ +#define STT_COMMON 5 /* Symbol is a common data object */ +#define STT_TLS 6 /* Symbol is thread-local data object*/ +#define STT_NUM 7 /* Number of defined types. */ +#define STT_LOOS 10 /* Start of OS-specific */ +#define STT_GNU_IFUNC 10 /* Symbol is indirect code object */ +#define STT_HIOS 12 /* End of OS-specific */ +#define STT_LOPROC 13 /* Start of processor-specific */ +#define STT_HIPROC 15 /* End of processor-specific */ + + +/* Symbol table indices are found in the hash buckets and chain table + of a symbol hash table section. This special index value indicates + the end of a chain, meaning no further symbols are found in that bucket. */ + +#define STN_UNDEF 0 /* End of a chain. */ + + + /* How to extract and insert information held in the st_other field. */ + +#define ELF32_ST_VISIBILITY(o) ((o) & 0x03) + +/* For ELF64 the definitions are the same. */ +#define ELF64_ST_VISIBILITY(o) ELF32_ST_VISIBILITY (o) + +/* Symbol visibility specification encoded in the st_other field. */ +#define STV_DEFAULT 0 /* Default symbol visibility rules */ +#define STV_INTERNAL 1 /* Processor specific hidden class */ +#define STV_HIDDEN 2 /* Sym unavailable in other modules */ +#define STV_PROTECTED 3 /* Not preemptible, not exported */ + + +/* Relocation table entry without addend (in section of type SHT_REL). */ + +typedef struct +{ + Elf32_Addr r_offset; /* Address */ + Elf32_Word r_info; /* Relocation type and symbol index */ +} Elf32_Rel; + +/* I have seen two different definitions of the Elf64_Rel and + Elf64_Rela structures, so we'll leave them out until Novell (or + whoever) gets their act together. */ + /* The following, at least, is used on Sparc v9, MIPS, and Alpha. */ + +typedef struct +{ + Elf64_Addr r_offset; /* Address */ + Elf64_Xword r_info; /* Relocation type and symbol index */ +} Elf64_Rel; + +/* Relocation table entry with addend (in section of type SHT_RELA). */ + +typedef struct +{ + Elf32_Addr r_offset; /* Address */ + Elf32_Word r_info; /* Relocation type and symbol index */ + Elf32_Sword r_addend; /* Addend */ +} Elf32_Rela; + +typedef struct +{ + Elf64_Addr r_offset; /* Address */ + Elf64_Xword r_info; /* Relocation type and symbol index */ + Elf64_Sxword r_addend; /* Addend */ +} Elf64_Rela; + +/* How to extract and insert information held in the r_info field. */ + +#define ELF32_R_SYM(val) ((val) >> 8) +#define ELF32_R_TYPE(val) ((val) & 0xff) +#define ELF32_R_INFO(sym, type) (((sym) << 8) + ((type) & 0xff)) + +#define ELF64_R_SYM(i) ((i) >> 32) +#define ELF64_R_TYPE(i) ((i) & 0xffffffff) +#define ELF64_R_INFO(sym,type) ((((Elf64_Xword) (sym)) << 32) + (type)) + +/* Program segment header. */ + +typedef struct +{ + Elf32_Word p_type; /* Segment type */ + Elf32_Off p_offset; /* Segment file offset */ + Elf32_Addr p_vaddr; /* Segment virtual address */ + Elf32_Addr p_paddr; /* Segment physical address */ + Elf32_Word p_filesz; /* Segment size in file */ + Elf32_Word p_memsz; /* Segment size in memory */ + Elf32_Word p_flags; /* Segment flags */ + Elf32_Word p_align; /* Segment alignment */ +} Elf32_Phdr; + +typedef struct +{ + Elf64_Word p_type; /* Segment type */ + Elf64_Word p_flags; /* Segment flags */ + Elf64_Off p_offset; /* Segment file offset */ + Elf64_Addr p_vaddr; /* Segment virtual address */ + Elf64_Addr p_paddr; /* Segment physical address */ + Elf64_Xword p_filesz; /* Segment size in file */ + Elf64_Xword p_memsz; /* Segment size in memory */ + Elf64_Xword p_align; /* Segment alignment */ +} Elf64_Phdr; + +/* Special value for e_phnum. This indicates that the real number of + program headers is too large to fit into e_phnum. Instead the real + value is in the field sh_info of section 0. */ + +#define PN_XNUM 0xffff + + /* Legal values for p_type (segment type). */ + +#define PT_NULL 0 /* Program header table entry unused */ +#define PT_LOAD 1 /* Loadable program segment */ +#define PT_DYNAMIC 2 /* Dynamic linking information */ +#define PT_INTERP 3 /* Program interpreter */ +#define PT_NOTE 4 /* Auxiliary information */ +#define PT_SHLIB 5 /* Reserved */ +#define PT_PHDR 6 /* Entry for header table itself */ +#define PT_TLS 7 /* Thread-local storage segment */ +#define PT_NUM 8 /* Number of defined types */ +#define PT_LOOS 0x60000000 /* Start of OS-specific */ +#define PT_GNU_EH_FRAME 0x6474e550 /* GCC .eh_frame_hdr segment */ +#define PT_GNU_STACK 0x6474e551 /* Indicates stack executability */ +#define PT_GNU_RELRO 0x6474e552 /* Read-only after relocation */ +#define PT_LOSUNW 0x6ffffffa +#define PT_SUNWBSS 0x6ffffffa /* Sun Specific segment */ +#define PT_SUNWSTACK 0x6ffffffb /* Stack segment */ +#define PT_HISUNW 0x6fffffff +#define PT_HIOS 0x6fffffff /* End of OS-specific */ +#define PT_LOPROC 0x70000000 /* Start of processor-specific */ +#define PT_HIPROC 0x7fffffff /* End of processor-specific */ + +/* Legal values for p_flags (segment flags). */ + +#define PF_X (1 << 0) /* Segment is executable */ +#define PF_W (1 << 1) /* Segment is writable */ +#define PF_R (1 << 2) /* Segment is readable */ +#define PF_MASKOS 0x0ff00000 /* OS-specific */ +#define PF_MASKPROC 0xf0000000 /* Processor-specific */ + +/* Legal values for note segment descriptor types for core files. */ + +#define NT_PRSTATUS 1 /* Contains copy of prstatus struct */ +#define NT_FPREGSET 2 /* Contains copy of fpregset struct */ +#define NT_PRPSINFO 3 /* Contains copy of prpsinfo struct */ +#define NT_PRXREG 4 /* Contains copy of prxregset struct */ +#define NT_TASKSTRUCT 4 /* Contains copy of task structure */ +#define NT_PLATFORM 5 /* String from sysinfo(SI_PLATFORM) */ +#define NT_AUXV 6 /* Contains copy of auxv array */ +#define NT_GWINDOWS 7 /* Contains copy of gwindows struct */ +#define NT_ASRS 8 /* Contains copy of asrset struct */ +#define NT_PSTATUS 10 /* Contains copy of pstatus struct */ +#define NT_PSINFO 13 /* Contains copy of psinfo struct */ +#define NT_PRCRED 14 /* Contains copy of prcred struct */ +#define NT_UTSNAME 15 /* Contains copy of utsname struct */ +#define NT_LWPSTATUS 16 /* Contains copy of lwpstatus struct */ +#define NT_LWPSINFO 17 /* Contains copy of lwpinfo struct */ +#define NT_PRFPXREG 20 /* Contains copy of fprxregset struct */ +#define NT_SIGINFO 0x53494749 /* Contains copy of siginfo_t, + size might increase */ +#define NT_FILE 0x46494c45 /* Contains information about mapped + files */ +#define NT_PRXFPREG 0x46e62b7f /* Contains copy of user_fxsr_struct */ +#define NT_PPC_VMX 0x100 /* PowerPC Altivec/VMX registers */ +#define NT_PPC_SPE 0x101 /* PowerPC SPE/EVR registers */ +#define NT_PPC_VSX 0x102 /* PowerPC VSX registers */ +#define NT_386_TLS 0x200 /* i386 TLS slots (struct user_desc) */ +#define NT_386_IOPERM 0x201 /* x86 io permission bitmap (1=deny) */ +#define NT_X86_XSTATE 0x202 /* x86 extended state using xsave */ +#define NT_S390_HIGH_GPRS 0x300 /* s390 upper register halves */ +#define NT_S390_TIMER 0x301 /* s390 timer register */ +#define NT_S390_TODCMP 0x302 /* s390 TOD clock comparator register */ +#define NT_S390_TODPREG 0x303 /* s390 TOD programmable register */ +#define NT_S390_CTRS 0x304 /* s390 control registers */ +#define NT_S390_PREFIX 0x305 /* s390 prefix register */ +#define NT_S390_LAST_BREAK 0x306 /* s390 breaking event address */ +#define NT_S390_SYSTEM_CALL 0x307 /* s390 system call restart data */ +#define NT_S390_TDB 0x308 /* s390 transaction diagnostic block */ +#define NT_ARM_VFP 0x400 /* ARM VFP/NEON registers */ +#define NT_ARM_TLS 0x401 /* ARM TLS register */ +#define NT_ARM_HW_BREAK 0x402 /* ARM hardware breakpoint registers */ +#define NT_ARM_HW_WATCH 0x403 /* ARM hardware watchpoint registers */ +#define NT_ARM_SYSTEM_CALL 0x404 /* ARM system call number */ + + /* Legal values for the note segment descriptor types for object files. */ + +#define NT_VERSION 1 /* Contains a version string. */ + + +/* Dynamic section entry. */ + +typedef struct +{ + Elf32_Sword d_tag; /* Dynamic entry type */ + union + { + Elf32_Word d_val; /* Integer value */ + Elf32_Addr d_ptr; /* Address value */ + } d_un; +} Elf32_Dyn; + +typedef struct +{ + Elf64_Sxword d_tag; /* Dynamic entry type */ + union + { + Elf64_Xword d_val; /* Integer value */ + Elf64_Addr d_ptr; /* Address value */ + } d_un; +} Elf64_Dyn; + +/* Legal values for d_tag (dynamic entry type). */ + +#define DT_NULL 0 /* Marks end of dynamic section */ +#define DT_NEEDED 1 /* Name of needed library */ +#define DT_PLTRELSZ 2 /* Size in bytes of PLT relocs */ +#define DT_PLTGOT 3 /* Processor defined value */ +#define DT_HASH 4 /* Address of symbol hash table */ +#define DT_STRTAB 5 /* Address of string table */ +#define DT_SYMTAB 6 /* Address of symbol table */ +#define DT_RELA 7 /* Address of Rela relocs */ +#define DT_RELASZ 8 /* Total size of Rela relocs */ +#define DT_RELAENT 9 /* Size of one Rela reloc */ +#define DT_STRSZ 10 /* Size of string table */ +#define DT_SYMENT 11 /* Size of one symbol table entry */ +#define DT_INIT 12 /* Address of init function */ +#define DT_FINI 13 /* Address of termination function */ +#define DT_SONAME 14 /* Name of shared object */ +#define DT_RPATH 15 /* Library search path (deprecated) */ +#define DT_SYMBOLIC 16 /* Start symbol search here */ +#define DT_REL 17 /* Address of Rel relocs */ +#define DT_RELSZ 18 /* Total size of Rel relocs */ +#define DT_RELENT 19 /* Size of one Rel reloc */ +#define DT_PLTREL 20 /* Type of reloc in PLT */ +#define DT_DEBUG 21 /* For debugging; unspecified */ +#define DT_TEXTREL 22 /* Reloc might modify .text */ +#define DT_JMPREL 23 /* Address of PLT relocs */ +#define DT_BIND_NOW 24 /* Process relocations of object */ +#define DT_INIT_ARRAY 25 /* Array with addresses of init fct */ +#define DT_FINI_ARRAY 26 /* Array with addresses of fini fct */ +#define DT_INIT_ARRAYSZ 27 /* Size in bytes of DT_INIT_ARRAY */ +#define DT_FINI_ARRAYSZ 28 /* Size in bytes of DT_FINI_ARRAY */ +#define DT_RUNPATH 29 /* Library search path */ +#define DT_FLAGS 30 /* Flags for the object being loaded */ +#define DT_ENCODING 32 /* Start of encoded range */ +#define DT_PREINIT_ARRAY 32 /* Array with addresses of preinit fct*/ +#define DT_PREINIT_ARRAYSZ 33 /* size in bytes of DT_PREINIT_ARRAY */ +#define DT_NUM 34 /* Number used */ +#define DT_LOOS 0x6000000d /* Start of OS-specific */ +#define DT_HIOS 0x6ffff000 /* End of OS-specific */ +#define DT_LOPROC 0x70000000 /* Start of processor-specific */ +#define DT_HIPROC 0x7fffffff /* End of processor-specific */ +#define DT_PROCNUM DT_MIPS_NUM /* Most used by any processor */ + +/* DT_* entries which fall between DT_VALRNGHI & DT_VALRNGLO use the + Dyn.d_un.d_val field of the Elf*_Dyn structure. This follows Sun's + approach. */ +#define DT_VALRNGLO 0x6ffffd00 +#define DT_GNU_PRELINKED 0x6ffffdf5 /* Prelinking timestamp */ +#define DT_GNU_CONFLICTSZ 0x6ffffdf6 /* Size of conflict section */ +#define DT_GNU_LIBLISTSZ 0x6ffffdf7 /* Size of library list */ +#define DT_CHECKSUM 0x6ffffdf8 +#define DT_PLTPADSZ 0x6ffffdf9 +#define DT_MOVEENT 0x6ffffdfa +#define DT_MOVESZ 0x6ffffdfb +#define DT_FEATURE_1 0x6ffffdfc /* Feature selection (DTF_*). */ +#define DT_POSFLAG_1 0x6ffffdfd /* Flags for DT_* entries, effecting + the following DT_* entry. */ +#define DT_SYMINSZ 0x6ffffdfe /* Size of syminfo table (in bytes) */ +#define DT_SYMINENT 0x6ffffdff /* Entry size of syminfo */ +#define DT_VALRNGHI 0x6ffffdff +#define DT_VALTAGIDX(tag) (DT_VALRNGHI - (tag)) /* Reverse order! */ +#define DT_VALNUM 12 + + /* DT_* entries which fall between DT_ADDRRNGHI & DT_ADDRRNGLO use the + Dyn.d_un.d_ptr field of the Elf*_Dyn structure. + + If any adjustment is made to the ELF object after it has been + built these entries will need to be adjusted. */ +#define DT_ADDRRNGLO 0x6ffffe00 +#define DT_GNU_HASH 0x6ffffef5 /* GNU-style hash table. */ +#define DT_TLSDESC_PLT 0x6ffffef6 +#define DT_TLSDESC_GOT 0x6ffffef7 +#define DT_GNU_CONFLICT 0x6ffffef8 /* Start of conflict section */ +#define DT_GNU_LIBLIST 0x6ffffef9 /* Library list */ +#define DT_CONFIG 0x6ffffefa /* Configuration information. */ +#define DT_DEPAUDIT 0x6ffffefb /* Dependency auditing. */ +#define DT_AUDIT 0x6ffffefc /* Object auditing. */ +#define DT_PLTPAD 0x6ffffefd /* PLT padding. */ +#define DT_MOVETAB 0x6ffffefe /* Move table. */ +#define DT_SYMINFO 0x6ffffeff /* Syminfo table. */ +#define DT_ADDRRNGHI 0x6ffffeff +#define DT_ADDRTAGIDX(tag) (DT_ADDRRNGHI - (tag)) /* Reverse order! */ +#define DT_ADDRNUM 11 + + /* The versioning entry types. The next are defined as part of the + GNU extension. */ +#define DT_VERSYM 0x6ffffff0 + +#define DT_RELACOUNT 0x6ffffff9 +#define DT_RELCOUNT 0x6ffffffa + + /* These were chosen by Sun. */ +#define DT_FLAGS_1 0x6ffffffb /* State flags, see DF_1_* below. */ +#define DT_VERDEF 0x6ffffffc /* Address of version definition + table */ +#define DT_VERDEFNUM 0x6ffffffd /* Number of version definitions */ +#define DT_VERNEED 0x6ffffffe /* Address of table with needed + versions */ +#define DT_VERNEEDNUM 0x6fffffff /* Number of needed versions */ +#define DT_VERSIONTAGIDX(tag) (DT_VERNEEDNUM - (tag)) /* Reverse order! */ +#define DT_VERSIONTAGNUM 16 + + /* Sun added these machine-independent extensions in the "processor-specific" + range. Be compatible. */ +#define DT_AUXILIARY 0x7ffffffd /* Shared object to load before self */ +#define DT_FILTER 0x7fffffff /* Shared object to get values from */ +#define DT_EXTRATAGIDX(tag) ((Elf32_Word)-((Elf32_Sword) (tag) <<1>>1)-1) +#define DT_EXTRANUM 3 + + /* Values of `d_un.d_val' in the DT_FLAGS entry. */ +#define DF_ORIGIN 0x00000001 /* Object may use DF_ORIGIN */ +#define DF_SYMBOLIC 0x00000002 /* Symbol resolutions starts here */ +#define DF_TEXTREL 0x00000004 /* Object contains text relocations */ +#define DF_BIND_NOW 0x00000008 /* No lazy binding for this object */ +#define DF_STATIC_TLS 0x00000010 /* Module uses the static TLS model */ + +/* State flags selectable in the `d_un.d_val' element of the DT_FLAGS_1 + entry in the dynamic section. */ +#define DF_1_NOW 0x00000001 /* Set RTLD_NOW for this object. */ +#define DF_1_GLOBAL 0x00000002 /* Set RTLD_GLOBAL for this object. */ +#define DF_1_GROUP 0x00000004 /* Set RTLD_GROUP for this object. */ +#define DF_1_NODELETE 0x00000008 /* Set RTLD_NODELETE for this object.*/ +#define DF_1_LOADFLTR 0x00000010 /* Trigger filtee loading at runtime.*/ +#define DF_1_INITFIRST 0x00000020 /* Set RTLD_INITFIRST for this object*/ +#define DF_1_NOOPEN 0x00000040 /* Set RTLD_NOOPEN for this object. */ +#define DF_1_ORIGIN 0x00000080 /* $ORIGIN must be handled. */ +#define DF_1_DIRECT 0x00000100 /* Direct binding enabled. */ +#define DF_1_TRANS 0x00000200 +#define DF_1_INTERPOSE 0x00000400 /* Object is used to interpose. */ +#define DF_1_NODEFLIB 0x00000800 /* Ignore default lib search path. */ +#define DF_1_NODUMP 0x00001000 /* Object can't be dldump'ed. */ +#define DF_1_CONFALT 0x00002000 /* Configuration alternative created.*/ +#define DF_1_ENDFILTEE 0x00004000 /* Filtee terminates filters search. */ +#define DF_1_DISPRELDNE 0x00008000 /* Disp reloc applied at build time. */ +#define DF_1_DISPRELPND 0x00010000 /* Disp reloc applied at run-time. */ +#define DF_1_NODIRECT 0x00020000 /* Object has no-direct binding. */ +#define DF_1_IGNMULDEF 0x00040000 +#define DF_1_NOKSYMS 0x00080000 +#define DF_1_NOHDR 0x00100000 +#define DF_1_EDITED 0x00200000 /* Object is modified after built. */ +#define DF_1_NORELOC 0x00400000 +#define DF_1_SYMINTPOSE 0x00800000 /* Object has individual interposers. */ +#define DF_1_GLOBAUDIT 0x01000000 /* Global auditing required. */ +#define DF_1_SINGLETON 0x02000000 /* Singleton symbols are used. */ + + /* Flags for the feature selection in DT_FEATURE_1. */ +#define DTF_1_PARINIT 0x00000001 +#define DTF_1_CONFEXP 0x00000002 + +/* Flags in the DT_POSFLAG_1 entry effecting only the next DT_* entry. */ +#define DF_P1_LAZYLOAD 0x00000001 /* Lazyload following object. */ +#define DF_P1_GROUPPERM 0x00000002 /* Symbols from next object are not + generally available. */ + + /* Version definition sections. */ + +typedef struct +{ + Elf32_Half vd_version; /* Version revision */ + Elf32_Half vd_flags; /* Version information */ + Elf32_Half vd_ndx; /* Version Index */ + Elf32_Half vd_cnt; /* Number of associated aux entries */ + Elf32_Word vd_hash; /* Version name hash value */ + Elf32_Word vd_aux; /* Offset in bytes to verdaux array */ + Elf32_Word vd_next; /* Offset in bytes to next verdef + entry */ +} Elf32_Verdef; + +typedef struct +{ + Elf64_Half vd_version; /* Version revision */ + Elf64_Half vd_flags; /* Version information */ + Elf64_Half vd_ndx; /* Version Index */ + Elf64_Half vd_cnt; /* Number of associated aux entries */ + Elf64_Word vd_hash; /* Version name hash value */ + Elf64_Word vd_aux; /* Offset in bytes to verdaux array */ + Elf64_Word vd_next; /* Offset in bytes to next verdef + entry */ +} Elf64_Verdef; + + +/* Legal values for vd_version (version revision). */ +#define VER_DEF_NONE 0 /* No version */ +#define VER_DEF_CURRENT 1 /* Current version */ +#define VER_DEF_NUM 2 /* Given version number */ + +/* Legal values for vd_flags (version information flags). */ +#define VER_FLG_BASE 0x1 /* Version definition of file itself */ +#define VER_FLG_WEAK 0x2 /* Weak version identifier */ + +/* Versym symbol index values. */ +#define VER_NDX_LOCAL 0 /* Symbol is local. */ +#define VER_NDX_GLOBAL 1 /* Symbol is global. */ +#define VER_NDX_LORESERVE 0xff00 /* Beginning of reserved entries. */ +#define VER_NDX_ELIMINATE 0xff01 /* Symbol is to be eliminated. */ + +/* Auxialiary version information. */ + +typedef struct +{ + Elf32_Word vda_name; /* Version or dependency names */ + Elf32_Word vda_next; /* Offset in bytes to next verdaux + entry */ +} Elf32_Verdaux; + +typedef struct +{ + Elf64_Word vda_name; /* Version or dependency names */ + Elf64_Word vda_next; /* Offset in bytes to next verdaux + entry */ +} Elf64_Verdaux; + + +/* Version dependency section. */ + +typedef struct +{ + Elf32_Half vn_version; /* Version of structure */ + Elf32_Half vn_cnt; /* Number of associated aux entries */ + Elf32_Word vn_file; /* Offset of filename for this + dependency */ + Elf32_Word vn_aux; /* Offset in bytes to vernaux array */ + Elf32_Word vn_next; /* Offset in bytes to next verneed + entry */ +} Elf32_Verneed; + +typedef struct +{ + Elf64_Half vn_version; /* Version of structure */ + Elf64_Half vn_cnt; /* Number of associated aux entries */ + Elf64_Word vn_file; /* Offset of filename for this + dependency */ + Elf64_Word vn_aux; /* Offset in bytes to vernaux array */ + Elf64_Word vn_next; /* Offset in bytes to next verneed + entry */ +} Elf64_Verneed; + + +/* Legal values for vn_version (version revision). */ +#define VER_NEED_NONE 0 /* No version */ +#define VER_NEED_CURRENT 1 /* Current version */ +#define VER_NEED_NUM 2 /* Given version number */ + +/* Auxiliary needed version information. */ + +typedef struct +{ + Elf32_Word vna_hash; /* Hash value of dependency name */ + Elf32_Half vna_flags; /* Dependency specific information */ + Elf32_Half vna_other; /* Unused */ + Elf32_Word vna_name; /* Dependency name string offset */ + Elf32_Word vna_next; /* Offset in bytes to next vernaux + entry */ +} Elf32_Vernaux; + +typedef struct +{ + Elf64_Word vna_hash; /* Hash value of dependency name */ + Elf64_Half vna_flags; /* Dependency specific information */ + Elf64_Half vna_other; /* Unused */ + Elf64_Word vna_name; /* Dependency name string offset */ + Elf64_Word vna_next; /* Offset in bytes to next vernaux + entry */ +} Elf64_Vernaux; + + +/* Legal values for vna_flags. */ +#define VER_FLG_WEAK 0x2 /* Weak version identifier */ + + +/* Auxiliary vector. */ + +/* This vector is normally only used by the program interpreter. The + usual definition in an ABI supplement uses the name auxv_t. The + vector is not usually defined in a standard file, but it + can't hurt. We rename it to avoid conflicts. The sizes of these + types are an arrangement between the exec server and the program + interpreter, so we don't fully specify them here. */ + +typedef struct +{ + uint32_t a_type; /* Entry type */ + union + { + uint32_t a_val; /* Integer value */ + /* We use to have pointer elements added here. We cannot do that, + though, since it does not work when using 32-bit definitions + on 64-bit platforms and vice versa. */ + } a_un; +} Elf32_auxv_t; + +typedef struct +{ + uint64_t a_type; /* Entry type */ + union + { + uint64_t a_val; /* Integer value */ + /* We use to have pointer elements added here. We cannot do that, + though, since it does not work when using 32-bit definitions + on 64-bit platforms and vice versa. */ + } a_un; +} Elf64_auxv_t; + +/* Legal values for a_type (entry type). */ + +#define AT_NULL 0 /* End of vector */ +#define AT_IGNORE 1 /* Entry should be ignored */ +#define AT_EXECFD 2 /* File descriptor of program */ +#define AT_PHDR 3 /* Program headers for program */ +#define AT_PHENT 4 /* Size of program header entry */ +#define AT_PHNUM 5 /* Number of program headers */ +#define AT_PAGESZ 6 /* System page size */ +#define AT_BASE 7 /* Base address of interpreter */ +#define AT_FLAGS 8 /* Flags */ +#define AT_ENTRY 9 /* Entry point of program */ +#define AT_NOTELF 10 /* Program is not ELF */ +#define AT_UID 11 /* Real uid */ +#define AT_EUID 12 /* Effective uid */ +#define AT_GID 13 /* Real gid */ +#define AT_EGID 14 /* Effective gid */ +#define AT_CLKTCK 17 /* Frequency of times() */ + +/* Some more special a_type values describing the hardware. */ +#define AT_PLATFORM 15 /* String identifying platform. */ +#define AT_HWCAP 16 /* Machine-dependent hints about + processor capabilities. */ + + /* This entry gives some information about the FPU initialization + performed by the kernel. */ +#define AT_FPUCW 18 /* Used FPU control word. */ + + /* Cache block sizes. */ +#define AT_DCACHEBSIZE 19 /* Data cache block size. */ +#define AT_ICACHEBSIZE 20 /* Instruction cache block size. */ +#define AT_UCACHEBSIZE 21 /* Unified cache block size. */ + +/* A special ignored value for PPC, used by the kernel to control the + interpretation of the AUXV. Must be > 16. */ +#define AT_IGNOREPPC 22 /* Entry should be ignored. */ + +#define AT_SECURE 23 /* Boolean, was exec setuid-like? */ + +#define AT_BASE_PLATFORM 24 /* String identifying real platforms.*/ + +#define AT_RANDOM 25 /* Address of 16 random bytes. */ + +#define AT_HWCAP2 26 /* More machine-dependent hints about + processor capabilities. */ + +#define AT_EXECFN 31 /* Filename of executable. */ + + /* Pointer to the global system page used for system calls and other + nice things. */ +#define AT_SYSINFO 32 +#define AT_SYSINFO_EHDR 33 + + /* Shapes of the caches. Bits 0-3 contains associativity; bits 4-7 contains + log2 of line size; mask those to get cache size. */ +#define AT_L1I_CACHESHAPE 34 +#define AT_L1D_CACHESHAPE 35 +#define AT_L2_CACHESHAPE 36 +#define AT_L3_CACHESHAPE 37 + + /* Note section contents. Each entry in the note section begins with + a header of a fixed form. */ + +typedef struct +{ + Elf32_Word n_namesz; /* Length of the note's name. */ + Elf32_Word n_descsz; /* Length of the note's descriptor. */ + Elf32_Word n_type; /* Type of the note. */ +} Elf32_Nhdr; + +typedef struct +{ + Elf64_Word n_namesz; /* Length of the note's name. */ + Elf64_Word n_descsz; /* Length of the note's descriptor. */ + Elf64_Word n_type; /* Type of the note. */ +} Elf64_Nhdr; + +/* Known names of notes. */ + +/* Solaris entries in the note section have this name. */ +#define ELF_NOTE_SOLARIS "SUNW Solaris" + +/* Note entries for GNU systems have this name. */ +#define ELF_NOTE_GNU "GNU" + + +/* Defined types of notes for Solaris. */ + +/* Value of descriptor (one word) is desired pagesize for the binary. */ +#define ELF_NOTE_PAGESIZE_HINT 1 + + +/* Defined note types for GNU systems. */ + +/* ABI information. The descriptor consists of words: + word 0: OS descriptor + word 1: major version of the ABI + word 2: minor version of the ABI + word 3: subminor version of the ABI +*/ +#define NT_GNU_ABI_TAG 1 +#define ELF_NOTE_ABI NT_GNU_ABI_TAG /* Old name. */ + +/* Known OSes. These values can appear in word 0 of an + NT_GNU_ABI_TAG note section entry. */ +#define ELF_NOTE_OS_LINUX 0 +#define ELF_NOTE_OS_GNU 1 +#define ELF_NOTE_OS_SOLARIS2 2 +#define ELF_NOTE_OS_FREEBSD 3 + + /* Synthetic hwcap information. The descriptor begins with two words: + word 0: number of entries + word 1: bitmask of enabled entries + Then follow variable-length entries, one byte followed by a + '\0'-terminated hwcap name string. The byte gives the bit + number to test if enabled, (1U << bit) & bitmask. */ +#define NT_GNU_HWCAP 2 + + /* Build ID bits as generated by ld --build-id. + The descriptor consists of any nonzero number of bytes. */ +#define NT_GNU_BUILD_ID 3 + + /* Version note generated by GNU gold containing a version string. */ +#define NT_GNU_GOLD_VERSION 4 + + +/* Move records. */ +typedef struct +{ + Elf32_Xword m_value; /* Symbol value. */ + Elf32_Word m_info; /* Size and index. */ + Elf32_Word m_poffset; /* Symbol offset. */ + Elf32_Half m_repeat; /* Repeat count. */ + Elf32_Half m_stride; /* Stride info. */ +} Elf32_Move; + +typedef struct +{ + Elf64_Xword m_value; /* Symbol value. */ + Elf64_Xword m_info; /* Size and index. */ + Elf64_Xword m_poffset; /* Symbol offset. */ + Elf64_Half m_repeat; /* Repeat count. */ + Elf64_Half m_stride; /* Stride info. */ +} Elf64_Move; + +/* Macro to construct move records. */ +#define ELF32_M_SYM(info) ((info) >> 8) +#define ELF32_M_SIZE(info) ((unsigned char) (info)) +#define ELF32_M_INFO(sym, size) (((sym) << 8) + (unsigned char) (size)) + +#define ELF64_M_SYM(info) ELF32_M_SYM (info) +#define ELF64_M_SIZE(info) ELF32_M_SIZE (info) +#define ELF64_M_INFO(sym, size) ELF32_M_INFO (sym, size) + + +/* Motorola 68k specific definitions. */ + +/* Values for Elf32_Ehdr.e_flags. */ +#define EF_CPU32 0x00810000 + +/* m68k relocs. */ + +#define R_68K_NONE 0 /* No reloc */ +#define R_68K_32 1 /* Direct 32 bit */ +#define R_68K_16 2 /* Direct 16 bit */ +#define R_68K_8 3 /* Direct 8 bit */ +#define R_68K_PC32 4 /* PC relative 32 bit */ +#define R_68K_PC16 5 /* PC relative 16 bit */ +#define R_68K_PC8 6 /* PC relative 8 bit */ +#define R_68K_GOT32 7 /* 32 bit PC relative GOT entry */ +#define R_68K_GOT16 8 /* 16 bit PC relative GOT entry */ +#define R_68K_GOT8 9 /* 8 bit PC relative GOT entry */ +#define R_68K_GOT32O 10 /* 32 bit GOT offset */ +#define R_68K_GOT16O 11 /* 16 bit GOT offset */ +#define R_68K_GOT8O 12 /* 8 bit GOT offset */ +#define R_68K_PLT32 13 /* 32 bit PC relative PLT address */ +#define R_68K_PLT16 14 /* 16 bit PC relative PLT address */ +#define R_68K_PLT8 15 /* 8 bit PC relative PLT address */ +#define R_68K_PLT32O 16 /* 32 bit PLT offset */ +#define R_68K_PLT16O 17 /* 16 bit PLT offset */ +#define R_68K_PLT8O 18 /* 8 bit PLT offset */ +#define R_68K_COPY 19 /* Copy symbol at runtime */ +#define R_68K_GLOB_DAT 20 /* Create GOT entry */ +#define R_68K_JMP_SLOT 21 /* Create PLT entry */ +#define R_68K_RELATIVE 22 /* Adjust by program base */ +#define R_68K_TLS_GD32 25 /* 32 bit GOT offset for GD */ +#define R_68K_TLS_GD16 26 /* 16 bit GOT offset for GD */ +#define R_68K_TLS_GD8 27 /* 8 bit GOT offset for GD */ +#define R_68K_TLS_LDM32 28 /* 32 bit GOT offset for LDM */ +#define R_68K_TLS_LDM16 29 /* 16 bit GOT offset for LDM */ +#define R_68K_TLS_LDM8 30 /* 8 bit GOT offset for LDM */ +#define R_68K_TLS_LDO32 31 /* 32 bit module-relative offset */ +#define R_68K_TLS_LDO16 32 /* 16 bit module-relative offset */ +#define R_68K_TLS_LDO8 33 /* 8 bit module-relative offset */ +#define R_68K_TLS_IE32 34 /* 32 bit GOT offset for IE */ +#define R_68K_TLS_IE16 35 /* 16 bit GOT offset for IE */ +#define R_68K_TLS_IE8 36 /* 8 bit GOT offset for IE */ +#define R_68K_TLS_LE32 37 /* 32 bit offset relative to + static TLS block */ +#define R_68K_TLS_LE16 38 /* 16 bit offset relative to + static TLS block */ +#define R_68K_TLS_LE8 39 /* 8 bit offset relative to + static TLS block */ +#define R_68K_TLS_DTPMOD32 40 /* 32 bit module number */ +#define R_68K_TLS_DTPREL32 41 /* 32 bit module-relative offset */ +#define R_68K_TLS_TPREL32 42 /* 32 bit TP-relative offset */ + /* Keep this the last entry. */ +#define R_68K_NUM 43 + +/* Intel 80386 specific definitions. */ + +/* i386 relocs. */ + +#define R_386_NONE 0 /* No reloc */ +#define R_386_32 1 /* Direct 32 bit */ +#define R_386_PC32 2 /* PC relative 32 bit */ +#define R_386_GOT32 3 /* 32 bit GOT entry */ +#define R_386_PLT32 4 /* 32 bit PLT address */ +#define R_386_COPY 5 /* Copy symbol at runtime */ +#define R_386_GLOB_DAT 6 /* Create GOT entry */ +#define R_386_JMP_SLOT 7 /* Create PLT entry */ +#define R_386_RELATIVE 8 /* Adjust by program base */ +#define R_386_GOTOFF 9 /* 32 bit offset to GOT */ +#define R_386_GOTPC 10 /* 32 bit PC relative offset to GOT */ +#define R_386_32PLT 11 +#define R_386_TLS_TPOFF 14 /* Offset in static TLS block */ +#define R_386_TLS_IE 15 /* Address of GOT entry for static TLS + block offset */ +#define R_386_TLS_GOTIE 16 /* GOT entry for static TLS block + offset */ +#define R_386_TLS_LE 17 /* Offset relative to static TLS + block */ +#define R_386_TLS_GD 18 /* Direct 32 bit for GNU version of + general dynamic thread local data */ +#define R_386_TLS_LDM 19 /* Direct 32 bit for GNU version of + local dynamic thread local data + in LE code */ +#define R_386_16 20 +#define R_386_PC16 21 +#define R_386_8 22 +#define R_386_PC8 23 +#define R_386_TLS_GD_32 24 /* Direct 32 bit for general dynamic + thread local data */ +#define R_386_TLS_GD_PUSH 25 /* Tag for pushl in GD TLS code */ +#define R_386_TLS_GD_CALL 26 /* Relocation for call to + __tls_get_addr() */ +#define R_386_TLS_GD_POP 27 /* Tag for popl in GD TLS code */ +#define R_386_TLS_LDM_32 28 /* Direct 32 bit for local dynamic + thread local data in LE code */ +#define R_386_TLS_LDM_PUSH 29 /* Tag for pushl in LDM TLS code */ +#define R_386_TLS_LDM_CALL 30 /* Relocation for call to + __tls_get_addr() in LDM code */ +#define R_386_TLS_LDM_POP 31 /* Tag for popl in LDM TLS code */ +#define R_386_TLS_LDO_32 32 /* Offset relative to TLS block */ +#define R_386_TLS_IE_32 33 /* GOT entry for negated static TLS + block offset */ +#define R_386_TLS_LE_32 34 /* Negated offset relative to static + TLS block */ +#define R_386_TLS_DTPMOD32 35 /* ID of module containing symbol */ +#define R_386_TLS_DTPOFF32 36 /* Offset in TLS block */ +#define R_386_TLS_TPOFF32 37 /* Negated offset in static TLS block */ +#define R_386_SIZE32 38 /* 32-bit symbol size */ +#define R_386_TLS_GOTDESC 39 /* GOT offset for TLS descriptor. */ +#define R_386_TLS_DESC_CALL 40 /* Marker of call through TLS + descriptor for + relaxation. */ +#define R_386_TLS_DESC 41 /* TLS descriptor containing + pointer to code and to + argument, returning the TLS + offset for the symbol. */ +#define R_386_IRELATIVE 42 /* Adjust indirectly by program base */ +#define R_386_GOT32X 43 /* Load from 32 bit GOT entry, + relaxable. */ + /* Keep this the last entry. */ +#define R_386_NUM 44 + +/* SUN SPARC specific definitions. */ + +/* Legal values for ST_TYPE subfield of st_info (symbol type). */ + +#define STT_SPARC_REGISTER 13 /* Global register reserved to app. */ + +/* Values for Elf64_Ehdr.e_flags. */ + +#define EF_SPARCV9_MM 3 +#define EF_SPARCV9_TSO 0 +#define EF_SPARCV9_PSO 1 +#define EF_SPARCV9_RMO 2 +#define EF_SPARC_LEDATA 0x800000 /* little endian data */ +#define EF_SPARC_EXT_MASK 0xFFFF00 +#define EF_SPARC_32PLUS 0x000100 /* generic V8+ features */ +#define EF_SPARC_SUN_US1 0x000200 /* Sun UltraSPARC1 extensions */ +#define EF_SPARC_HAL_R1 0x000400 /* HAL R1 extensions */ +#define EF_SPARC_SUN_US3 0x000800 /* Sun UltraSPARCIII extensions */ + +/* SPARC relocs. */ + +#define R_SPARC_NONE 0 /* No reloc */ +#define R_SPARC_8 1 /* Direct 8 bit */ +#define R_SPARC_16 2 /* Direct 16 bit */ +#define R_SPARC_32 3 /* Direct 32 bit */ +#define R_SPARC_DISP8 4 /* PC relative 8 bit */ +#define R_SPARC_DISP16 5 /* PC relative 16 bit */ +#define R_SPARC_DISP32 6 /* PC relative 32 bit */ +#define R_SPARC_WDISP30 7 /* PC relative 30 bit shifted */ +#define R_SPARC_WDISP22 8 /* PC relative 22 bit shifted */ +#define R_SPARC_HI22 9 /* High 22 bit */ +#define R_SPARC_22 10 /* Direct 22 bit */ +#define R_SPARC_13 11 /* Direct 13 bit */ +#define R_SPARC_LO10 12 /* Truncated 10 bit */ +#define R_SPARC_GOT10 13 /* Truncated 10 bit GOT entry */ +#define R_SPARC_GOT13 14 /* 13 bit GOT entry */ +#define R_SPARC_GOT22 15 /* 22 bit GOT entry shifted */ +#define R_SPARC_PC10 16 /* PC relative 10 bit truncated */ +#define R_SPARC_PC22 17 /* PC relative 22 bit shifted */ +#define R_SPARC_WPLT30 18 /* 30 bit PC relative PLT address */ +#define R_SPARC_COPY 19 /* Copy symbol at runtime */ +#define R_SPARC_GLOB_DAT 20 /* Create GOT entry */ +#define R_SPARC_JMP_SLOT 21 /* Create PLT entry */ +#define R_SPARC_RELATIVE 22 /* Adjust by program base */ +#define R_SPARC_UA32 23 /* Direct 32 bit unaligned */ + +/* Additional Sparc64 relocs. */ + +#define R_SPARC_PLT32 24 /* Direct 32 bit ref to PLT entry */ +#define R_SPARC_HIPLT22 25 /* High 22 bit PLT entry */ +#define R_SPARC_LOPLT10 26 /* Truncated 10 bit PLT entry */ +#define R_SPARC_PCPLT32 27 /* PC rel 32 bit ref to PLT entry */ +#define R_SPARC_PCPLT22 28 /* PC rel high 22 bit PLT entry */ +#define R_SPARC_PCPLT10 29 /* PC rel trunc 10 bit PLT entry */ +#define R_SPARC_10 30 /* Direct 10 bit */ +#define R_SPARC_11 31 /* Direct 11 bit */ +#define R_SPARC_64 32 /* Direct 64 bit */ +#define R_SPARC_OLO10 33 /* 10bit with secondary 13bit addend */ +#define R_SPARC_HH22 34 /* Top 22 bits of direct 64 bit */ +#define R_SPARC_HM10 35 /* High middle 10 bits of ... */ +#define R_SPARC_LM22 36 /* Low middle 22 bits of ... */ +#define R_SPARC_PC_HH22 37 /* Top 22 bits of pc rel 64 bit */ +#define R_SPARC_PC_HM10 38 /* High middle 10 bit of ... */ +#define R_SPARC_PC_LM22 39 /* Low miggle 22 bits of ... */ +#define R_SPARC_WDISP16 40 /* PC relative 16 bit shifted */ +#define R_SPARC_WDISP19 41 /* PC relative 19 bit shifted */ +#define R_SPARC_GLOB_JMP 42 /* was part of v9 ABI but was removed */ +#define R_SPARC_7 43 /* Direct 7 bit */ +#define R_SPARC_5 44 /* Direct 5 bit */ +#define R_SPARC_6 45 /* Direct 6 bit */ +#define R_SPARC_DISP64 46 /* PC relative 64 bit */ +#define R_SPARC_PLT64 47 /* Direct 64 bit ref to PLT entry */ +#define R_SPARC_HIX22 48 /* High 22 bit complemented */ +#define R_SPARC_LOX10 49 /* Truncated 11 bit complemented */ +#define R_SPARC_H44 50 /* Direct high 12 of 44 bit */ +#define R_SPARC_M44 51 /* Direct mid 22 of 44 bit */ +#define R_SPARC_L44 52 /* Direct low 10 of 44 bit */ +#define R_SPARC_REGISTER 53 /* Global register usage */ +#define R_SPARC_UA64 54 /* Direct 64 bit unaligned */ +#define R_SPARC_UA16 55 /* Direct 16 bit unaligned */ +#define R_SPARC_TLS_GD_HI22 56 +#define R_SPARC_TLS_GD_LO10 57 +#define R_SPARC_TLS_GD_ADD 58 +#define R_SPARC_TLS_GD_CALL 59 +#define R_SPARC_TLS_LDM_HI22 60 +#define R_SPARC_TLS_LDM_LO10 61 +#define R_SPARC_TLS_LDM_ADD 62 +#define R_SPARC_TLS_LDM_CALL 63 +#define R_SPARC_TLS_LDO_HIX22 64 +#define R_SPARC_TLS_LDO_LOX10 65 +#define R_SPARC_TLS_LDO_ADD 66 +#define R_SPARC_TLS_IE_HI22 67 +#define R_SPARC_TLS_IE_LO10 68 +#define R_SPARC_TLS_IE_LD 69 +#define R_SPARC_TLS_IE_LDX 70 +#define R_SPARC_TLS_IE_ADD 71 +#define R_SPARC_TLS_LE_HIX22 72 +#define R_SPARC_TLS_LE_LOX10 73 +#define R_SPARC_TLS_DTPMOD32 74 +#define R_SPARC_TLS_DTPMOD64 75 +#define R_SPARC_TLS_DTPOFF32 76 +#define R_SPARC_TLS_DTPOFF64 77 +#define R_SPARC_TLS_TPOFF32 78 +#define R_SPARC_TLS_TPOFF64 79 +#define R_SPARC_GOTDATA_HIX22 80 +#define R_SPARC_GOTDATA_LOX10 81 +#define R_SPARC_GOTDATA_OP_HIX22 82 +#define R_SPARC_GOTDATA_OP_LOX10 83 +#define R_SPARC_GOTDATA_OP 84 +#define R_SPARC_H34 85 +#define R_SPARC_SIZE32 86 +#define R_SPARC_SIZE64 87 +#define R_SPARC_WDISP10 88 +#define R_SPARC_JMP_IREL 248 +#define R_SPARC_IRELATIVE 249 +#define R_SPARC_GNU_VTINHERIT 250 +#define R_SPARC_GNU_VTENTRY 251 +#define R_SPARC_REV32 252 +/* Keep this the last entry. */ +#define R_SPARC_NUM 253 + +/* For Sparc64, legal values for d_tag of Elf64_Dyn. */ + +#define DT_SPARC_REGISTER 0x70000001 +#define DT_SPARC_NUM 2 + +/* MIPS R3000 specific definitions. */ + +/* Legal values for e_flags field of Elf32_Ehdr. */ + +#define EF_MIPS_NOREORDER 1 /* A .noreorder directive was used. */ +#define EF_MIPS_PIC 2 /* Contains PIC code. */ +#define EF_MIPS_CPIC 4 /* Uses PIC calling sequence. */ +#define EF_MIPS_XGOT 8 +#define EF_MIPS_64BIT_WHIRL 16 +#define EF_MIPS_ABI2 32 +#define EF_MIPS_ABI_ON32 64 +#define EF_MIPS_FP64 512 /* Uses FP64 (12 callee-saved). */ +#define EF_MIPS_NAN2008 1024 /* Uses IEEE 754-2008 NaN encoding. */ +#define EF_MIPS_ARCH 0xf0000000 /* MIPS architecture level. */ + +/* Legal values for MIPS architecture level. */ + +#define EF_MIPS_ARCH_1 0x00000000 /* -mips1 code. */ +#define EF_MIPS_ARCH_2 0x10000000 /* -mips2 code. */ +#define EF_MIPS_ARCH_3 0x20000000 /* -mips3 code. */ +#define EF_MIPS_ARCH_4 0x30000000 /* -mips4 code. */ +#define EF_MIPS_ARCH_5 0x40000000 /* -mips5 code. */ +#define EF_MIPS_ARCH_32 0x50000000 /* MIPS32 code. */ +#define EF_MIPS_ARCH_64 0x60000000 /* MIPS64 code. */ +#define EF_MIPS_ARCH_32R2 0x70000000 /* MIPS32r2 code. */ +#define EF_MIPS_ARCH_64R2 0x80000000 /* MIPS64r2 code. */ + +/* The following are unofficial names and should not be used. */ + +#define E_MIPS_ARCH_1 EF_MIPS_ARCH_1 +#define E_MIPS_ARCH_2 EF_MIPS_ARCH_2 +#define E_MIPS_ARCH_3 EF_MIPS_ARCH_3 +#define E_MIPS_ARCH_4 EF_MIPS_ARCH_4 +#define E_MIPS_ARCH_5 EF_MIPS_ARCH_5 +#define E_MIPS_ARCH_32 EF_MIPS_ARCH_32 +#define E_MIPS_ARCH_64 EF_MIPS_ARCH_64 + +/* Special section indices. */ + +#define SHN_MIPS_ACOMMON 0xff00 /* Allocated common symbols. */ +#define SHN_MIPS_TEXT 0xff01 /* Allocated test symbols. */ +#define SHN_MIPS_DATA 0xff02 /* Allocated data symbols. */ +#define SHN_MIPS_SCOMMON 0xff03 /* Small common symbols. */ +#define SHN_MIPS_SUNDEFINED 0xff04 /* Small undefined symbols. */ + +/* Legal values for sh_type field of Elf32_Shdr. */ + +#define SHT_MIPS_LIBLIST 0x70000000 /* Shared objects used in link. */ +#define SHT_MIPS_MSYM 0x70000001 +#define SHT_MIPS_CONFLICT 0x70000002 /* Conflicting symbols. */ +#define SHT_MIPS_GPTAB 0x70000003 /* Global data area sizes. */ +#define SHT_MIPS_UCODE 0x70000004 /* Reserved for SGI/MIPS compilers */ +#define SHT_MIPS_DEBUG 0x70000005 /* MIPS ECOFF debugging info. */ +#define SHT_MIPS_REGINFO 0x70000006 /* Register usage information. */ +#define SHT_MIPS_PACKAGE 0x70000007 +#define SHT_MIPS_PACKSYM 0x70000008 +#define SHT_MIPS_RELD 0x70000009 +#define SHT_MIPS_IFACE 0x7000000b +#define SHT_MIPS_CONTENT 0x7000000c +#define SHT_MIPS_OPTIONS 0x7000000d /* Miscellaneous options. */ +#define SHT_MIPS_SHDR 0x70000010 +#define SHT_MIPS_FDESC 0x70000011 +#define SHT_MIPS_EXTSYM 0x70000012 +#define SHT_MIPS_DENSE 0x70000013 +#define SHT_MIPS_PDESC 0x70000014 +#define SHT_MIPS_LOCSYM 0x70000015 +#define SHT_MIPS_AUXSYM 0x70000016 +#define SHT_MIPS_OPTSYM 0x70000017 +#define SHT_MIPS_LOCSTR 0x70000018 +#define SHT_MIPS_LINE 0x70000019 +#define SHT_MIPS_RFDESC 0x7000001a +#define SHT_MIPS_DELTASYM 0x7000001b +#define SHT_MIPS_DELTAINST 0x7000001c +#define SHT_MIPS_DELTACLASS 0x7000001d +#define SHT_MIPS_DWARF 0x7000001e /* DWARF debugging information. */ +#define SHT_MIPS_DELTADECL 0x7000001f +#define SHT_MIPS_SYMBOL_LIB 0x70000020 +#define SHT_MIPS_EVENTS 0x70000021 /* Event section. */ +#define SHT_MIPS_TRANSLATE 0x70000022 +#define SHT_MIPS_PIXIE 0x70000023 +#define SHT_MIPS_XLATE 0x70000024 +#define SHT_MIPS_XLATE_DEBUG 0x70000025 +#define SHT_MIPS_WHIRL 0x70000026 +#define SHT_MIPS_EH_REGION 0x70000027 +#define SHT_MIPS_XLATE_OLD 0x70000028 +#define SHT_MIPS_PDR_EXCEPTION 0x70000029 + +/* Legal values for sh_flags field of Elf32_Shdr. */ + +#define SHF_MIPS_GPREL 0x10000000 /* Must be in global data area. */ +#define SHF_MIPS_MERGE 0x20000000 +#define SHF_MIPS_ADDR 0x40000000 +#define SHF_MIPS_STRINGS 0x80000000 +#define SHF_MIPS_NOSTRIP 0x08000000 +#define SHF_MIPS_LOCAL 0x04000000 +#define SHF_MIPS_NAMES 0x02000000 +#define SHF_MIPS_NODUPE 0x01000000 + + +/* Symbol tables. */ + +/* MIPS specific values for `st_other'. */ +#define STO_MIPS_DEFAULT 0x0 +#define STO_MIPS_INTERNAL 0x1 +#define STO_MIPS_HIDDEN 0x2 +#define STO_MIPS_PROTECTED 0x3 +#define STO_MIPS_PLT 0x8 +#define STO_MIPS_SC_ALIGN_UNUSED 0xff + +/* MIPS specific values for `st_info'. */ +#define STB_MIPS_SPLIT_COMMON 13 + +/* Entries found in sections of type SHT_MIPS_GPTAB. */ + +typedef union +{ + struct + { + Elf32_Word gt_current_g_value; /* -G value used for compilation. */ + Elf32_Word gt_unused; /* Not used. */ + } gt_header; /* First entry in section. */ + struct + { + Elf32_Word gt_g_value; /* If this value were used for -G. */ + Elf32_Word gt_bytes; /* This many bytes would be used. */ + } gt_entry; /* Subsequent entries in section. */ +} Elf32_gptab; + +/* Entry found in sections of type SHT_MIPS_REGINFO. */ + +typedef struct +{ + Elf32_Word ri_gprmask; /* General registers used. */ + Elf32_Word ri_cprmask[4]; /* Coprocessor registers used. */ + Elf32_Sword ri_gp_value; /* $gp register value. */ +} Elf32_RegInfo; + +/* Entries found in sections of type SHT_MIPS_OPTIONS. */ + +typedef struct +{ + unsigned char kind; /* Determines interpretation of the + variable part of descriptor. */ + unsigned char size; /* Size of descriptor, including header. */ + Elf32_Section section; /* Section header index of section affected, + 0 for global options. */ + Elf32_Word info; /* Kind-specific information. */ +} Elf_Options; + +/* Values for `kind' field in Elf_Options. */ + +#define ODK_NULL 0 /* Undefined. */ +#define ODK_REGINFO 1 /* Register usage information. */ +#define ODK_EXCEPTIONS 2 /* Exception processing options. */ +#define ODK_PAD 3 /* Section padding options. */ +#define ODK_HWPATCH 4 /* Hardware workarounds performed */ +#define ODK_FILL 5 /* record the fill value used by the linker. */ +#define ODK_TAGS 6 /* reserve space for desktop tools to write. */ +#define ODK_HWAND 7 /* HW workarounds. 'AND' bits when merging. */ +#define ODK_HWOR 8 /* HW workarounds. 'OR' bits when merging. */ + +/* Values for `info' in Elf_Options for ODK_EXCEPTIONS entries. */ + +#define OEX_FPU_MIN 0x1f /* FPE's which MUST be enabled. */ +#define OEX_FPU_MAX 0x1f00 /* FPE's which MAY be enabled. */ +#define OEX_PAGE0 0x10000 /* page zero must be mapped. */ +#define OEX_SMM 0x20000 /* Force sequential memory mode? */ +#define OEX_FPDBUG 0x40000 /* Force floating point debug mode? */ +#define OEX_PRECISEFP OEX_FPDBUG +#define OEX_DISMISS 0x80000 /* Dismiss invalid address faults? */ + +#define OEX_FPU_INVAL 0x10 +#define OEX_FPU_DIV0 0x08 +#define OEX_FPU_OFLO 0x04 +#define OEX_FPU_UFLO 0x02 +#define OEX_FPU_INEX 0x01 + +/* Masks for `info' in Elf_Options for an ODK_HWPATCH entry. */ + +#define OHW_R4KEOP 0x1 /* R4000 end-of-page patch. */ +#define OHW_R8KPFETCH 0x2 /* may need R8000 prefetch patch. */ +#define OHW_R5KEOP 0x4 /* R5000 end-of-page patch. */ +#define OHW_R5KCVTL 0x8 /* R5000 cvt.[ds].l bug. clean=1. */ + +#define OPAD_PREFIX 0x1 +#define OPAD_POSTFIX 0x2 +#define OPAD_SYMBOL 0x4 + +/* Entry found in `.options' section. */ + +typedef struct +{ + Elf32_Word hwp_flags1; /* Extra flags. */ + Elf32_Word hwp_flags2; /* Extra flags. */ +} Elf_Options_Hw; + +/* Masks for `info' in ElfOptions for ODK_HWAND and ODK_HWOR entries. */ + +#define OHWA0_R4KEOP_CHECKED 0x00000001 +#define OHWA1_R4KEOP_CLEAN 0x00000002 + +/* MIPS relocs. */ + +#define R_MIPS_NONE 0 /* No reloc */ +#define R_MIPS_16 1 /* Direct 16 bit */ +#define R_MIPS_32 2 /* Direct 32 bit */ +#define R_MIPS_REL32 3 /* PC relative 32 bit */ +#define R_MIPS_26 4 /* Direct 26 bit shifted */ +#define R_MIPS_HI16 5 /* High 16 bit */ +#define R_MIPS_LO16 6 /* Low 16 bit */ +#define R_MIPS_GPREL16 7 /* GP relative 16 bit */ +#define R_MIPS_LITERAL 8 /* 16 bit literal entry */ +#define R_MIPS_GOT16 9 /* 16 bit GOT entry */ +#define R_MIPS_PC16 10 /* PC relative 16 bit */ +#define R_MIPS_CALL16 11 /* 16 bit GOT entry for function */ +#define R_MIPS_GPREL32 12 /* GP relative 32 bit */ + +#define R_MIPS_SHIFT5 16 +#define R_MIPS_SHIFT6 17 +#define R_MIPS_64 18 +#define R_MIPS_GOT_DISP 19 +#define R_MIPS_GOT_PAGE 20 +#define R_MIPS_GOT_OFST 21 +#define R_MIPS_GOT_HI16 22 +#define R_MIPS_GOT_LO16 23 +#define R_MIPS_SUB 24 +#define R_MIPS_INSERT_A 25 +#define R_MIPS_INSERT_B 26 +#define R_MIPS_DELETE 27 +#define R_MIPS_HIGHER 28 +#define R_MIPS_HIGHEST 29 +#define R_MIPS_CALL_HI16 30 +#define R_MIPS_CALL_LO16 31 +#define R_MIPS_SCN_DISP 32 +#define R_MIPS_REL16 33 +#define R_MIPS_ADD_IMMEDIATE 34 +#define R_MIPS_PJUMP 35 +#define R_MIPS_RELGOT 36 +#define R_MIPS_JALR 37 +#define R_MIPS_TLS_DTPMOD32 38 /* Module number 32 bit */ +#define R_MIPS_TLS_DTPREL32 39 /* Module-relative offset 32 bit */ +#define R_MIPS_TLS_DTPMOD64 40 /* Module number 64 bit */ +#define R_MIPS_TLS_DTPREL64 41 /* Module-relative offset 64 bit */ +#define R_MIPS_TLS_GD 42 /* 16 bit GOT offset for GD */ +#define R_MIPS_TLS_LDM 43 /* 16 bit GOT offset for LDM */ +#define R_MIPS_TLS_DTPREL_HI16 44 /* Module-relative offset, high 16 bits */ +#define R_MIPS_TLS_DTPREL_LO16 45 /* Module-relative offset, low 16 bits */ +#define R_MIPS_TLS_GOTTPREL 46 /* 16 bit GOT offset for IE */ +#define R_MIPS_TLS_TPREL32 47 /* TP-relative offset, 32 bit */ +#define R_MIPS_TLS_TPREL64 48 /* TP-relative offset, 64 bit */ +#define R_MIPS_TLS_TPREL_HI16 49 /* TP-relative offset, high 16 bits */ +#define R_MIPS_TLS_TPREL_LO16 50 /* TP-relative offset, low 16 bits */ +#define R_MIPS_GLOB_DAT 51 +#define R_MIPS_COPY 126 +#define R_MIPS_JUMP_SLOT 127 +/* Keep this the last entry. */ +#define R_MIPS_NUM 128 + +/* Legal values for p_type field of Elf32_Phdr. */ + +#define PT_MIPS_REGINFO 0x70000000 /* Register usage information. */ +#define PT_MIPS_RTPROC 0x70000001 /* Runtime procedure table. */ +#define PT_MIPS_OPTIONS 0x70000002 +#define PT_MIPS_ABIFLAGS 0x70000003 /* FP mode requirement. */ + +/* Special program header types. */ + +#define PF_MIPS_LOCAL 0x10000000 + +/* Legal values for d_tag field of Elf32_Dyn. */ + +#define DT_MIPS_RLD_VERSION 0x70000001 /* Runtime linker interface version */ +#define DT_MIPS_TIME_STAMP 0x70000002 /* Timestamp */ +#define DT_MIPS_ICHECKSUM 0x70000003 /* Checksum */ +#define DT_MIPS_IVERSION 0x70000004 /* Version string (string tbl index) */ +#define DT_MIPS_FLAGS 0x70000005 /* Flags */ +#define DT_MIPS_BASE_ADDRESS 0x70000006 /* Base address */ +#define DT_MIPS_MSYM 0x70000007 +#define DT_MIPS_CONFLICT 0x70000008 /* Address of CONFLICT section */ +#define DT_MIPS_LIBLIST 0x70000009 /* Address of LIBLIST section */ +#define DT_MIPS_LOCAL_GOTNO 0x7000000a /* Number of local GOT entries */ +#define DT_MIPS_CONFLICTNO 0x7000000b /* Number of CONFLICT entries */ +#define DT_MIPS_LIBLISTNO 0x70000010 /* Number of LIBLIST entries */ +#define DT_MIPS_SYMTABNO 0x70000011 /* Number of DYNSYM entries */ +#define DT_MIPS_UNREFEXTNO 0x70000012 /* First external DYNSYM */ +#define DT_MIPS_GOTSYM 0x70000013 /* First GOT entry in DYNSYM */ +#define DT_MIPS_HIPAGENO 0x70000014 /* Number of GOT page table entries */ +#define DT_MIPS_RLD_MAP 0x70000016 /* Address of run time loader map. */ +#define DT_MIPS_DELTA_CLASS 0x70000017 /* Delta C++ class definition. */ +#define DT_MIPS_DELTA_CLASS_NO 0x70000018 /* Number of entries in + DT_MIPS_DELTA_CLASS. */ +#define DT_MIPS_DELTA_INSTANCE 0x70000019 /* Delta C++ class instances. */ +#define DT_MIPS_DELTA_INSTANCE_NO 0x7000001a /* Number of entries in + DT_MIPS_DELTA_INSTANCE. */ +#define DT_MIPS_DELTA_RELOC 0x7000001b /* Delta relocations. */ +#define DT_MIPS_DELTA_RELOC_NO 0x7000001c /* Number of entries in + DT_MIPS_DELTA_RELOC. */ +#define DT_MIPS_DELTA_SYM 0x7000001d /* Delta symbols that Delta + relocations refer to. */ +#define DT_MIPS_DELTA_SYM_NO 0x7000001e /* Number of entries in + DT_MIPS_DELTA_SYM. */ +#define DT_MIPS_DELTA_CLASSSYM 0x70000020 /* Delta symbols that hold the + class declaration. */ +#define DT_MIPS_DELTA_CLASSSYM_NO 0x70000021 /* Number of entries in + DT_MIPS_DELTA_CLASSSYM. */ +#define DT_MIPS_CXX_FLAGS 0x70000022 /* Flags indicating for C++ flavor. */ +#define DT_MIPS_PIXIE_INIT 0x70000023 +#define DT_MIPS_SYMBOL_LIB 0x70000024 +#define DT_MIPS_LOCALPAGE_GOTIDX 0x70000025 +#define DT_MIPS_LOCAL_GOTIDX 0x70000026 +#define DT_MIPS_HIDDEN_GOTIDX 0x70000027 +#define DT_MIPS_PROTECTED_GOTIDX 0x70000028 +#define DT_MIPS_OPTIONS 0x70000029 /* Address of .options. */ +#define DT_MIPS_INTERFACE 0x7000002a /* Address of .interface. */ +#define DT_MIPS_DYNSTR_ALIGN 0x7000002b +#define DT_MIPS_INTERFACE_SIZE 0x7000002c /* Size of the .interface section. */ +#define DT_MIPS_RLD_TEXT_RESOLVE_ADDR 0x7000002d /* Address of rld_text_rsolve + function stored in GOT. */ +#define DT_MIPS_PERF_SUFFIX 0x7000002e /* Default suffix of dso to be added + by rld on dlopen() calls. */ +#define DT_MIPS_COMPACT_SIZE 0x7000002f /* (O32)Size of compact rel section. */ +#define DT_MIPS_GP_VALUE 0x70000030 /* GP value for aux GOTs. */ +#define DT_MIPS_AUX_DYNAMIC 0x70000031 /* Address of aux .dynamic. */ + /* The address of .got.plt in an executable using the new non-PIC ABI. */ +#define DT_MIPS_PLTGOT 0x70000032 +/* The base of the PLT in an executable using the new non-PIC ABI if that + PLT is writable. For a non-writable PLT, this is omitted or has a zero + value. */ +#define DT_MIPS_RWPLT 0x70000034 + /* An alternative description of the classic MIPS RLD_MAP that is usable + in a PIE as it stores a relative offset from the address of the tag + rather than an absolute address. */ +#define DT_MIPS_RLD_MAP_REL 0x70000035 +#define DT_MIPS_NUM 0x36 + + /* Legal values for DT_MIPS_FLAGS Elf32_Dyn entry. */ + +#define RHF_NONE 0 /* No flags */ +#define RHF_QUICKSTART (1 << 0) /* Use quickstart */ +#define RHF_NOTPOT (1 << 1) /* Hash size not power of 2 */ +#define RHF_NO_LIBRARY_REPLACEMENT (1 << 2) /* Ignore LD_LIBRARY_PATH */ +#define RHF_NO_MOVE (1 << 3) +#define RHF_SGI_ONLY (1 << 4) +#define RHF_GUARANTEE_INIT (1 << 5) +#define RHF_DELTA_C_PLUS_PLUS (1 << 6) +#define RHF_GUARANTEE_START_INIT (1 << 7) +#define RHF_PIXIE (1 << 8) +#define RHF_DEFAULT_DELAY_LOAD (1 << 9) +#define RHF_REQUICKSTART (1 << 10) +#define RHF_REQUICKSTARTED (1 << 11) +#define RHF_CORD (1 << 12) +#define RHF_NO_UNRES_UNDEF (1 << 13) +#define RHF_RLD_ORDER_SAFE (1 << 14) + +/* Entries found in sections of type SHT_MIPS_LIBLIST. */ + +typedef struct +{ + Elf32_Word l_name; /* Name (string table index) */ + Elf32_Word l_time_stamp; /* Timestamp */ + Elf32_Word l_checksum; /* Checksum */ + Elf32_Word l_version; /* Interface version */ + Elf32_Word l_flags; /* Flags */ +} Elf32_Lib; + +typedef struct +{ + Elf64_Word l_name; /* Name (string table index) */ + Elf64_Word l_time_stamp; /* Timestamp */ + Elf64_Word l_checksum; /* Checksum */ + Elf64_Word l_version; /* Interface version */ + Elf64_Word l_flags; /* Flags */ +} Elf64_Lib; + + +/* Legal values for l_flags. */ + +#define LL_NONE 0 +#define LL_EXACT_MATCH (1 << 0) /* Require exact match */ +#define LL_IGNORE_INT_VER (1 << 1) /* Ignore interface version */ +#define LL_REQUIRE_MINOR (1 << 2) +#define LL_EXPORTS (1 << 3) +#define LL_DELAY_LOAD (1 << 4) +#define LL_DELTA (1 << 5) + +/* Entries found in sections of type SHT_MIPS_CONFLICT. */ + +typedef Elf32_Addr Elf32_Conflict; + +typedef struct +{ + /* Version of flags structure. */ + Elf32_Half version; + /* The level of the ISA: 1-5, 32, 64. */ + unsigned char isa_level; + /* The revision of ISA: 0 for MIPS V and below, 1-n otherwise. */ + unsigned char isa_rev; + /* The size of general purpose registers. */ + unsigned char gpr_size; + /* The size of co-processor 1 registers. */ + unsigned char cpr1_size; + /* The size of co-processor 2 registers. */ + unsigned char cpr2_size; + /* The floating-point ABI. */ + unsigned char fp_abi; + /* Processor-specific extension. */ + Elf32_Word isa_ext; + /* Mask of ASEs used. */ + Elf32_Word ases; + /* Mask of general flags. */ + Elf32_Word flags1; + Elf32_Word flags2; +} Elf_MIPS_ABIFlags_v0; + +/* Values for the register size bytes of an abi flags structure. */ + +#define MIPS_AFL_REG_NONE 0x00 /* No registers. */ +#define MIPS_AFL_REG_32 0x01 /* 32-bit registers. */ +#define MIPS_AFL_REG_64 0x02 /* 64-bit registers. */ +#define MIPS_AFL_REG_128 0x03 /* 128-bit registers. */ + +/* Masks for the ases word of an ABI flags structure. */ + +#define MIPS_AFL_ASE_DSP 0x00000001 /* DSP ASE. */ +#define MIPS_AFL_ASE_DSPR2 0x00000002 /* DSP R2 ASE. */ +#define MIPS_AFL_ASE_EVA 0x00000004 /* Enhanced VA Scheme. */ +#define MIPS_AFL_ASE_MCU 0x00000008 /* MCU (MicroController) ASE. */ +#define MIPS_AFL_ASE_MDMX 0x00000010 /* MDMX ASE. */ +#define MIPS_AFL_ASE_MIPS3D 0x00000020 /* MIPS-3D ASE. */ +#define MIPS_AFL_ASE_MT 0x00000040 /* MT ASE. */ +#define MIPS_AFL_ASE_SMARTMIPS 0x00000080 /* SmartMIPS ASE. */ +#define MIPS_AFL_ASE_VIRT 0x00000100 /* VZ ASE. */ +#define MIPS_AFL_ASE_MSA 0x00000200 /* MSA ASE. */ +#define MIPS_AFL_ASE_MIPS16 0x00000400 /* MIPS16 ASE. */ +#define MIPS_AFL_ASE_MICROMIPS 0x00000800 /* MICROMIPS ASE. */ +#define MIPS_AFL_ASE_XPA 0x00001000 /* XPA ASE. */ +#define MIPS_AFL_ASE_MASK 0x00001fff /* All ASEs. */ + +/* Values for the isa_ext word of an ABI flags structure. */ + +#define MIPS_AFL_EXT_XLR 1 /* RMI Xlr instruction. */ +#define MIPS_AFL_EXT_OCTEON2 2 /* Cavium Networks Octeon2. */ +#define MIPS_AFL_EXT_OCTEONP 3 /* Cavium Networks OcteonP. */ +#define MIPS_AFL_EXT_LOONGSON_3A 4 /* Loongson 3A. */ +#define MIPS_AFL_EXT_OCTEON 5 /* Cavium Networks Octeon. */ +#define MIPS_AFL_EXT_5900 6 /* MIPS R5900 instruction. */ +#define MIPS_AFL_EXT_4650 7 /* MIPS R4650 instruction. */ +#define MIPS_AFL_EXT_4010 8 /* LSI R4010 instruction. */ +#define MIPS_AFL_EXT_4100 9 /* NEC VR4100 instruction. */ +#define MIPS_AFL_EXT_3900 10 /* Toshiba R3900 instruction. */ +#define MIPS_AFL_EXT_10000 11 /* MIPS R10000 instruction. */ +#define MIPS_AFL_EXT_SB1 12 /* Broadcom SB-1 instruction. */ +#define MIPS_AFL_EXT_4111 13 /* NEC VR4111/VR4181 instruction. */ +#define MIPS_AFL_EXT_4120 14 /* NEC VR4120 instruction. */ +#define MIPS_AFL_EXT_5400 15 /* NEC VR5400 instruction. */ +#define MIPS_AFL_EXT_5500 16 /* NEC VR5500 instruction. */ +#define MIPS_AFL_EXT_LOONGSON_2E 17 /* ST Microelectronics Loongson 2E. */ +#define MIPS_AFL_EXT_LOONGSON_2F 18 /* ST Microelectronics Loongson 2F. */ + +/* Masks for the flags1 word of an ABI flags structure. */ +#define MIPS_AFL_FLAGS1_ODDSPREG 1 /* Uses odd single-precision registers. */ + +/* Object attribute values. */ +enum +{ + /* Not tagged or not using any ABIs affected by the differences. */ + Val_GNU_MIPS_ABI_FP_ANY = 0, + /* Using hard-float -mdouble-float. */ + Val_GNU_MIPS_ABI_FP_DOUBLE = 1, + /* Using hard-float -msingle-float. */ + Val_GNU_MIPS_ABI_FP_SINGLE = 2, + /* Using soft-float. */ + Val_GNU_MIPS_ABI_FP_SOFT = 3, + /* Using -mips32r2 -mfp64. */ + Val_GNU_MIPS_ABI_FP_OLD_64 = 4, + /* Using -mfpxx. */ + Val_GNU_MIPS_ABI_FP_XX = 5, + /* Using -mips32r2 -mfp64. */ + Val_GNU_MIPS_ABI_FP_64 = 6, + /* Using -mips32r2 -mfp64 -mno-odd-spreg. */ + Val_GNU_MIPS_ABI_FP_64A = 7, + /* Maximum allocated FP ABI value. */ + Val_GNU_MIPS_ABI_FP_MAX = 7 +}; + +/* HPPA specific definitions. */ + +/* Legal values for e_flags field of Elf32_Ehdr. */ + +#define EF_PARISC_TRAPNIL 0x00010000 /* Trap nil pointer dereference. */ +#define EF_PARISC_EXT 0x00020000 /* Program uses arch. extensions. */ +#define EF_PARISC_LSB 0x00040000 /* Program expects little endian. */ +#define EF_PARISC_WIDE 0x00080000 /* Program expects wide mode. */ +#define EF_PARISC_NO_KABP 0x00100000 /* No kernel assisted branch + prediction. */ +#define EF_PARISC_LAZYSWAP 0x00400000 /* Allow lazy swapping. */ +#define EF_PARISC_ARCH 0x0000ffff /* Architecture version. */ + + /* Defined values for `e_flags & EF_PARISC_ARCH' are: */ + +#define EFA_PARISC_1_0 0x020b /* PA-RISC 1.0 big-endian. */ +#define EFA_PARISC_1_1 0x0210 /* PA-RISC 1.1 big-endian. */ +#define EFA_PARISC_2_0 0x0214 /* PA-RISC 2.0 big-endian. */ + +/* Additional section indeces. */ + +#define SHN_PARISC_ANSI_COMMON 0xff00 /* Section for tenatively declared + symbols in ANSI C. */ +#define SHN_PARISC_HUGE_COMMON 0xff01 /* Common blocks in huge model. */ + + /* Legal values for sh_type field of Elf32_Shdr. */ + +#define SHT_PARISC_EXT 0x70000000 /* Contains product specific ext. */ +#define SHT_PARISC_UNWIND 0x70000001 /* Unwind information. */ +#define SHT_PARISC_DOC 0x70000002 /* Debug info for optimized code. */ + +/* Legal values for sh_flags field of Elf32_Shdr. */ + +#define SHF_PARISC_SHORT 0x20000000 /* Section with short addressing. */ +#define SHF_PARISC_HUGE 0x40000000 /* Section far from gp. */ +#define SHF_PARISC_SBP 0x80000000 /* Static branch prediction code. */ + +/* Legal values for ST_TYPE subfield of st_info (symbol type). */ + +#define STT_PARISC_MILLICODE 13 /* Millicode function entry point. */ + +#define STT_HP_OPAQUE (STT_LOOS + 0x1) +#define STT_HP_STUB (STT_LOOS + 0x2) + +/* HPPA relocs. */ + +#define R_PARISC_NONE 0 /* No reloc. */ +#define R_PARISC_DIR32 1 /* Direct 32-bit reference. */ +#define R_PARISC_DIR21L 2 /* Left 21 bits of eff. address. */ +#define R_PARISC_DIR17R 3 /* Right 17 bits of eff. address. */ +#define R_PARISC_DIR17F 4 /* 17 bits of eff. address. */ +#define R_PARISC_DIR14R 6 /* Right 14 bits of eff. address. */ +#define R_PARISC_PCREL32 9 /* 32-bit rel. address. */ +#define R_PARISC_PCREL21L 10 /* Left 21 bits of rel. address. */ +#define R_PARISC_PCREL17R 11 /* Right 17 bits of rel. address. */ +#define R_PARISC_PCREL17F 12 /* 17 bits of rel. address. */ +#define R_PARISC_PCREL14R 14 /* Right 14 bits of rel. address. */ +#define R_PARISC_DPREL21L 18 /* Left 21 bits of rel. address. */ +#define R_PARISC_DPREL14R 22 /* Right 14 bits of rel. address. */ +#define R_PARISC_GPREL21L 26 /* GP-relative, left 21 bits. */ +#define R_PARISC_GPREL14R 30 /* GP-relative, right 14 bits. */ +#define R_PARISC_LTOFF21L 34 /* LT-relative, left 21 bits. */ +#define R_PARISC_LTOFF14R 38 /* LT-relative, right 14 bits. */ +#define R_PARISC_SECREL32 41 /* 32 bits section rel. address. */ +#define R_PARISC_SEGBASE 48 /* No relocation, set segment base. */ +#define R_PARISC_SEGREL32 49 /* 32 bits segment rel. address. */ +#define R_PARISC_PLTOFF21L 50 /* PLT rel. address, left 21 bits. */ +#define R_PARISC_PLTOFF14R 54 /* PLT rel. address, right 14 bits. */ +#define R_PARISC_LTOFF_FPTR32 57 /* 32 bits LT-rel. function pointer. */ +#define R_PARISC_LTOFF_FPTR21L 58 /* LT-rel. fct ptr, left 21 bits. */ +#define R_PARISC_LTOFF_FPTR14R 62 /* LT-rel. fct ptr, right 14 bits. */ +#define R_PARISC_FPTR64 64 /* 64 bits function address. */ +#define R_PARISC_PLABEL32 65 /* 32 bits function address. */ +#define R_PARISC_PLABEL21L 66 /* Left 21 bits of fdesc address. */ +#define R_PARISC_PLABEL14R 70 /* Right 14 bits of fdesc address. */ +#define R_PARISC_PCREL64 72 /* 64 bits PC-rel. address. */ +#define R_PARISC_PCREL22F 74 /* 22 bits PC-rel. address. */ +#define R_PARISC_PCREL14WR 75 /* PC-rel. address, right 14 bits. */ +#define R_PARISC_PCREL14DR 76 /* PC rel. address, right 14 bits. */ +#define R_PARISC_PCREL16F 77 /* 16 bits PC-rel. address. */ +#define R_PARISC_PCREL16WF 78 /* 16 bits PC-rel. address. */ +#define R_PARISC_PCREL16DF 79 /* 16 bits PC-rel. address. */ +#define R_PARISC_DIR64 80 /* 64 bits of eff. address. */ +#define R_PARISC_DIR14WR 83 /* 14 bits of eff. address. */ +#define R_PARISC_DIR14DR 84 /* 14 bits of eff. address. */ +#define R_PARISC_DIR16F 85 /* 16 bits of eff. address. */ +#define R_PARISC_DIR16WF 86 /* 16 bits of eff. address. */ +#define R_PARISC_DIR16DF 87 /* 16 bits of eff. address. */ +#define R_PARISC_GPREL64 88 /* 64 bits of GP-rel. address. */ +#define R_PARISC_GPREL14WR 91 /* GP-rel. address, right 14 bits. */ +#define R_PARISC_GPREL14DR 92 /* GP-rel. address, right 14 bits. */ +#define R_PARISC_GPREL16F 93 /* 16 bits GP-rel. address. */ +#define R_PARISC_GPREL16WF 94 /* 16 bits GP-rel. address. */ +#define R_PARISC_GPREL16DF 95 /* 16 bits GP-rel. address. */ +#define R_PARISC_LTOFF64 96 /* 64 bits LT-rel. address. */ +#define R_PARISC_LTOFF14WR 99 /* LT-rel. address, right 14 bits. */ +#define R_PARISC_LTOFF14DR 100 /* LT-rel. address, right 14 bits. */ +#define R_PARISC_LTOFF16F 101 /* 16 bits LT-rel. address. */ +#define R_PARISC_LTOFF16WF 102 /* 16 bits LT-rel. address. */ +#define R_PARISC_LTOFF16DF 103 /* 16 bits LT-rel. address. */ +#define R_PARISC_SECREL64 104 /* 64 bits section rel. address. */ +#define R_PARISC_SEGREL64 112 /* 64 bits segment rel. address. */ +#define R_PARISC_PLTOFF14WR 115 /* PLT-rel. address, right 14 bits. */ +#define R_PARISC_PLTOFF14DR 116 /* PLT-rel. address, right 14 bits. */ +#define R_PARISC_PLTOFF16F 117 /* 16 bits LT-rel. address. */ +#define R_PARISC_PLTOFF16WF 118 /* 16 bits PLT-rel. address. */ +#define R_PARISC_PLTOFF16DF 119 /* 16 bits PLT-rel. address. */ +#define R_PARISC_LTOFF_FPTR64 120 /* 64 bits LT-rel. function ptr. */ +#define R_PARISC_LTOFF_FPTR14WR 123 /* LT-rel. fct. ptr., right 14 bits. */ +#define R_PARISC_LTOFF_FPTR14DR 124 /* LT-rel. fct. ptr., right 14 bits. */ +#define R_PARISC_LTOFF_FPTR16F 125 /* 16 bits LT-rel. function ptr. */ +#define R_PARISC_LTOFF_FPTR16WF 126 /* 16 bits LT-rel. function ptr. */ +#define R_PARISC_LTOFF_FPTR16DF 127 /* 16 bits LT-rel. function ptr. */ +#define R_PARISC_LORESERVE 128 +#define R_PARISC_COPY 128 /* Copy relocation. */ +#define R_PARISC_IPLT 129 /* Dynamic reloc, imported PLT */ +#define R_PARISC_EPLT 130 /* Dynamic reloc, exported PLT */ +#define R_PARISC_TPREL32 153 /* 32 bits TP-rel. address. */ +#define R_PARISC_TPREL21L 154 /* TP-rel. address, left 21 bits. */ +#define R_PARISC_TPREL14R 158 /* TP-rel. address, right 14 bits. */ +#define R_PARISC_LTOFF_TP21L 162 /* LT-TP-rel. address, left 21 bits. */ +#define R_PARISC_LTOFF_TP14R 166 /* LT-TP-rel. address, right 14 bits.*/ +#define R_PARISC_LTOFF_TP14F 167 /* 14 bits LT-TP-rel. address. */ +#define R_PARISC_TPREL64 216 /* 64 bits TP-rel. address. */ +#define R_PARISC_TPREL14WR 219 /* TP-rel. address, right 14 bits. */ +#define R_PARISC_TPREL14DR 220 /* TP-rel. address, right 14 bits. */ +#define R_PARISC_TPREL16F 221 /* 16 bits TP-rel. address. */ +#define R_PARISC_TPREL16WF 222 /* 16 bits TP-rel. address. */ +#define R_PARISC_TPREL16DF 223 /* 16 bits TP-rel. address. */ +#define R_PARISC_LTOFF_TP64 224 /* 64 bits LT-TP-rel. address. */ +#define R_PARISC_LTOFF_TP14WR 227 /* LT-TP-rel. address, right 14 bits.*/ +#define R_PARISC_LTOFF_TP14DR 228 /* LT-TP-rel. address, right 14 bits.*/ +#define R_PARISC_LTOFF_TP16F 229 /* 16 bits LT-TP-rel. address. */ +#define R_PARISC_LTOFF_TP16WF 230 /* 16 bits LT-TP-rel. address. */ +#define R_PARISC_LTOFF_TP16DF 231 /* 16 bits LT-TP-rel. address. */ +#define R_PARISC_GNU_VTENTRY 232 +#define R_PARISC_GNU_VTINHERIT 233 +#define R_PARISC_TLS_GD21L 234 /* GD 21-bit left. */ +#define R_PARISC_TLS_GD14R 235 /* GD 14-bit right. */ +#define R_PARISC_TLS_GDCALL 236 /* GD call to __t_g_a. */ +#define R_PARISC_TLS_LDM21L 237 /* LD module 21-bit left. */ +#define R_PARISC_TLS_LDM14R 238 /* LD module 14-bit right. */ +#define R_PARISC_TLS_LDMCALL 239 /* LD module call to __t_g_a. */ +#define R_PARISC_TLS_LDO21L 240 /* LD offset 21-bit left. */ +#define R_PARISC_TLS_LDO14R 241 /* LD offset 14-bit right. */ +#define R_PARISC_TLS_DTPMOD32 242 /* DTP module 32-bit. */ +#define R_PARISC_TLS_DTPMOD64 243 /* DTP module 64-bit. */ +#define R_PARISC_TLS_DTPOFF32 244 /* DTP offset 32-bit. */ +#define R_PARISC_TLS_DTPOFF64 245 /* DTP offset 32-bit. */ +#define R_PARISC_TLS_LE21L R_PARISC_TPREL21L +#define R_PARISC_TLS_LE14R R_PARISC_TPREL14R +#define R_PARISC_TLS_IE21L R_PARISC_LTOFF_TP21L +#define R_PARISC_TLS_IE14R R_PARISC_LTOFF_TP14R +#define R_PARISC_TLS_TPREL32 R_PARISC_TPREL32 +#define R_PARISC_TLS_TPREL64 R_PARISC_TPREL64 +#define R_PARISC_HIRESERVE 255 + +/* Legal values for p_type field of Elf32_Phdr/Elf64_Phdr. */ + +#define PT_HP_TLS (PT_LOOS + 0x0) +#define PT_HP_CORE_NONE (PT_LOOS + 0x1) +#define PT_HP_CORE_VERSION (PT_LOOS + 0x2) +#define PT_HP_CORE_KERNEL (PT_LOOS + 0x3) +#define PT_HP_CORE_COMM (PT_LOOS + 0x4) +#define PT_HP_CORE_PROC (PT_LOOS + 0x5) +#define PT_HP_CORE_LOADABLE (PT_LOOS + 0x6) +#define PT_HP_CORE_STACK (PT_LOOS + 0x7) +#define PT_HP_CORE_SHM (PT_LOOS + 0x8) +#define PT_HP_CORE_MMF (PT_LOOS + 0x9) +#define PT_HP_PARALLEL (PT_LOOS + 0x10) +#define PT_HP_FASTBIND (PT_LOOS + 0x11) +#define PT_HP_OPT_ANNOT (PT_LOOS + 0x12) +#define PT_HP_HSL_ANNOT (PT_LOOS + 0x13) +#define PT_HP_STACK (PT_LOOS + 0x14) + +#define PT_PARISC_ARCHEXT 0x70000000 +#define PT_PARISC_UNWIND 0x70000001 + +/* Legal values for p_flags field of Elf32_Phdr/Elf64_Phdr. */ + +#define PF_PARISC_SBP 0x08000000 + +#define PF_HP_PAGE_SIZE 0x00100000 +#define PF_HP_FAR_SHARED 0x00200000 +#define PF_HP_NEAR_SHARED 0x00400000 +#define PF_HP_CODE 0x01000000 +#define PF_HP_MODIFY 0x02000000 +#define PF_HP_LAZYSWAP 0x04000000 +#define PF_HP_SBP 0x08000000 + + +/* Alpha specific definitions. */ + +/* Legal values for e_flags field of Elf64_Ehdr. */ + +#define EF_ALPHA_32BIT 1 /* All addresses must be < 2GB. */ +#define EF_ALPHA_CANRELAX 2 /* Relocations for relaxing exist. */ + +/* Legal values for sh_type field of Elf64_Shdr. */ + +/* These two are primerily concerned with ECOFF debugging info. */ +#define SHT_ALPHA_DEBUG 0x70000001 +#define SHT_ALPHA_REGINFO 0x70000002 + +/* Legal values for sh_flags field of Elf64_Shdr. */ + +#define SHF_ALPHA_GPREL 0x10000000 + +/* Legal values for st_other field of Elf64_Sym. */ +#define STO_ALPHA_NOPV 0x80 /* No PV required. */ +#define STO_ALPHA_STD_GPLOAD 0x88 /* PV only used for initial ldgp. */ + +/* Alpha relocs. */ + +#define R_ALPHA_NONE 0 /* No reloc */ +#define R_ALPHA_REFLONG 1 /* Direct 32 bit */ +#define R_ALPHA_REFQUAD 2 /* Direct 64 bit */ +#define R_ALPHA_GPREL32 3 /* GP relative 32 bit */ +#define R_ALPHA_LITERAL 4 /* GP relative 16 bit w/optimization */ +#define R_ALPHA_LITUSE 5 /* Optimization hint for LITERAL */ +#define R_ALPHA_GPDISP 6 /* Add displacement to GP */ +#define R_ALPHA_BRADDR 7 /* PC+4 relative 23 bit shifted */ +#define R_ALPHA_HINT 8 /* PC+4 relative 16 bit shifted */ +#define R_ALPHA_SREL16 9 /* PC relative 16 bit */ +#define R_ALPHA_SREL32 10 /* PC relative 32 bit */ +#define R_ALPHA_SREL64 11 /* PC relative 64 bit */ +#define R_ALPHA_GPRELHIGH 17 /* GP relative 32 bit, high 16 bits */ +#define R_ALPHA_GPRELLOW 18 /* GP relative 32 bit, low 16 bits */ +#define R_ALPHA_GPREL16 19 /* GP relative 16 bit */ +#define R_ALPHA_COPY 24 /* Copy symbol at runtime */ +#define R_ALPHA_GLOB_DAT 25 /* Create GOT entry */ +#define R_ALPHA_JMP_SLOT 26 /* Create PLT entry */ +#define R_ALPHA_RELATIVE 27 /* Adjust by program base */ +#define R_ALPHA_TLS_GD_HI 28 +#define R_ALPHA_TLSGD 29 +#define R_ALPHA_TLS_LDM 30 +#define R_ALPHA_DTPMOD64 31 +#define R_ALPHA_GOTDTPREL 32 +#define R_ALPHA_DTPREL64 33 +#define R_ALPHA_DTPRELHI 34 +#define R_ALPHA_DTPRELLO 35 +#define R_ALPHA_DTPREL16 36 +#define R_ALPHA_GOTTPREL 37 +#define R_ALPHA_TPREL64 38 +#define R_ALPHA_TPRELHI 39 +#define R_ALPHA_TPRELLO 40 +#define R_ALPHA_TPREL16 41 +/* Keep this the last entry. */ +#define R_ALPHA_NUM 46 + +/* Magic values of the LITUSE relocation addend. */ +#define LITUSE_ALPHA_ADDR 0 +#define LITUSE_ALPHA_BASE 1 +#define LITUSE_ALPHA_BYTOFF 2 +#define LITUSE_ALPHA_JSR 3 +#define LITUSE_ALPHA_TLS_GD 4 +#define LITUSE_ALPHA_TLS_LDM 5 + +/* Legal values for d_tag of Elf64_Dyn. */ +#define DT_ALPHA_PLTRO (DT_LOPROC + 0) +#define DT_ALPHA_NUM 1 + +/* PowerPC specific declarations */ + +/* Values for Elf32/64_Ehdr.e_flags. */ +#define EF_PPC_EMB 0x80000000 /* PowerPC embedded flag */ + +/* Cygnus local bits below */ +#define EF_PPC_RELOCATABLE 0x00010000 /* PowerPC -mrelocatable flag*/ +#define EF_PPC_RELOCATABLE_LIB 0x00008000 /* PowerPC -mrelocatable-lib + flag */ + + /* PowerPC relocations defined by the ABIs */ +#define R_PPC_NONE 0 +#define R_PPC_ADDR32 1 /* 32bit absolute address */ +#define R_PPC_ADDR24 2 /* 26bit address, 2 bits ignored. */ +#define R_PPC_ADDR16 3 /* 16bit absolute address */ +#define R_PPC_ADDR16_LO 4 /* lower 16bit of absolute address */ +#define R_PPC_ADDR16_HI 5 /* high 16bit of absolute address */ +#define R_PPC_ADDR16_HA 6 /* adjusted high 16bit */ +#define R_PPC_ADDR14 7 /* 16bit address, 2 bits ignored */ +#define R_PPC_ADDR14_BRTAKEN 8 +#define R_PPC_ADDR14_BRNTAKEN 9 +#define R_PPC_REL24 10 /* PC relative 26 bit */ +#define R_PPC_REL14 11 /* PC relative 16 bit */ +#define R_PPC_REL14_BRTAKEN 12 +#define R_PPC_REL14_BRNTAKEN 13 +#define R_PPC_GOT16 14 +#define R_PPC_GOT16_LO 15 +#define R_PPC_GOT16_HI 16 +#define R_PPC_GOT16_HA 17 +#define R_PPC_PLTREL24 18 +#define R_PPC_COPY 19 +#define R_PPC_GLOB_DAT 20 +#define R_PPC_JMP_SLOT 21 +#define R_PPC_RELATIVE 22 +#define R_PPC_LOCAL24PC 23 +#define R_PPC_UADDR32 24 +#define R_PPC_UADDR16 25 +#define R_PPC_REL32 26 +#define R_PPC_PLT32 27 +#define R_PPC_PLTREL32 28 +#define R_PPC_PLT16_LO 29 +#define R_PPC_PLT16_HI 30 +#define R_PPC_PLT16_HA 31 +#define R_PPC_SDAREL16 32 +#define R_PPC_SECTOFF 33 +#define R_PPC_SECTOFF_LO 34 +#define R_PPC_SECTOFF_HI 35 +#define R_PPC_SECTOFF_HA 36 + +/* PowerPC relocations defined for the TLS access ABI. */ +#define R_PPC_TLS 67 /* none (sym+add)@tls */ +#define R_PPC_DTPMOD32 68 /* word32 (sym+add)@dtpmod */ +#define R_PPC_TPREL16 69 /* half16* (sym+add)@tprel */ +#define R_PPC_TPREL16_LO 70 /* half16 (sym+add)@tprel@l */ +#define R_PPC_TPREL16_HI 71 /* half16 (sym+add)@tprel@h */ +#define R_PPC_TPREL16_HA 72 /* half16 (sym+add)@tprel@ha */ +#define R_PPC_TPREL32 73 /* word32 (sym+add)@tprel */ +#define R_PPC_DTPREL16 74 /* half16* (sym+add)@dtprel */ +#define R_PPC_DTPREL16_LO 75 /* half16 (sym+add)@dtprel@l */ +#define R_PPC_DTPREL16_HI 76 /* half16 (sym+add)@dtprel@h */ +#define R_PPC_DTPREL16_HA 77 /* half16 (sym+add)@dtprel@ha */ +#define R_PPC_DTPREL32 78 /* word32 (sym+add)@dtprel */ +#define R_PPC_GOT_TLSGD16 79 /* half16* (sym+add)@got@tlsgd */ +#define R_PPC_GOT_TLSGD16_LO 80 /* half16 (sym+add)@got@tlsgd@l */ +#define R_PPC_GOT_TLSGD16_HI 81 /* half16 (sym+add)@got@tlsgd@h */ +#define R_PPC_GOT_TLSGD16_HA 82 /* half16 (sym+add)@got@tlsgd@ha */ +#define R_PPC_GOT_TLSLD16 83 /* half16* (sym+add)@got@tlsld */ +#define R_PPC_GOT_TLSLD16_LO 84 /* half16 (sym+add)@got@tlsld@l */ +#define R_PPC_GOT_TLSLD16_HI 85 /* half16 (sym+add)@got@tlsld@h */ +#define R_PPC_GOT_TLSLD16_HA 86 /* half16 (sym+add)@got@tlsld@ha */ +#define R_PPC_GOT_TPREL16 87 /* half16* (sym+add)@got@tprel */ +#define R_PPC_GOT_TPREL16_LO 88 /* half16 (sym+add)@got@tprel@l */ +#define R_PPC_GOT_TPREL16_HI 89 /* half16 (sym+add)@got@tprel@h */ +#define R_PPC_GOT_TPREL16_HA 90 /* half16 (sym+add)@got@tprel@ha */ +#define R_PPC_GOT_DTPREL16 91 /* half16* (sym+add)@got@dtprel */ +#define R_PPC_GOT_DTPREL16_LO 92 /* half16* (sym+add)@got@dtprel@l */ +#define R_PPC_GOT_DTPREL16_HI 93 /* half16* (sym+add)@got@dtprel@h */ +#define R_PPC_GOT_DTPREL16_HA 94 /* half16* (sym+add)@got@dtprel@ha */ +#define R_PPC_TLSGD 95 /* none (sym+add)@tlsgd */ +#define R_PPC_TLSLD 96 /* none (sym+add)@tlsld */ + +/* The remaining relocs are from the Embedded ELF ABI, and are not + in the SVR4 ELF ABI. */ +#define R_PPC_EMB_NADDR32 101 +#define R_PPC_EMB_NADDR16 102 +#define R_PPC_EMB_NADDR16_LO 103 +#define R_PPC_EMB_NADDR16_HI 104 +#define R_PPC_EMB_NADDR16_HA 105 +#define R_PPC_EMB_SDAI16 106 +#define R_PPC_EMB_SDA2I16 107 +#define R_PPC_EMB_SDA2REL 108 +#define R_PPC_EMB_SDA21 109 /* 16 bit offset in SDA */ +#define R_PPC_EMB_MRKREF 110 +#define R_PPC_EMB_RELSEC16 111 +#define R_PPC_EMB_RELST_LO 112 +#define R_PPC_EMB_RELST_HI 113 +#define R_PPC_EMB_RELST_HA 114 +#define R_PPC_EMB_BIT_FLD 115 +#define R_PPC_EMB_RELSDA 116 /* 16 bit relative offset in SDA */ + + /* Diab tool relocations. */ +#define R_PPC_DIAB_SDA21_LO 180 /* like EMB_SDA21, but lower 16 bit */ +#define R_PPC_DIAB_SDA21_HI 181 /* like EMB_SDA21, but high 16 bit */ +#define R_PPC_DIAB_SDA21_HA 182 /* like EMB_SDA21, adjusted high 16 */ +#define R_PPC_DIAB_RELSDA_LO 183 /* like EMB_RELSDA, but lower 16 bit */ +#define R_PPC_DIAB_RELSDA_HI 184 /* like EMB_RELSDA, but high 16 bit */ +#define R_PPC_DIAB_RELSDA_HA 185 /* like EMB_RELSDA, adjusted high 16 */ + +/* GNU extension to support local ifunc. */ +#define R_PPC_IRELATIVE 248 + +/* GNU relocs used in PIC code sequences. */ +#define R_PPC_REL16 249 /* half16 (sym+add-.) */ +#define R_PPC_REL16_LO 250 /* half16 (sym+add-.)@l */ +#define R_PPC_REL16_HI 251 /* half16 (sym+add-.)@h */ +#define R_PPC_REL16_HA 252 /* half16 (sym+add-.)@ha */ + +/* This is a phony reloc to handle any old fashioned TOC16 references + that may still be in object files. */ +#define R_PPC_TOC16 255 + + /* PowerPC specific values for the Dyn d_tag field. */ +#define DT_PPC_GOT (DT_LOPROC + 0) +#define DT_PPC_OPT (DT_LOPROC + 1) +#define DT_PPC_NUM 2 + +/* PowerPC specific values for the DT_PPC_OPT Dyn entry. */ +#define PPC_OPT_TLS 1 + +/* PowerPC64 relocations defined by the ABIs */ +#define R_PPC64_NONE R_PPC_NONE +#define R_PPC64_ADDR32 R_PPC_ADDR32 /* 32bit absolute address */ +#define R_PPC64_ADDR24 R_PPC_ADDR24 /* 26bit address, word aligned */ +#define R_PPC64_ADDR16 R_PPC_ADDR16 /* 16bit absolute address */ +#define R_PPC64_ADDR16_LO R_PPC_ADDR16_LO /* lower 16bits of address */ +#define R_PPC64_ADDR16_HI R_PPC_ADDR16_HI /* high 16bits of address. */ +#define R_PPC64_ADDR16_HA R_PPC_ADDR16_HA /* adjusted high 16bits. */ +#define R_PPC64_ADDR14 R_PPC_ADDR14 /* 16bit address, word aligned */ +#define R_PPC64_ADDR14_BRTAKEN R_PPC_ADDR14_BRTAKEN +#define R_PPC64_ADDR14_BRNTAKEN R_PPC_ADDR14_BRNTAKEN +#define R_PPC64_REL24 R_PPC_REL24 /* PC-rel. 26 bit, word aligned */ +#define R_PPC64_REL14 R_PPC_REL14 /* PC relative 16 bit */ +#define R_PPC64_REL14_BRTAKEN R_PPC_REL14_BRTAKEN +#define R_PPC64_REL14_BRNTAKEN R_PPC_REL14_BRNTAKEN +#define R_PPC64_GOT16 R_PPC_GOT16 +#define R_PPC64_GOT16_LO R_PPC_GOT16_LO +#define R_PPC64_GOT16_HI R_PPC_GOT16_HI +#define R_PPC64_GOT16_HA R_PPC_GOT16_HA + +#define R_PPC64_COPY R_PPC_COPY +#define R_PPC64_GLOB_DAT R_PPC_GLOB_DAT +#define R_PPC64_JMP_SLOT R_PPC_JMP_SLOT +#define R_PPC64_RELATIVE R_PPC_RELATIVE + +#define R_PPC64_UADDR32 R_PPC_UADDR32 +#define R_PPC64_UADDR16 R_PPC_UADDR16 +#define R_PPC64_REL32 R_PPC_REL32 +#define R_PPC64_PLT32 R_PPC_PLT32 +#define R_PPC64_PLTREL32 R_PPC_PLTREL32 +#define R_PPC64_PLT16_LO R_PPC_PLT16_LO +#define R_PPC64_PLT16_HI R_PPC_PLT16_HI +#define R_PPC64_PLT16_HA R_PPC_PLT16_HA + +#define R_PPC64_SECTOFF R_PPC_SECTOFF +#define R_PPC64_SECTOFF_LO R_PPC_SECTOFF_LO +#define R_PPC64_SECTOFF_HI R_PPC_SECTOFF_HI +#define R_PPC64_SECTOFF_HA R_PPC_SECTOFF_HA +#define R_PPC64_ADDR30 37 /* word30 (S + A - P) >> 2 */ +#define R_PPC64_ADDR64 38 /* doubleword64 S + A */ +#define R_PPC64_ADDR16_HIGHER 39 /* half16 #higher(S + A) */ +#define R_PPC64_ADDR16_HIGHERA 40 /* half16 #highera(S + A) */ +#define R_PPC64_ADDR16_HIGHEST 41 /* half16 #highest(S + A) */ +#define R_PPC64_ADDR16_HIGHESTA 42 /* half16 #highesta(S + A) */ +#define R_PPC64_UADDR64 43 /* doubleword64 S + A */ +#define R_PPC64_REL64 44 /* doubleword64 S + A - P */ +#define R_PPC64_PLT64 45 /* doubleword64 L + A */ +#define R_PPC64_PLTREL64 46 /* doubleword64 L + A - P */ +#define R_PPC64_TOC16 47 /* half16* S + A - .TOC */ +#define R_PPC64_TOC16_LO 48 /* half16 #lo(S + A - .TOC.) */ +#define R_PPC64_TOC16_HI 49 /* half16 #hi(S + A - .TOC.) */ +#define R_PPC64_TOC16_HA 50 /* half16 #ha(S + A - .TOC.) */ +#define R_PPC64_TOC 51 /* doubleword64 .TOC */ +#define R_PPC64_PLTGOT16 52 /* half16* M + A */ +#define R_PPC64_PLTGOT16_LO 53 /* half16 #lo(M + A) */ +#define R_PPC64_PLTGOT16_HI 54 /* half16 #hi(M + A) */ +#define R_PPC64_PLTGOT16_HA 55 /* half16 #ha(M + A) */ + +#define R_PPC64_ADDR16_DS 56 /* half16ds* (S + A) >> 2 */ +#define R_PPC64_ADDR16_LO_DS 57 /* half16ds #lo(S + A) >> 2 */ +#define R_PPC64_GOT16_DS 58 /* half16ds* (G + A) >> 2 */ +#define R_PPC64_GOT16_LO_DS 59 /* half16ds #lo(G + A) >> 2 */ +#define R_PPC64_PLT16_LO_DS 60 /* half16ds #lo(L + A) >> 2 */ +#define R_PPC64_SECTOFF_DS 61 /* half16ds* (R + A) >> 2 */ +#define R_PPC64_SECTOFF_LO_DS 62 /* half16ds #lo(R + A) >> 2 */ +#define R_PPC64_TOC16_DS 63 /* half16ds* (S + A - .TOC.) >> 2 */ +#define R_PPC64_TOC16_LO_DS 64 /* half16ds #lo(S + A - .TOC.) >> 2 */ +#define R_PPC64_PLTGOT16_DS 65 /* half16ds* (M + A) >> 2 */ +#define R_PPC64_PLTGOT16_LO_DS 66 /* half16ds #lo(M + A) >> 2 */ + +/* PowerPC64 relocations defined for the TLS access ABI. */ +#define R_PPC64_TLS 67 /* none (sym+add)@tls */ +#define R_PPC64_DTPMOD64 68 /* doubleword64 (sym+add)@dtpmod */ +#define R_PPC64_TPREL16 69 /* half16* (sym+add)@tprel */ +#define R_PPC64_TPREL16_LO 70 /* half16 (sym+add)@tprel@l */ +#define R_PPC64_TPREL16_HI 71 /* half16 (sym+add)@tprel@h */ +#define R_PPC64_TPREL16_HA 72 /* half16 (sym+add)@tprel@ha */ +#define R_PPC64_TPREL64 73 /* doubleword64 (sym+add)@tprel */ +#define R_PPC64_DTPREL16 74 /* half16* (sym+add)@dtprel */ +#define R_PPC64_DTPREL16_LO 75 /* half16 (sym+add)@dtprel@l */ +#define R_PPC64_DTPREL16_HI 76 /* half16 (sym+add)@dtprel@h */ +#define R_PPC64_DTPREL16_HA 77 /* half16 (sym+add)@dtprel@ha */ +#define R_PPC64_DTPREL64 78 /* doubleword64 (sym+add)@dtprel */ +#define R_PPC64_GOT_TLSGD16 79 /* half16* (sym+add)@got@tlsgd */ +#define R_PPC64_GOT_TLSGD16_LO 80 /* half16 (sym+add)@got@tlsgd@l */ +#define R_PPC64_GOT_TLSGD16_HI 81 /* half16 (sym+add)@got@tlsgd@h */ +#define R_PPC64_GOT_TLSGD16_HA 82 /* half16 (sym+add)@got@tlsgd@ha */ +#define R_PPC64_GOT_TLSLD16 83 /* half16* (sym+add)@got@tlsld */ +#define R_PPC64_GOT_TLSLD16_LO 84 /* half16 (sym+add)@got@tlsld@l */ +#define R_PPC64_GOT_TLSLD16_HI 85 /* half16 (sym+add)@got@tlsld@h */ +#define R_PPC64_GOT_TLSLD16_HA 86 /* half16 (sym+add)@got@tlsld@ha */ +#define R_PPC64_GOT_TPREL16_DS 87 /* half16ds* (sym+add)@got@tprel */ +#define R_PPC64_GOT_TPREL16_LO_DS 88 /* half16ds (sym+add)@got@tprel@l */ +#define R_PPC64_GOT_TPREL16_HI 89 /* half16 (sym+add)@got@tprel@h */ +#define R_PPC64_GOT_TPREL16_HA 90 /* half16 (sym+add)@got@tprel@ha */ +#define R_PPC64_GOT_DTPREL16_DS 91 /* half16ds* (sym+add)@got@dtprel */ +#define R_PPC64_GOT_DTPREL16_LO_DS 92 /* half16ds (sym+add)@got@dtprel@l */ +#define R_PPC64_GOT_DTPREL16_HI 93 /* half16 (sym+add)@got@dtprel@h */ +#define R_PPC64_GOT_DTPREL16_HA 94 /* half16 (sym+add)@got@dtprel@ha */ +#define R_PPC64_TPREL16_DS 95 /* half16ds* (sym+add)@tprel */ +#define R_PPC64_TPREL16_LO_DS 96 /* half16ds (sym+add)@tprel@l */ +#define R_PPC64_TPREL16_HIGHER 97 /* half16 (sym+add)@tprel@higher */ +#define R_PPC64_TPREL16_HIGHERA 98 /* half16 (sym+add)@tprel@highera */ +#define R_PPC64_TPREL16_HIGHEST 99 /* half16 (sym+add)@tprel@highest */ +#define R_PPC64_TPREL16_HIGHESTA 100 /* half16 (sym+add)@tprel@highesta */ +#define R_PPC64_DTPREL16_DS 101 /* half16ds* (sym+add)@dtprel */ +#define R_PPC64_DTPREL16_LO_DS 102 /* half16ds (sym+add)@dtprel@l */ +#define R_PPC64_DTPREL16_HIGHER 103 /* half16 (sym+add)@dtprel@higher */ +#define R_PPC64_DTPREL16_HIGHERA 104 /* half16 (sym+add)@dtprel@highera */ +#define R_PPC64_DTPREL16_HIGHEST 105 /* half16 (sym+add)@dtprel@highest */ +#define R_PPC64_DTPREL16_HIGHESTA 106 /* half16 (sym+add)@dtprel@highesta */ +#define R_PPC64_TLSGD 107 /* none (sym+add)@tlsgd */ +#define R_PPC64_TLSLD 108 /* none (sym+add)@tlsld */ +#define R_PPC64_TOCSAVE 109 /* none */ + +/* Added when HA and HI relocs were changed to report overflows. */ +#define R_PPC64_ADDR16_HIGH 110 +#define R_PPC64_ADDR16_HIGHA 111 +#define R_PPC64_TPREL16_HIGH 112 +#define R_PPC64_TPREL16_HIGHA 113 +#define R_PPC64_DTPREL16_HIGH 114 +#define R_PPC64_DTPREL16_HIGHA 115 + +/* GNU extension to support local ifunc. */ +#define R_PPC64_JMP_IREL 247 +#define R_PPC64_IRELATIVE 248 +#define R_PPC64_REL16 249 /* half16 (sym+add-.) */ +#define R_PPC64_REL16_LO 250 /* half16 (sym+add-.)@l */ +#define R_PPC64_REL16_HI 251 /* half16 (sym+add-.)@h */ +#define R_PPC64_REL16_HA 252 /* half16 (sym+add-.)@ha */ + +/* e_flags bits specifying ABI. + 1 for original function descriptor using ABI, + 2 for revised ABI without function descriptors, + 0 for unspecified or not using any features affected by the differences. */ +#define EF_PPC64_ABI 3 + + /* PowerPC64 specific values for the Dyn d_tag field. */ +#define DT_PPC64_GLINK (DT_LOPROC + 0) +#define DT_PPC64_OPD (DT_LOPROC + 1) +#define DT_PPC64_OPDSZ (DT_LOPROC + 2) +#define DT_PPC64_OPT (DT_LOPROC + 3) +#define DT_PPC64_NUM 4 + +/* PowerPC64 specific values for the DT_PPC64_OPT Dyn entry. */ +#define PPC64_OPT_TLS 1 +#define PPC64_OPT_MULTI_TOC 2 + +/* PowerPC64 specific values for the Elf64_Sym st_other field. */ +#define STO_PPC64_LOCAL_BIT 5 +#define STO_PPC64_LOCAL_MASK (7 << STO_PPC64_LOCAL_BIT) +#define PPC64_LOCAL_ENTRY_OFFSET(other) \ + (((1 << (((other) & STO_PPC64_LOCAL_MASK) >> STO_PPC64_LOCAL_BIT)) >> 2) << 2) + + +/* ARM specific declarations */ + +/* Processor specific flags for the ELF header e_flags field. */ +#define EF_ARM_RELEXEC 0x01 +#define EF_ARM_HASENTRY 0x02 +#define EF_ARM_INTERWORK 0x04 +#define EF_ARM_APCS_26 0x08 +#define EF_ARM_APCS_FLOAT 0x10 +#define EF_ARM_PIC 0x20 +#define EF_ARM_ALIGN8 0x40 /* 8-bit structure alignment is in use */ +#define EF_ARM_NEW_ABI 0x80 +#define EF_ARM_OLD_ABI 0x100 +#define EF_ARM_SOFT_FLOAT 0x200 +#define EF_ARM_VFP_FLOAT 0x400 +#define EF_ARM_MAVERICK_FLOAT 0x800 + +#define EF_ARM_ABI_FLOAT_SOFT 0x200 /* NB conflicts with EF_ARM_SOFT_FLOAT */ +#define EF_ARM_ABI_FLOAT_HARD 0x400 /* NB conflicts with EF_ARM_VFP_FLOAT */ + + +/* Other constants defined in the ARM ELF spec. version B-01. */ +/* NB. These conflict with values defined above. */ +#define EF_ARM_SYMSARESORTED 0x04 +#define EF_ARM_DYNSYMSUSESEGIDX 0x08 +#define EF_ARM_MAPSYMSFIRST 0x10 +#define EF_ARM_EABIMASK 0XFF000000 + +/* Constants defined in AAELF. */ +#define EF_ARM_BE8 0x00800000 +#define EF_ARM_LE8 0x00400000 + +#define EF_ARM_EABI_VERSION(flags) ((flags) & EF_ARM_EABIMASK) +#define EF_ARM_EABI_UNKNOWN 0x00000000 +#define EF_ARM_EABI_VER1 0x01000000 +#define EF_ARM_EABI_VER2 0x02000000 +#define EF_ARM_EABI_VER3 0x03000000 +#define EF_ARM_EABI_VER4 0x04000000 +#define EF_ARM_EABI_VER5 0x05000000 + +/* Additional symbol types for Thumb. */ +#define STT_ARM_TFUNC STT_LOPROC /* A Thumb function. */ +#define STT_ARM_16BIT STT_HIPROC /* A Thumb label. */ + +/* ARM-specific values for sh_flags */ +#define SHF_ARM_ENTRYSECT 0x10000000 /* Section contains an entry point */ +#define SHF_ARM_COMDEF 0x80000000 /* Section may be multiply defined + in the input to a link step. */ + + /* ARM-specific program header flags */ +#define PF_ARM_SB 0x10000000 /* Segment contains the location + addressed by the static base. */ +#define PF_ARM_PI 0x20000000 /* Position-independent segment. */ +#define PF_ARM_ABS 0x40000000 /* Absolute segment. */ + + /* Processor specific values for the Phdr p_type field. */ +#define PT_ARM_EXIDX (PT_LOPROC + 1) /* ARM unwind segment. */ + +/* Processor specific values for the Shdr sh_type field. */ +#define SHT_ARM_EXIDX (SHT_LOPROC + 1) /* ARM unwind section. */ +#define SHT_ARM_PREEMPTMAP (SHT_LOPROC + 2) /* Preemption details. */ +#define SHT_ARM_ATTRIBUTES (SHT_LOPROC + 3) /* ARM attributes section. */ + + +/* AArch64 relocs. */ + +#define R_AARCH64_NONE 0 /* No relocation. */ + +/* ILP32 AArch64 relocs. */ +#define R_AARCH64_P32_ABS32 1 /* Direct 32 bit. */ +#define R_AARCH64_P32_COPY 180 /* Copy symbol at runtime. */ +#define R_AARCH64_P32_GLOB_DAT 181 /* Create GOT entry. */ +#define R_AARCH64_P32_JUMP_SLOT 182 /* Create PLT entry. */ +#define R_AARCH64_P32_RELATIVE 183 /* Adjust by program base. */ +#define R_AARCH64_P32_TLS_DTPMOD 184 /* Module number, 32 bit. */ +#define R_AARCH64_P32_TLS_DTPREL 185 /* Module-relative offset, 32 bit. */ +#define R_AARCH64_P32_TLS_TPREL 186 /* TP-relative offset, 32 bit. */ +#define R_AARCH64_P32_TLSDESC 187 /* TLS Descriptor. */ +#define R_AARCH64_P32_IRELATIVE 188 /* STT_GNU_IFUNC relocation. */ + +/* LP64 AArch64 relocs. */ +#define R_AARCH64_ABS64 257 /* Direct 64 bit. */ +#define R_AARCH64_ABS32 258 /* Direct 32 bit. */ +#define R_AARCH64_ABS16 259 /* Direct 16-bit. */ +#define R_AARCH64_PREL64 260 /* PC-relative 64-bit. */ +#define R_AARCH64_PREL32 261 /* PC-relative 32-bit. */ +#define R_AARCH64_PREL16 262 /* PC-relative 16-bit. */ +#define R_AARCH64_MOVW_UABS_G0 263 /* Dir. MOVZ imm. from bits 15:0. */ +#define R_AARCH64_MOVW_UABS_G0_NC 264 /* Likewise for MOVK; no check. */ +#define R_AARCH64_MOVW_UABS_G1 265 /* Dir. MOVZ imm. from bits 31:16. */ +#define R_AARCH64_MOVW_UABS_G1_NC 266 /* Likewise for MOVK; no check. */ +#define R_AARCH64_MOVW_UABS_G2 267 /* Dir. MOVZ imm. from bits 47:32. */ +#define R_AARCH64_MOVW_UABS_G2_NC 268 /* Likewise for MOVK; no check. */ +#define R_AARCH64_MOVW_UABS_G3 269 /* Dir. MOV{K,Z} imm. from 63:48. */ +#define R_AARCH64_MOVW_SABS_G0 270 /* Dir. MOV{N,Z} imm. from 15:0. */ +#define R_AARCH64_MOVW_SABS_G1 271 /* Dir. MOV{N,Z} imm. from 31:16. */ +#define R_AARCH64_MOVW_SABS_G2 272 /* Dir. MOV{N,Z} imm. from 47:32. */ +#define R_AARCH64_LD_PREL_LO19 273 /* PC-rel. LD imm. from bits 20:2. */ +#define R_AARCH64_ADR_PREL_LO21 274 /* PC-rel. ADR imm. from bits 20:0. */ +#define R_AARCH64_ADR_PREL_PG_HI21 275 /* Page-rel. ADRP imm. from 32:12. */ +#define R_AARCH64_ADR_PREL_PG_HI21_NC 276 /* Likewise; no overflow check. */ +#define R_AARCH64_ADD_ABS_LO12_NC 277 /* Dir. ADD imm. from bits 11:0. */ +#define R_AARCH64_LDST8_ABS_LO12_NC 278 /* Likewise for LD/ST; no check. */ +#define R_AARCH64_TSTBR14 279 /* PC-rel. TBZ/TBNZ imm. from 15:2. */ +#define R_AARCH64_CONDBR19 280 /* PC-rel. cond. br. imm. from 20:2. */ +#define R_AARCH64_JUMP26 282 /* PC-rel. B imm. from bits 27:2. */ +#define R_AARCH64_CALL26 283 /* Likewise for CALL. */ +#define R_AARCH64_LDST16_ABS_LO12_NC 284 /* Dir. ADD imm. from bits 11:1. */ +#define R_AARCH64_LDST32_ABS_LO12_NC 285 /* Likewise for bits 11:2. */ +#define R_AARCH64_LDST64_ABS_LO12_NC 286 /* Likewise for bits 11:3. */ +#define R_AARCH64_MOVW_PREL_G0 287 /* PC-rel. MOV{N,Z} imm. from 15:0. */ +#define R_AARCH64_MOVW_PREL_G0_NC 288 /* Likewise for MOVK; no check. */ +#define R_AARCH64_MOVW_PREL_G1 289 /* PC-rel. MOV{N,Z} imm. from 31:16. */ +#define R_AARCH64_MOVW_PREL_G1_NC 290 /* Likewise for MOVK; no check. */ +#define R_AARCH64_MOVW_PREL_G2 291 /* PC-rel. MOV{N,Z} imm. from 47:32. */ +#define R_AARCH64_MOVW_PREL_G2_NC 292 /* Likewise for MOVK; no check. */ +#define R_AARCH64_MOVW_PREL_G3 293 /* PC-rel. MOV{N,Z} imm. from 63:48. */ +#define R_AARCH64_LDST128_ABS_LO12_NC 299 /* Dir. ADD imm. from bits 11:4. */ +#define R_AARCH64_MOVW_GOTOFF_G0 300 /* GOT-rel. off. MOV{N,Z} imm. 15:0. */ +#define R_AARCH64_MOVW_GOTOFF_G0_NC 301 /* Likewise for MOVK; no check. */ +#define R_AARCH64_MOVW_GOTOFF_G1 302 /* GOT-rel. o. MOV{N,Z} imm. 31:16. */ +#define R_AARCH64_MOVW_GOTOFF_G1_NC 303 /* Likewise for MOVK; no check. */ +#define R_AARCH64_MOVW_GOTOFF_G2 304 /* GOT-rel. o. MOV{N,Z} imm. 47:32. */ +#define R_AARCH64_MOVW_GOTOFF_G2_NC 305 /* Likewise for MOVK; no check. */ +#define R_AARCH64_MOVW_GOTOFF_G3 306 /* GOT-rel. o. MOV{N,Z} imm. 63:48. */ +#define R_AARCH64_GOTREL64 307 /* GOT-relative 64-bit. */ +#define R_AARCH64_GOTREL32 308 /* GOT-relative 32-bit. */ +#define R_AARCH64_GOT_LD_PREL19 309 /* PC-rel. GOT off. load imm. 20:2. */ +#define R_AARCH64_LD64_GOTOFF_LO15 310 /* GOT-rel. off. LD/ST imm. 14:3. */ +#define R_AARCH64_ADR_GOT_PAGE 311 /* P-page-rel. GOT off. ADRP 32:12. */ +#define R_AARCH64_LD64_GOT_LO12_NC 312 /* Dir. GOT off. LD/ST imm. 11:3. */ +#define R_AARCH64_LD64_GOTPAGE_LO15 313 /* GOT-page-rel. GOT off. LD/ST 14:3 */ +#define R_AARCH64_TLSGD_ADR_PREL21 512 /* PC-relative ADR imm. 20:0. */ +#define R_AARCH64_TLSGD_ADR_PAGE21 513 /* page-rel. ADRP imm. 32:12. */ +#define R_AARCH64_TLSGD_ADD_LO12_NC 514 /* direct ADD imm. from 11:0. */ +#define R_AARCH64_TLSGD_MOVW_G1 515 /* GOT-rel. MOV{N,Z} 31:16. */ +#define R_AARCH64_TLSGD_MOVW_G0_NC 516 /* GOT-rel. MOVK imm. 15:0. */ +#define R_AARCH64_TLSLD_ADR_PREL21 517 /* Like 512; local dynamic model. */ +#define R_AARCH64_TLSLD_ADR_PAGE21 518 /* Like 513; local dynamic model. */ +#define R_AARCH64_TLSLD_ADD_LO12_NC 519 /* Like 514; local dynamic model. */ +#define R_AARCH64_TLSLD_MOVW_G1 520 /* Like 515; local dynamic model. */ +#define R_AARCH64_TLSLD_MOVW_G0_NC 521 /* Like 516; local dynamic model. */ +#define R_AARCH64_TLSLD_LD_PREL19 522 /* TLS PC-rel. load imm. 20:2. */ +#define R_AARCH64_TLSLD_MOVW_DTPREL_G2 523 /* TLS DTP-rel. MOV{N,Z} 47:32. */ +#define R_AARCH64_TLSLD_MOVW_DTPREL_G1 524 /* TLS DTP-rel. MOV{N,Z} 31:16. */ +#define R_AARCH64_TLSLD_MOVW_DTPREL_G1_NC 525 /* Likewise; MOVK; no check. */ +#define R_AARCH64_TLSLD_MOVW_DTPREL_G0 526 /* TLS DTP-rel. MOV{N,Z} 15:0. */ +#define R_AARCH64_TLSLD_MOVW_DTPREL_G0_NC 527 /* Likewise; MOVK; no check. */ +#define R_AARCH64_TLSLD_ADD_DTPREL_HI12 528 /* DTP-rel. ADD imm. from 23:12. */ +#define R_AARCH64_TLSLD_ADD_DTPREL_LO12 529 /* DTP-rel. ADD imm. from 11:0. */ +#define R_AARCH64_TLSLD_ADD_DTPREL_LO12_NC 530 /* Likewise; no ovfl. check. */ +#define R_AARCH64_TLSLD_LDST8_DTPREL_LO12 531 /* DTP-rel. LD/ST imm. 11:0. */ +#define R_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC 532 /* Likewise; no check. */ +#define R_AARCH64_TLSLD_LDST16_DTPREL_LO12 533 /* DTP-rel. LD/ST imm. 11:1. */ +#define R_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC 534 /* Likewise; no check. */ +#define R_AARCH64_TLSLD_LDST32_DTPREL_LO12 535 /* DTP-rel. LD/ST imm. 11:2. */ +#define R_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC 536 /* Likewise; no check. */ +#define R_AARCH64_TLSLD_LDST64_DTPREL_LO12 537 /* DTP-rel. LD/ST imm. 11:3. */ +#define R_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC 538 /* Likewise; no check. */ +#define R_AARCH64_TLSIE_MOVW_GOTTPREL_G1 539 /* GOT-rel. MOV{N,Z} 31:16. */ +#define R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC 540 /* GOT-rel. MOVK 15:0. */ +#define R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 541 /* Page-rel. ADRP 32:12. */ +#define R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC 542 /* Direct LD off. 11:3. */ +#define R_AARCH64_TLSIE_LD_GOTTPREL_PREL19 543 /* PC-rel. load imm. 20:2. */ +#define R_AARCH64_TLSLE_MOVW_TPREL_G2 544 /* TLS TP-rel. MOV{N,Z} 47:32. */ +#define R_AARCH64_TLSLE_MOVW_TPREL_G1 545 /* TLS TP-rel. MOV{N,Z} 31:16. */ +#define R_AARCH64_TLSLE_MOVW_TPREL_G1_NC 546 /* Likewise; MOVK; no check. */ +#define R_AARCH64_TLSLE_MOVW_TPREL_G0 547 /* TLS TP-rel. MOV{N,Z} 15:0. */ +#define R_AARCH64_TLSLE_MOVW_TPREL_G0_NC 548 /* Likewise; MOVK; no check. */ +#define R_AARCH64_TLSLE_ADD_TPREL_HI12 549 /* TP-rel. ADD imm. 23:12. */ +#define R_AARCH64_TLSLE_ADD_TPREL_LO12 550 /* TP-rel. ADD imm. 11:0. */ +#define R_AARCH64_TLSLE_ADD_TPREL_LO12_NC 551 /* Likewise; no ovfl. check. */ +#define R_AARCH64_TLSLE_LDST8_TPREL_LO12 552 /* TP-rel. LD/ST off. 11:0. */ +#define R_AARCH64_TLSLE_LDST8_TPREL_LO12_NC 553 /* Likewise; no ovfl. check. */ +#define R_AARCH64_TLSLE_LDST16_TPREL_LO12 554 /* TP-rel. LD/ST off. 11:1. */ +#define R_AARCH64_TLSLE_LDST16_TPREL_LO12_NC 555 /* Likewise; no check. */ +#define R_AARCH64_TLSLE_LDST32_TPREL_LO12 556 /* TP-rel. LD/ST off. 11:2. */ +#define R_AARCH64_TLSLE_LDST32_TPREL_LO12_NC 557 /* Likewise; no check. */ +#define R_AARCH64_TLSLE_LDST64_TPREL_LO12 558 /* TP-rel. LD/ST off. 11:3. */ +#define R_AARCH64_TLSLE_LDST64_TPREL_LO12_NC 559 /* Likewise; no check. */ +#define R_AARCH64_TLSDESC_LD_PREL19 560 /* PC-rel. load immediate 20:2. */ +#define R_AARCH64_TLSDESC_ADR_PREL21 561 /* PC-rel. ADR immediate 20:0. */ +#define R_AARCH64_TLSDESC_ADR_PAGE21 562 /* Page-rel. ADRP imm. 32:12. */ +#define R_AARCH64_TLSDESC_LD64_LO12 563 /* Direct LD off. from 11:3. */ +#define R_AARCH64_TLSDESC_ADD_LO12 564 /* Direct ADD imm. from 11:0. */ +#define R_AARCH64_TLSDESC_OFF_G1 565 /* GOT-rel. MOV{N,Z} imm. 31:16. */ +#define R_AARCH64_TLSDESC_OFF_G0_NC 566 /* GOT-rel. MOVK imm. 15:0; no ck. */ +#define R_AARCH64_TLSDESC_LDR 567 /* Relax LDR. */ +#define R_AARCH64_TLSDESC_ADD 568 /* Relax ADD. */ +#define R_AARCH64_TLSDESC_CALL 569 /* Relax BLR. */ +#define R_AARCH64_TLSLE_LDST128_TPREL_LO12 570 /* TP-rel. LD/ST off. 11:4. */ +#define R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC 571 /* Likewise; no check. */ +#define R_AARCH64_TLSLD_LDST128_DTPREL_LO12 572 /* DTP-rel. LD/ST imm. 11:4. */ +#define R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC 573 /* Likewise; no check. */ +#define R_AARCH64_COPY 1024 /* Copy symbol at runtime. */ +#define R_AARCH64_GLOB_DAT 1025 /* Create GOT entry. */ +#define R_AARCH64_JUMP_SLOT 1026 /* Create PLT entry. */ +#define R_AARCH64_RELATIVE 1027 /* Adjust by program base. */ +#define R_AARCH64_TLS_DTPMOD 1028 /* Module number, 64 bit. */ +#define R_AARCH64_TLS_DTPREL 1029 /* Module-relative offset, 64 bit. */ +#define R_AARCH64_TLS_TPREL 1030 /* TP-relative offset, 64 bit. */ +#define R_AARCH64_TLSDESC 1031 /* TLS Descriptor. */ +#define R_AARCH64_IRELATIVE 1032 /* STT_GNU_IFUNC relocation. */ + +/* ARM relocs. */ + +#define R_ARM_NONE 0 /* No reloc */ +#define R_ARM_PC24 1 /* Deprecated PC relative 26 + bit branch. */ +#define R_ARM_ABS32 2 /* Direct 32 bit */ +#define R_ARM_REL32 3 /* PC relative 32 bit */ +#define R_ARM_PC13 4 +#define R_ARM_ABS16 5 /* Direct 16 bit */ +#define R_ARM_ABS12 6 /* Direct 12 bit */ +#define R_ARM_THM_ABS5 7 /* Direct & 0x7C (LDR, STR). */ +#define R_ARM_ABS8 8 /* Direct 8 bit */ +#define R_ARM_SBREL32 9 +#define R_ARM_THM_PC22 10 /* PC relative 24 bit (Thumb32 BL). */ +#define R_ARM_THM_PC8 11 /* PC relative & 0x3FC + (Thumb16 LDR, ADD, ADR). */ +#define R_ARM_AMP_VCALL9 12 +#define R_ARM_SWI24 13 /* Obsolete static relocation. */ +#define R_ARM_TLS_DESC 13 /* Dynamic relocation. */ +#define R_ARM_THM_SWI8 14 /* Reserved. */ +#define R_ARM_XPC25 15 /* Reserved. */ +#define R_ARM_THM_XPC22 16 /* Reserved. */ +#define R_ARM_TLS_DTPMOD32 17 /* ID of module containing symbol */ +#define R_ARM_TLS_DTPOFF32 18 /* Offset in TLS block */ +#define R_ARM_TLS_TPOFF32 19 /* Offset in static TLS block */ +#define R_ARM_COPY 20 /* Copy symbol at runtime */ +#define R_ARM_GLOB_DAT 21 /* Create GOT entry */ +#define R_ARM_JUMP_SLOT 22 /* Create PLT entry */ +#define R_ARM_RELATIVE 23 /* Adjust by program base */ +#define R_ARM_GOTOFF 24 /* 32 bit offset to GOT */ +#define R_ARM_GOTPC 25 /* 32 bit PC relative offset to GOT */ +#define R_ARM_GOT32 26 /* 32 bit GOT entry */ +#define R_ARM_PLT32 27 /* Deprecated, 32 bit PLT address. */ +#define R_ARM_CALL 28 /* PC relative 24 bit (BL, BLX). */ +#define R_ARM_JUMP24 29 /* PC relative 24 bit + (B, BL). */ +#define R_ARM_THM_JUMP24 30 /* PC relative 24 bit (Thumb32 B.W). */ +#define R_ARM_BASE_ABS 31 /* Adjust by program base. */ +#define R_ARM_ALU_PCREL_7_0 32 /* Obsolete. */ +#define R_ARM_ALU_PCREL_15_8 33 /* Obsolete. */ +#define R_ARM_ALU_PCREL_23_15 34 /* Obsolete. */ +#define R_ARM_LDR_SBREL_11_0 35 /* Deprecated, prog. base relative. */ +#define R_ARM_ALU_SBREL_19_12 36 /* Deprecated, prog. base relative. */ +#define R_ARM_ALU_SBREL_27_20 37 /* Deprecated, prog. base relative. */ +#define R_ARM_TARGET1 38 +#define R_ARM_SBREL31 39 /* Program base relative. */ +#define R_ARM_V4BX 40 +#define R_ARM_TARGET2 41 +#define R_ARM_PREL31 42 /* 32 bit PC relative. */ +#define R_ARM_MOVW_ABS_NC 43 /* Direct 16-bit (MOVW). */ +#define R_ARM_MOVT_ABS 44 /* Direct high 16-bit (MOVT). */ +#define R_ARM_MOVW_PREL_NC 45 /* PC relative 16-bit (MOVW). */ +#define R_ARM_MOVT_PREL 46 /* PC relative (MOVT). */ +#define R_ARM_THM_MOVW_ABS_NC 47 /* Direct 16 bit (Thumb32 MOVW). */ +#define R_ARM_THM_MOVT_ABS 48 /* Direct high 16 bit + (Thumb32 MOVT). */ +#define R_ARM_THM_MOVW_PREL_NC 49 /* PC relative 16 bit + (Thumb32 MOVW). */ +#define R_ARM_THM_MOVT_PREL 50 /* PC relative high 16 bit + (Thumb32 MOVT). */ +#define R_ARM_THM_JUMP19 51 /* PC relative 20 bit + (Thumb32 B.W). */ +#define R_ARM_THM_JUMP6 52 /* PC relative X & 0x7E + (Thumb16 CBZ, CBNZ). */ +#define R_ARM_THM_ALU_PREL_11_0 53 /* PC relative 12 bit + (Thumb32 ADR.W). */ +#define R_ARM_THM_PC12 54 /* PC relative 12 bit + (Thumb32 LDR{D,SB,H,SH}). */ +#define R_ARM_ABS32_NOI 55 /* Direct 32-bit. */ +#define R_ARM_REL32_NOI 56 /* PC relative 32-bit. */ +#define R_ARM_ALU_PC_G0_NC 57 /* PC relative (ADD, SUB). */ +#define R_ARM_ALU_PC_G0 58 /* PC relative (ADD, SUB). */ +#define R_ARM_ALU_PC_G1_NC 59 /* PC relative (ADD, SUB). */ +#define R_ARM_ALU_PC_G1 60 /* PC relative (ADD, SUB). */ +#define R_ARM_ALU_PC_G2 61 /* PC relative (ADD, SUB). */ +#define R_ARM_LDR_PC_G1 62 /* PC relative (LDR,STR,LDRB,STRB). */ +#define R_ARM_LDR_PC_G2 63 /* PC relative (LDR,STR,LDRB,STRB). */ +#define R_ARM_LDRS_PC_G0 64 /* PC relative (STR{D,H}, + LDR{D,SB,H,SH}). */ +#define R_ARM_LDRS_PC_G1 65 /* PC relative (STR{D,H}, + LDR{D,SB,H,SH}). */ +#define R_ARM_LDRS_PC_G2 66 /* PC relative (STR{D,H}, + LDR{D,SB,H,SH}). */ +#define R_ARM_LDC_PC_G0 67 /* PC relative (LDC, STC). */ +#define R_ARM_LDC_PC_G1 68 /* PC relative (LDC, STC). */ +#define R_ARM_LDC_PC_G2 69 /* PC relative (LDC, STC). */ +#define R_ARM_ALU_SB_G0_NC 70 /* Program base relative (ADD,SUB). */ +#define R_ARM_ALU_SB_G0 71 /* Program base relative (ADD,SUB). */ +#define R_ARM_ALU_SB_G1_NC 72 /* Program base relative (ADD,SUB). */ +#define R_ARM_ALU_SB_G1 73 /* Program base relative (ADD,SUB). */ +#define R_ARM_ALU_SB_G2 74 /* Program base relative (ADD,SUB). */ +#define R_ARM_LDR_SB_G0 75 /* Program base relative (LDR, + STR, LDRB, STRB). */ +#define R_ARM_LDR_SB_G1 76 /* Program base relative + (LDR, STR, LDRB, STRB). */ +#define R_ARM_LDR_SB_G2 77 /* Program base relative + (LDR, STR, LDRB, STRB). */ +#define R_ARM_LDRS_SB_G0 78 /* Program base relative + (LDR, STR, LDRB, STRB). */ +#define R_ARM_LDRS_SB_G1 79 /* Program base relative + (LDR, STR, LDRB, STRB). */ +#define R_ARM_LDRS_SB_G2 80 /* Program base relative + (LDR, STR, LDRB, STRB). */ +#define R_ARM_LDC_SB_G0 81 /* Program base relative (LDC,STC). */ +#define R_ARM_LDC_SB_G1 82 /* Program base relative (LDC,STC). */ +#define R_ARM_LDC_SB_G2 83 /* Program base relative (LDC,STC). */ +#define R_ARM_MOVW_BREL_NC 84 /* Program base relative 16 + bit (MOVW). */ +#define R_ARM_MOVT_BREL 85 /* Program base relative high + 16 bit (MOVT). */ +#define R_ARM_MOVW_BREL 86 /* Program base relative 16 + bit (MOVW). */ +#define R_ARM_THM_MOVW_BREL_NC 87 /* Program base relative 16 + bit (Thumb32 MOVW). */ +#define R_ARM_THM_MOVT_BREL 88 /* Program base relative high + 16 bit (Thumb32 MOVT). */ +#define R_ARM_THM_MOVW_BREL 89 /* Program base relative 16 + bit (Thumb32 MOVW). */ +#define R_ARM_TLS_GOTDESC 90 +#define R_ARM_TLS_CALL 91 +#define R_ARM_TLS_DESCSEQ 92 /* TLS relaxation. */ +#define R_ARM_THM_TLS_CALL 93 +#define R_ARM_PLT32_ABS 94 +#define R_ARM_GOT_ABS 95 /* GOT entry. */ +#define R_ARM_GOT_PREL 96 /* PC relative GOT entry. */ +#define R_ARM_GOT_BREL12 97 /* GOT entry relative to GOT + origin (LDR). */ +#define R_ARM_GOTOFF12 98 /* 12 bit, GOT entry relative + to GOT origin (LDR, STR). */ +#define R_ARM_GOTRELAX 99 +#define R_ARM_GNU_VTENTRY 100 +#define R_ARM_GNU_VTINHERIT 101 +#define R_ARM_THM_PC11 102 /* PC relative & 0xFFE (Thumb16 B). */ +#define R_ARM_THM_PC9 103 /* PC relative & 0x1FE + (Thumb16 B/B). */ +#define R_ARM_TLS_GD32 104 /* PC-rel 32 bit for global dynamic + thread local data */ +#define R_ARM_TLS_LDM32 105 /* PC-rel 32 bit for local dynamic + thread local data */ +#define R_ARM_TLS_LDO32 106 /* 32 bit offset relative to TLS + block */ +#define R_ARM_TLS_IE32 107 /* PC-rel 32 bit for GOT entry of + static TLS block offset */ +#define R_ARM_TLS_LE32 108 /* 32 bit offset relative to static + TLS block */ +#define R_ARM_TLS_LDO12 109 /* 12 bit relative to TLS + block (LDR, STR). */ +#define R_ARM_TLS_LE12 110 /* 12 bit relative to static + TLS block (LDR, STR). */ +#define R_ARM_TLS_IE12GP 111 /* 12 bit GOT entry relative + to GOT origin (LDR). */ +#define R_ARM_ME_TOO 128 /* Obsolete. */ +#define R_ARM_THM_TLS_DESCSEQ 129 +#define R_ARM_THM_TLS_DESCSEQ16 129 +#define R_ARM_THM_TLS_DESCSEQ32 130 +#define R_ARM_THM_GOT_BREL12 131 /* GOT entry relative to GOT + origin, 12 bit (Thumb32 LDR). */ +#define R_ARM_IRELATIVE 160 +#define R_ARM_RXPC25 249 +#define R_ARM_RSBREL32 250 +#define R_ARM_THM_RPC22 251 +#define R_ARM_RREL32 252 +#define R_ARM_RABS22 253 +#define R_ARM_RPC24 254 +#define R_ARM_RBASE 255 + /* Keep this the last entry. */ +#define R_ARM_NUM 256 + +/* IA-64 specific declarations. */ + +/* Processor specific flags for the Ehdr e_flags field. */ +#define EF_IA_64_MASKOS 0x0000000f /* os-specific flags */ +#define EF_IA_64_ABI64 0x00000010 /* 64-bit ABI */ +#define EF_IA_64_ARCH 0xff000000 /* arch. version mask */ + +/* Processor specific values for the Phdr p_type field. */ +#define PT_IA_64_ARCHEXT (PT_LOPROC + 0) /* arch extension bits */ +#define PT_IA_64_UNWIND (PT_LOPROC + 1) /* ia64 unwind bits */ +#define PT_IA_64_HP_OPT_ANOT (PT_LOOS + 0x12) +#define PT_IA_64_HP_HSL_ANOT (PT_LOOS + 0x13) +#define PT_IA_64_HP_STACK (PT_LOOS + 0x14) + +/* Processor specific flags for the Phdr p_flags field. */ +#define PF_IA_64_NORECOV 0x80000000 /* spec insns w/o recovery */ + +/* Processor specific values for the Shdr sh_type field. */ +#define SHT_IA_64_EXT (SHT_LOPROC + 0) /* extension bits */ +#define SHT_IA_64_UNWIND (SHT_LOPROC + 1) /* unwind bits */ + +/* Processor specific flags for the Shdr sh_flags field. */ +#define SHF_IA_64_SHORT 0x10000000 /* section near gp */ +#define SHF_IA_64_NORECOV 0x20000000 /* spec insns w/o recovery */ + +/* Processor specific values for the Dyn d_tag field. */ +#define DT_IA_64_PLT_RESERVE (DT_LOPROC + 0) +#define DT_IA_64_NUM 1 + +/* IA-64 relocations. */ +#define R_IA64_NONE 0x00 /* none */ +#define R_IA64_IMM14 0x21 /* symbol + addend, add imm14 */ +#define R_IA64_IMM22 0x22 /* symbol + addend, add imm22 */ +#define R_IA64_IMM64 0x23 /* symbol + addend, mov imm64 */ +#define R_IA64_DIR32MSB 0x24 /* symbol + addend, data4 MSB */ +#define R_IA64_DIR32LSB 0x25 /* symbol + addend, data4 LSB */ +#define R_IA64_DIR64MSB 0x26 /* symbol + addend, data8 MSB */ +#define R_IA64_DIR64LSB 0x27 /* symbol + addend, data8 LSB */ +#define R_IA64_GPREL22 0x2a /* @gprel(sym + add), add imm22 */ +#define R_IA64_GPREL64I 0x2b /* @gprel(sym + add), mov imm64 */ +#define R_IA64_GPREL32MSB 0x2c /* @gprel(sym + add), data4 MSB */ +#define R_IA64_GPREL32LSB 0x2d /* @gprel(sym + add), data4 LSB */ +#define R_IA64_GPREL64MSB 0x2e /* @gprel(sym + add), data8 MSB */ +#define R_IA64_GPREL64LSB 0x2f /* @gprel(sym + add), data8 LSB */ +#define R_IA64_LTOFF22 0x32 /* @ltoff(sym + add), add imm22 */ +#define R_IA64_LTOFF64I 0x33 /* @ltoff(sym + add), mov imm64 */ +#define R_IA64_PLTOFF22 0x3a /* @pltoff(sym + add), add imm22 */ +#define R_IA64_PLTOFF64I 0x3b /* @pltoff(sym + add), mov imm64 */ +#define R_IA64_PLTOFF64MSB 0x3e /* @pltoff(sym + add), data8 MSB */ +#define R_IA64_PLTOFF64LSB 0x3f /* @pltoff(sym + add), data8 LSB */ +#define R_IA64_FPTR64I 0x43 /* @fptr(sym + add), mov imm64 */ +#define R_IA64_FPTR32MSB 0x44 /* @fptr(sym + add), data4 MSB */ +#define R_IA64_FPTR32LSB 0x45 /* @fptr(sym + add), data4 LSB */ +#define R_IA64_FPTR64MSB 0x46 /* @fptr(sym + add), data8 MSB */ +#define R_IA64_FPTR64LSB 0x47 /* @fptr(sym + add), data8 LSB */ +#define R_IA64_PCREL60B 0x48 /* @pcrel(sym + add), brl */ +#define R_IA64_PCREL21B 0x49 /* @pcrel(sym + add), ptb, call */ +#define R_IA64_PCREL21M 0x4a /* @pcrel(sym + add), chk.s */ +#define R_IA64_PCREL21F 0x4b /* @pcrel(sym + add), fchkf */ +#define R_IA64_PCREL32MSB 0x4c /* @pcrel(sym + add), data4 MSB */ +#define R_IA64_PCREL32LSB 0x4d /* @pcrel(sym + add), data4 LSB */ +#define R_IA64_PCREL64MSB 0x4e /* @pcrel(sym + add), data8 MSB */ +#define R_IA64_PCREL64LSB 0x4f /* @pcrel(sym + add), data8 LSB */ +#define R_IA64_LTOFF_FPTR22 0x52 /* @ltoff(@fptr(s+a)), imm22 */ +#define R_IA64_LTOFF_FPTR64I 0x53 /* @ltoff(@fptr(s+a)), imm64 */ +#define R_IA64_LTOFF_FPTR32MSB 0x54 /* @ltoff(@fptr(s+a)), data4 MSB */ +#define R_IA64_LTOFF_FPTR32LSB 0x55 /* @ltoff(@fptr(s+a)), data4 LSB */ +#define R_IA64_LTOFF_FPTR64MSB 0x56 /* @ltoff(@fptr(s+a)), data8 MSB */ +#define R_IA64_LTOFF_FPTR64LSB 0x57 /* @ltoff(@fptr(s+a)), data8 LSB */ +#define R_IA64_SEGREL32MSB 0x5c /* @segrel(sym + add), data4 MSB */ +#define R_IA64_SEGREL32LSB 0x5d /* @segrel(sym + add), data4 LSB */ +#define R_IA64_SEGREL64MSB 0x5e /* @segrel(sym + add), data8 MSB */ +#define R_IA64_SEGREL64LSB 0x5f /* @segrel(sym + add), data8 LSB */ +#define R_IA64_SECREL32MSB 0x64 /* @secrel(sym + add), data4 MSB */ +#define R_IA64_SECREL32LSB 0x65 /* @secrel(sym + add), data4 LSB */ +#define R_IA64_SECREL64MSB 0x66 /* @secrel(sym + add), data8 MSB */ +#define R_IA64_SECREL64LSB 0x67 /* @secrel(sym + add), data8 LSB */ +#define R_IA64_REL32MSB 0x6c /* data 4 + REL */ +#define R_IA64_REL32LSB 0x6d /* data 4 + REL */ +#define R_IA64_REL64MSB 0x6e /* data 8 + REL */ +#define R_IA64_REL64LSB 0x6f /* data 8 + REL */ +#define R_IA64_LTV32MSB 0x74 /* symbol + addend, data4 MSB */ +#define R_IA64_LTV32LSB 0x75 /* symbol + addend, data4 LSB */ +#define R_IA64_LTV64MSB 0x76 /* symbol + addend, data8 MSB */ +#define R_IA64_LTV64LSB 0x77 /* symbol + addend, data8 LSB */ +#define R_IA64_PCREL21BI 0x79 /* @pcrel(sym + add), 21bit inst */ +#define R_IA64_PCREL22 0x7a /* @pcrel(sym + add), 22bit inst */ +#define R_IA64_PCREL64I 0x7b /* @pcrel(sym + add), 64bit inst */ +#define R_IA64_IPLTMSB 0x80 /* dynamic reloc, imported PLT, MSB */ +#define R_IA64_IPLTLSB 0x81 /* dynamic reloc, imported PLT, LSB */ +#define R_IA64_COPY 0x84 /* copy relocation */ +#define R_IA64_SUB 0x85 /* Addend and symbol difference */ +#define R_IA64_LTOFF22X 0x86 /* LTOFF22, relaxable. */ +#define R_IA64_LDXMOV 0x87 /* Use of LTOFF22X. */ +#define R_IA64_TPREL14 0x91 /* @tprel(sym + add), imm14 */ +#define R_IA64_TPREL22 0x92 /* @tprel(sym + add), imm22 */ +#define R_IA64_TPREL64I 0x93 /* @tprel(sym + add), imm64 */ +#define R_IA64_TPREL64MSB 0x96 /* @tprel(sym + add), data8 MSB */ +#define R_IA64_TPREL64LSB 0x97 /* @tprel(sym + add), data8 LSB */ +#define R_IA64_LTOFF_TPREL22 0x9a /* @ltoff(@tprel(s+a)), imm2 */ +#define R_IA64_DTPMOD64MSB 0xa6 /* @dtpmod(sym + add), data8 MSB */ +#define R_IA64_DTPMOD64LSB 0xa7 /* @dtpmod(sym + add), data8 LSB */ +#define R_IA64_LTOFF_DTPMOD22 0xaa /* @ltoff(@dtpmod(sym + add)), imm22 */ +#define R_IA64_DTPREL14 0xb1 /* @dtprel(sym + add), imm14 */ +#define R_IA64_DTPREL22 0xb2 /* @dtprel(sym + add), imm22 */ +#define R_IA64_DTPREL64I 0xb3 /* @dtprel(sym + add), imm64 */ +#define R_IA64_DTPREL32MSB 0xb4 /* @dtprel(sym + add), data4 MSB */ +#define R_IA64_DTPREL32LSB 0xb5 /* @dtprel(sym + add), data4 LSB */ +#define R_IA64_DTPREL64MSB 0xb6 /* @dtprel(sym + add), data8 MSB */ +#define R_IA64_DTPREL64LSB 0xb7 /* @dtprel(sym + add), data8 LSB */ +#define R_IA64_LTOFF_DTPREL22 0xba /* @ltoff(@dtprel(s+a)), imm22 */ + +/* SH specific declarations */ + +/* Processor specific flags for the ELF header e_flags field. */ +#define EF_SH_MACH_MASK 0x1f +#define EF_SH_UNKNOWN 0x0 +#define EF_SH1 0x1 +#define EF_SH2 0x2 +#define EF_SH3 0x3 +#define EF_SH_DSP 0x4 +#define EF_SH3_DSP 0x5 +#define EF_SH4AL_DSP 0x6 +#define EF_SH3E 0x8 +#define EF_SH4 0x9 +#define EF_SH2E 0xb +#define EF_SH4A 0xc +#define EF_SH2A 0xd +#define EF_SH4_NOFPU 0x10 +#define EF_SH4A_NOFPU 0x11 +#define EF_SH4_NOMMU_NOFPU 0x12 +#define EF_SH2A_NOFPU 0x13 +#define EF_SH3_NOMMU 0x14 +#define EF_SH2A_SH4_NOFPU 0x15 +#define EF_SH2A_SH3_NOFPU 0x16 +#define EF_SH2A_SH4 0x17 +#define EF_SH2A_SH3E 0x18 + +/* SH relocs. */ +#define R_SH_NONE 0 +#define R_SH_DIR32 1 +#define R_SH_REL32 2 +#define R_SH_DIR8WPN 3 +#define R_SH_IND12W 4 +#define R_SH_DIR8WPL 5 +#define R_SH_DIR8WPZ 6 +#define R_SH_DIR8BP 7 +#define R_SH_DIR8W 8 +#define R_SH_DIR8L 9 +#define R_SH_SWITCH16 25 +#define R_SH_SWITCH32 26 +#define R_SH_USES 27 +#define R_SH_COUNT 28 +#define R_SH_ALIGN 29 +#define R_SH_CODE 30 +#define R_SH_DATA 31 +#define R_SH_LABEL 32 +#define R_SH_SWITCH8 33 +#define R_SH_GNU_VTINHERIT 34 +#define R_SH_GNU_VTENTRY 35 +#define R_SH_TLS_GD_32 144 +#define R_SH_TLS_LD_32 145 +#define R_SH_TLS_LDO_32 146 +#define R_SH_TLS_IE_32 147 +#define R_SH_TLS_LE_32 148 +#define R_SH_TLS_DTPMOD32 149 +#define R_SH_TLS_DTPOFF32 150 +#define R_SH_TLS_TPOFF32 151 +#define R_SH_GOT32 160 +#define R_SH_PLT32 161 +#define R_SH_COPY 162 +#define R_SH_GLOB_DAT 163 +#define R_SH_JMP_SLOT 164 +#define R_SH_RELATIVE 165 +#define R_SH_GOTOFF 166 +#define R_SH_GOTPC 167 +/* Keep this the last entry. */ +#define R_SH_NUM 256 + +/* S/390 specific definitions. */ + +/* Valid values for the e_flags field. */ + +#define EF_S390_HIGH_GPRS 0x00000001 /* High GPRs kernel facility needed. */ + +/* Additional s390 relocs */ + +#define R_390_NONE 0 /* No reloc. */ +#define R_390_8 1 /* Direct 8 bit. */ +#define R_390_12 2 /* Direct 12 bit. */ +#define R_390_16 3 /* Direct 16 bit. */ +#define R_390_32 4 /* Direct 32 bit. */ +#define R_390_PC32 5 /* PC relative 32 bit. */ +#define R_390_GOT12 6 /* 12 bit GOT offset. */ +#define R_390_GOT32 7 /* 32 bit GOT offset. */ +#define R_390_PLT32 8 /* 32 bit PC relative PLT address. */ +#define R_390_COPY 9 /* Copy symbol at runtime. */ +#define R_390_GLOB_DAT 10 /* Create GOT entry. */ +#define R_390_JMP_SLOT 11 /* Create PLT entry. */ +#define R_390_RELATIVE 12 /* Adjust by program base. */ +#define R_390_GOTOFF32 13 /* 32 bit offset to GOT. */ +#define R_390_GOTPC 14 /* 32 bit PC relative offset to GOT. */ +#define R_390_GOT16 15 /* 16 bit GOT offset. */ +#define R_390_PC16 16 /* PC relative 16 bit. */ +#define R_390_PC16DBL 17 /* PC relative 16 bit shifted by 1. */ +#define R_390_PLT16DBL 18 /* 16 bit PC rel. PLT shifted by 1. */ +#define R_390_PC32DBL 19 /* PC relative 32 bit shifted by 1. */ +#define R_390_PLT32DBL 20 /* 32 bit PC rel. PLT shifted by 1. */ +#define R_390_GOTPCDBL 21 /* 32 bit PC rel. GOT shifted by 1. */ +#define R_390_64 22 /* Direct 64 bit. */ +#define R_390_PC64 23 /* PC relative 64 bit. */ +#define R_390_GOT64 24 /* 64 bit GOT offset. */ +#define R_390_PLT64 25 /* 64 bit PC relative PLT address. */ +#define R_390_GOTENT 26 /* 32 bit PC rel. to GOT entry >> 1. */ +#define R_390_GOTOFF16 27 /* 16 bit offset to GOT. */ +#define R_390_GOTOFF64 28 /* 64 bit offset to GOT. */ +#define R_390_GOTPLT12 29 /* 12 bit offset to jump slot. */ +#define R_390_GOTPLT16 30 /* 16 bit offset to jump slot. */ +#define R_390_GOTPLT32 31 /* 32 bit offset to jump slot. */ +#define R_390_GOTPLT64 32 /* 64 bit offset to jump slot. */ +#define R_390_GOTPLTENT 33 /* 32 bit rel. offset to jump slot. */ +#define R_390_PLTOFF16 34 /* 16 bit offset from GOT to PLT. */ +#define R_390_PLTOFF32 35 /* 32 bit offset from GOT to PLT. */ +#define R_390_PLTOFF64 36 /* 16 bit offset from GOT to PLT. */ +#define R_390_TLS_LOAD 37 /* Tag for load insn in TLS code. */ +#define R_390_TLS_GDCALL 38 /* Tag for function call in general + dynamic TLS code. */ +#define R_390_TLS_LDCALL 39 /* Tag for function call in local + dynamic TLS code. */ +#define R_390_TLS_GD32 40 /* Direct 32 bit for general dynamic + thread local data. */ +#define R_390_TLS_GD64 41 /* Direct 64 bit for general dynamic + thread local data. */ +#define R_390_TLS_GOTIE12 42 /* 12 bit GOT offset for static TLS + block offset. */ +#define R_390_TLS_GOTIE32 43 /* 32 bit GOT offset for static TLS + block offset. */ +#define R_390_TLS_GOTIE64 44 /* 64 bit GOT offset for static TLS + block offset. */ +#define R_390_TLS_LDM32 45 /* Direct 32 bit for local dynamic + thread local data in LE code. */ +#define R_390_TLS_LDM64 46 /* Direct 64 bit for local dynamic + thread local data in LE code. */ +#define R_390_TLS_IE32 47 /* 32 bit address of GOT entry for + negated static TLS block offset. */ +#define R_390_TLS_IE64 48 /* 64 bit address of GOT entry for + negated static TLS block offset. */ +#define R_390_TLS_IEENT 49 /* 32 bit rel. offset to GOT entry for + negated static TLS block offset. */ +#define R_390_TLS_LE32 50 /* 32 bit negated offset relative to + static TLS block. */ +#define R_390_TLS_LE64 51 /* 64 bit negated offset relative to + static TLS block. */ +#define R_390_TLS_LDO32 52 /* 32 bit offset relative to TLS + block. */ +#define R_390_TLS_LDO64 53 /* 64 bit offset relative to TLS + block. */ +#define R_390_TLS_DTPMOD 54 /* ID of module containing symbol. */ +#define R_390_TLS_DTPOFF 55 /* Offset in TLS block. */ +#define R_390_TLS_TPOFF 56 /* Negated offset in static TLS + block. */ +#define R_390_20 57 /* Direct 20 bit. */ +#define R_390_GOT20 58 /* 20 bit GOT offset. */ +#define R_390_GOTPLT20 59 /* 20 bit offset to jump slot. */ +#define R_390_TLS_GOTIE20 60 /* 20 bit GOT offset for static TLS + block offset. */ +#define R_390_IRELATIVE 61 /* STT_GNU_IFUNC relocation. */ + /* Keep this the last entry. */ +#define R_390_NUM 62 + + +/* CRIS relocations. */ +#define R_CRIS_NONE 0 +#define R_CRIS_8 1 +#define R_CRIS_16 2 +#define R_CRIS_32 3 +#define R_CRIS_8_PCREL 4 +#define R_CRIS_16_PCREL 5 +#define R_CRIS_32_PCREL 6 +#define R_CRIS_GNU_VTINHERIT 7 +#define R_CRIS_GNU_VTENTRY 8 +#define R_CRIS_COPY 9 +#define R_CRIS_GLOB_DAT 10 +#define R_CRIS_JUMP_SLOT 11 +#define R_CRIS_RELATIVE 12 +#define R_CRIS_16_GOT 13 +#define R_CRIS_32_GOT 14 +#define R_CRIS_16_GOTPLT 15 +#define R_CRIS_32_GOTPLT 16 +#define R_CRIS_32_GOTREL 17 +#define R_CRIS_32_PLT_GOTREL 18 +#define R_CRIS_32_PLT_PCREL 19 + +#define R_CRIS_NUM 20 + + +/* AMD x86-64 relocations. */ +#define R_X86_64_NONE 0 /* No reloc */ +#define R_X86_64_64 1 /* Direct 64 bit */ +#define R_X86_64_PC32 2 /* PC relative 32 bit signed */ +#define R_X86_64_GOT32 3 /* 32 bit GOT entry */ +#define R_X86_64_PLT32 4 /* 32 bit PLT address */ +#define R_X86_64_COPY 5 /* Copy symbol at runtime */ +#define R_X86_64_GLOB_DAT 6 /* Create GOT entry */ +#define R_X86_64_JUMP_SLOT 7 /* Create PLT entry */ +#define R_X86_64_RELATIVE 8 /* Adjust by program base */ +#define R_X86_64_GOTPCREL 9 /* 32 bit signed PC relative + offset to GOT */ +#define R_X86_64_32 10 /* Direct 32 bit zero extended */ +#define R_X86_64_32S 11 /* Direct 32 bit sign extended */ +#define R_X86_64_16 12 /* Direct 16 bit zero extended */ +#define R_X86_64_PC16 13 /* 16 bit sign extended pc relative */ +#define R_X86_64_8 14 /* Direct 8 bit sign extended */ +#define R_X86_64_PC8 15 /* 8 bit sign extended pc relative */ +#define R_X86_64_DTPMOD64 16 /* ID of module containing symbol */ +#define R_X86_64_DTPOFF64 17 /* Offset in module's TLS block */ +#define R_X86_64_TPOFF64 18 /* Offset in initial TLS block */ +#define R_X86_64_TLSGD 19 /* 32 bit signed PC relative offset + to two GOT entries for GD symbol */ +#define R_X86_64_TLSLD 20 /* 32 bit signed PC relative offset + to two GOT entries for LD symbol */ +#define R_X86_64_DTPOFF32 21 /* Offset in TLS block */ +#define R_X86_64_GOTTPOFF 22 /* 32 bit signed PC relative offset + to GOT entry for IE symbol */ +#define R_X86_64_TPOFF32 23 /* Offset in initial TLS block */ +#define R_X86_64_PC64 24 /* PC relative 64 bit */ +#define R_X86_64_GOTOFF64 25 /* 64 bit offset to GOT */ +#define R_X86_64_GOTPC32 26 /* 32 bit signed pc relative + offset to GOT */ +#define R_X86_64_GOT64 27 /* 64-bit GOT entry offset */ +#define R_X86_64_GOTPCREL64 28 /* 64-bit PC relative offset + to GOT entry */ +#define R_X86_64_GOTPC64 29 /* 64-bit PC relative offset to GOT */ +#define R_X86_64_GOTPLT64 30 /* like GOT64, says PLT entry needed */ +#define R_X86_64_PLTOFF64 31 /* 64-bit GOT relative offset + to PLT entry */ +#define R_X86_64_SIZE32 32 /* Size of symbol plus 32-bit addend */ +#define R_X86_64_SIZE64 33 /* Size of symbol plus 64-bit addend */ +#define R_X86_64_GOTPC32_TLSDESC 34 /* GOT offset for TLS descriptor. */ +#define R_X86_64_TLSDESC_CALL 35 /* Marker for call through TLS + descriptor. */ +#define R_X86_64_TLSDESC 36 /* TLS descriptor. */ +#define R_X86_64_IRELATIVE 37 /* Adjust indirectly by program base */ +#define R_X86_64_RELATIVE64 38 /* 64-bit adjust by program base */ + /* 39 Reserved was R_X86_64_PC32_BND */ + /* 40 Reserved was R_X86_64_PLT32_BND */ +#define R_X86_64_GOTPCRELX 41 /* Load from 32 bit signed pc relative + offset to GOT entry without REX + prefix, relaxable. */ +#define R_X86_64_REX_GOTPCRELX 42 /* Load from 32 bit signed pc relative + offset to GOT entry with REX prefix, + relaxable. */ +#define R_X86_64_NUM 43 + + + /* AM33 relocations. */ +#define R_MN10300_NONE 0 /* No reloc. */ +#define R_MN10300_32 1 /* Direct 32 bit. */ +#define R_MN10300_16 2 /* Direct 16 bit. */ +#define R_MN10300_8 3 /* Direct 8 bit. */ +#define R_MN10300_PCREL32 4 /* PC-relative 32-bit. */ +#define R_MN10300_PCREL16 5 /* PC-relative 16-bit signed. */ +#define R_MN10300_PCREL8 6 /* PC-relative 8-bit signed. */ +#define R_MN10300_GNU_VTINHERIT 7 /* Ancient C++ vtable garbage... */ +#define R_MN10300_GNU_VTENTRY 8 /* ... collection annotation. */ +#define R_MN10300_24 9 /* Direct 24 bit. */ +#define R_MN10300_GOTPC32 10 /* 32-bit PCrel offset to GOT. */ +#define R_MN10300_GOTPC16 11 /* 16-bit PCrel offset to GOT. */ +#define R_MN10300_GOTOFF32 12 /* 32-bit offset from GOT. */ +#define R_MN10300_GOTOFF24 13 /* 24-bit offset from GOT. */ +#define R_MN10300_GOTOFF16 14 /* 16-bit offset from GOT. */ +#define R_MN10300_PLT32 15 /* 32-bit PCrel to PLT entry. */ +#define R_MN10300_PLT16 16 /* 16-bit PCrel to PLT entry. */ +#define R_MN10300_GOT32 17 /* 32-bit offset to GOT entry. */ +#define R_MN10300_GOT24 18 /* 24-bit offset to GOT entry. */ +#define R_MN10300_GOT16 19 /* 16-bit offset to GOT entry. */ +#define R_MN10300_COPY 20 /* Copy symbol at runtime. */ +#define R_MN10300_GLOB_DAT 21 /* Create GOT entry. */ +#define R_MN10300_JMP_SLOT 22 /* Create PLT entry. */ +#define R_MN10300_RELATIVE 23 /* Adjust by program base. */ +#define R_MN10300_TLS_GD 24 /* 32-bit offset for global dynamic. */ +#define R_MN10300_TLS_LD 25 /* 32-bit offset for local dynamic. */ +#define R_MN10300_TLS_LDO 26 /* Module-relative offset. */ +#define R_MN10300_TLS_GOTIE 27 /* GOT offset for static TLS block + offset. */ +#define R_MN10300_TLS_IE 28 /* GOT address for static TLS block + offset. */ +#define R_MN10300_TLS_LE 29 /* Offset relative to static TLS + block. */ +#define R_MN10300_TLS_DTPMOD 30 /* ID of module containing symbol. */ +#define R_MN10300_TLS_DTPOFF 31 /* Offset in module TLS block. */ +#define R_MN10300_TLS_TPOFF 32 /* Offset in static TLS block. */ +#define R_MN10300_SYM_DIFF 33 /* Adjustment for next reloc as needed + by linker relaxation. */ +#define R_MN10300_ALIGN 34 /* Alignment requirement for linker + relaxation. */ +#define R_MN10300_NUM 35 + + + /* M32R relocs. */ +#define R_M32R_NONE 0 /* No reloc. */ +#define R_M32R_16 1 /* Direct 16 bit. */ +#define R_M32R_32 2 /* Direct 32 bit. */ +#define R_M32R_24 3 /* Direct 24 bit. */ +#define R_M32R_10_PCREL 4 /* PC relative 10 bit shifted. */ +#define R_M32R_18_PCREL 5 /* PC relative 18 bit shifted. */ +#define R_M32R_26_PCREL 6 /* PC relative 26 bit shifted. */ +#define R_M32R_HI16_ULO 7 /* High 16 bit with unsigned low. */ +#define R_M32R_HI16_SLO 8 /* High 16 bit with signed low. */ +#define R_M32R_LO16 9 /* Low 16 bit. */ +#define R_M32R_SDA16 10 /* 16 bit offset in SDA. */ +#define R_M32R_GNU_VTINHERIT 11 +#define R_M32R_GNU_VTENTRY 12 +/* M32R relocs use SHT_RELA. */ +#define R_M32R_16_RELA 33 /* Direct 16 bit. */ +#define R_M32R_32_RELA 34 /* Direct 32 bit. */ +#define R_M32R_24_RELA 35 /* Direct 24 bit. */ +#define R_M32R_10_PCREL_RELA 36 /* PC relative 10 bit shifted. */ +#define R_M32R_18_PCREL_RELA 37 /* PC relative 18 bit shifted. */ +#define R_M32R_26_PCREL_RELA 38 /* PC relative 26 bit shifted. */ +#define R_M32R_HI16_ULO_RELA 39 /* High 16 bit with unsigned low */ +#define R_M32R_HI16_SLO_RELA 40 /* High 16 bit with signed low */ +#define R_M32R_LO16_RELA 41 /* Low 16 bit */ +#define R_M32R_SDA16_RELA 42 /* 16 bit offset in SDA */ +#define R_M32R_RELA_GNU_VTINHERIT 43 +#define R_M32R_RELA_GNU_VTENTRY 44 +#define R_M32R_REL32 45 /* PC relative 32 bit. */ + +#define R_M32R_GOT24 48 /* 24 bit GOT entry */ +#define R_M32R_26_PLTREL 49 /* 26 bit PC relative to PLT shifted */ +#define R_M32R_COPY 50 /* Copy symbol at runtime */ +#define R_M32R_GLOB_DAT 51 /* Create GOT entry */ +#define R_M32R_JMP_SLOT 52 /* Create PLT entry */ +#define R_M32R_RELATIVE 53 /* Adjust by program base */ +#define R_M32R_GOTOFF 54 /* 24 bit offset to GOT */ +#define R_M32R_GOTPC24 55 /* 24 bit PC relative offset to GOT */ +#define R_M32R_GOT16_HI_ULO 56 /* High 16 bit GOT entry with unsigned + low */ +#define R_M32R_GOT16_HI_SLO 57 /* High 16 bit GOT entry with signed + low */ +#define R_M32R_GOT16_LO 58 /* Low 16 bit GOT entry */ +#define R_M32R_GOTPC_HI_ULO 59 /* High 16 bit PC relative offset to + GOT with unsigned low */ +#define R_M32R_GOTPC_HI_SLO 60 /* High 16 bit PC relative offset to + GOT with signed low */ +#define R_M32R_GOTPC_LO 61 /* Low 16 bit PC relative offset to + GOT */ +#define R_M32R_GOTOFF_HI_ULO 62 /* High 16 bit offset to GOT + with unsigned low */ +#define R_M32R_GOTOFF_HI_SLO 63 /* High 16 bit offset to GOT + with signed low */ +#define R_M32R_GOTOFF_LO 64 /* Low 16 bit offset to GOT */ +#define R_M32R_NUM 256 /* Keep this the last entry. */ + + /* MicroBlaze relocations */ +#define R_MICROBLAZE_NONE 0 /* No reloc. */ +#define R_MICROBLAZE_32 1 /* Direct 32 bit. */ +#define R_MICROBLAZE_32_PCREL 2 /* PC relative 32 bit. */ +#define R_MICROBLAZE_64_PCREL 3 /* PC relative 64 bit. */ +#define R_MICROBLAZE_32_PCREL_LO 4 /* Low 16 bits of PCREL32. */ +#define R_MICROBLAZE_64 5 /* Direct 64 bit. */ +#define R_MICROBLAZE_32_LO 6 /* Low 16 bit. */ +#define R_MICROBLAZE_SRO32 7 /* Read-only small data area. */ +#define R_MICROBLAZE_SRW32 8 /* Read-write small data area. */ +#define R_MICROBLAZE_64_NONE 9 /* No reloc. */ +#define R_MICROBLAZE_32_SYM_OP_SYM 10 /* Symbol Op Symbol relocation. */ +#define R_MICROBLAZE_GNU_VTINHERIT 11 /* GNU C++ vtable hierarchy. */ +#define R_MICROBLAZE_GNU_VTENTRY 12 /* GNU C++ vtable member usage. */ +#define R_MICROBLAZE_GOTPC_64 13 /* PC-relative GOT offset. */ +#define R_MICROBLAZE_GOT_64 14 /* GOT entry offset. */ +#define R_MICROBLAZE_PLT_64 15 /* PLT offset (PC-relative). */ +#define R_MICROBLAZE_REL 16 /* Adjust by program base. */ +#define R_MICROBLAZE_JUMP_SLOT 17 /* Create PLT entry. */ +#define R_MICROBLAZE_GLOB_DAT 18 /* Create GOT entry. */ +#define R_MICROBLAZE_GOTOFF_64 19 /* 64 bit offset to GOT. */ +#define R_MICROBLAZE_GOTOFF_32 20 /* 32 bit offset to GOT. */ +#define R_MICROBLAZE_COPY 21 /* Runtime copy. */ +#define R_MICROBLAZE_TLS 22 /* TLS Reloc. */ +#define R_MICROBLAZE_TLSGD 23 /* TLS General Dynamic. */ +#define R_MICROBLAZE_TLSLD 24 /* TLS Local Dynamic. */ +#define R_MICROBLAZE_TLSDTPMOD32 25 /* TLS Module ID. */ +#define R_MICROBLAZE_TLSDTPREL32 26 /* TLS Offset Within TLS Block. */ +#define R_MICROBLAZE_TLSDTPREL64 27 /* TLS Offset Within TLS Block. */ +#define R_MICROBLAZE_TLSGOTTPREL32 28 /* TLS Offset From Thread Pointer. */ +#define R_MICROBLAZE_TLSTPREL32 29 /* TLS Offset From Thread Pointer. */ + +/* Legal values for d_tag (dynamic entry type). */ +#define DT_NIOS2_GP 0x70000002 /* Address of _gp. */ + +/* Nios II relocations. */ +#define R_NIOS2_NONE 0 /* No reloc. */ +#define R_NIOS2_S16 1 /* Direct signed 16 bit. */ +#define R_NIOS2_U16 2 /* Direct unsigned 16 bit. */ +#define R_NIOS2_PCREL16 3 /* PC relative 16 bit. */ +#define R_NIOS2_CALL26 4 /* Direct call. */ +#define R_NIOS2_IMM5 5 /* 5 bit constant expression. */ +#define R_NIOS2_CACHE_OPX 6 /* 5 bit expression, shift 22. */ +#define R_NIOS2_IMM6 7 /* 6 bit constant expression. */ +#define R_NIOS2_IMM8 8 /* 8 bit constant expression. */ +#define R_NIOS2_HI16 9 /* High 16 bit. */ +#define R_NIOS2_LO16 10 /* Low 16 bit. */ +#define R_NIOS2_HIADJ16 11 /* High 16 bit, adjusted. */ +#define R_NIOS2_BFD_RELOC_32 12 /* 32 bit symbol value + addend. */ +#define R_NIOS2_BFD_RELOC_16 13 /* 16 bit symbol value + addend. */ +#define R_NIOS2_BFD_RELOC_8 14 /* 8 bit symbol value + addend. */ +#define R_NIOS2_GPREL 15 /* 16 bit GP pointer offset. */ +#define R_NIOS2_GNU_VTINHERIT 16 /* GNU C++ vtable hierarchy. */ +#define R_NIOS2_GNU_VTENTRY 17 /* GNU C++ vtable member usage. */ +#define R_NIOS2_UJMP 18 /* Unconditional branch. */ +#define R_NIOS2_CJMP 19 /* Conditional branch. */ +#define R_NIOS2_CALLR 20 /* Indirect call through register. */ +#define R_NIOS2_ALIGN 21 /* Alignment requirement for + linker relaxation. */ +#define R_NIOS2_GOT16 22 /* 16 bit GOT entry. */ +#define R_NIOS2_CALL16 23 /* 16 bit GOT entry for function. */ +#define R_NIOS2_GOTOFF_LO 24 /* %lo of offset to GOT pointer. */ +#define R_NIOS2_GOTOFF_HA 25 /* %hiadj of offset to GOT pointer. */ +#define R_NIOS2_PCREL_LO 26 /* %lo of PC relative offset. */ +#define R_NIOS2_PCREL_HA 27 /* %hiadj of PC relative offset. */ +#define R_NIOS2_TLS_GD16 28 /* 16 bit GOT offset for TLS GD. */ +#define R_NIOS2_TLS_LDM16 29 /* 16 bit GOT offset for TLS LDM. */ +#define R_NIOS2_TLS_LDO16 30 /* 16 bit module relative offset. */ +#define R_NIOS2_TLS_IE16 31 /* 16 bit GOT offset for TLS IE. */ +#define R_NIOS2_TLS_LE16 32 /* 16 bit LE TP-relative offset. */ +#define R_NIOS2_TLS_DTPMOD 33 /* Module number. */ +#define R_NIOS2_TLS_DTPREL 34 /* Module-relative offset. */ +#define R_NIOS2_TLS_TPREL 35 /* TP-relative offset. */ +#define R_NIOS2_COPY 36 /* Copy symbol at runtime. */ +#define R_NIOS2_GLOB_DAT 37 /* Create GOT entry. */ +#define R_NIOS2_JUMP_SLOT 38 /* Create PLT entry. */ +#define R_NIOS2_RELATIVE 39 /* Adjust by program base. */ +#define R_NIOS2_GOTOFF 40 /* 16 bit offset to GOT pointer. */ +#define R_NIOS2_CALL26_NOAT 41 /* Direct call in .noat section. */ +#define R_NIOS2_GOT_LO 42 /* %lo() of GOT entry. */ +#define R_NIOS2_GOT_HA 43 /* %hiadj() of GOT entry. */ +#define R_NIOS2_CALL_LO 44 /* %lo() of function GOT entry. */ +#define R_NIOS2_CALL_HA 45 /* %hiadj() of function GOT entry. */ + + /* TILEPro relocations. */ +#define R_TILEPRO_NONE 0 /* No reloc */ +#define R_TILEPRO_32 1 /* Direct 32 bit */ +#define R_TILEPRO_16 2 /* Direct 16 bit */ +#define R_TILEPRO_8 3 /* Direct 8 bit */ +#define R_TILEPRO_32_PCREL 4 /* PC relative 32 bit */ +#define R_TILEPRO_16_PCREL 5 /* PC relative 16 bit */ +#define R_TILEPRO_8_PCREL 6 /* PC relative 8 bit */ +#define R_TILEPRO_LO16 7 /* Low 16 bit */ +#define R_TILEPRO_HI16 8 /* High 16 bit */ +#define R_TILEPRO_HA16 9 /* High 16 bit, adjusted */ +#define R_TILEPRO_COPY 10 /* Copy relocation */ +#define R_TILEPRO_GLOB_DAT 11 /* Create GOT entry */ +#define R_TILEPRO_JMP_SLOT 12 /* Create PLT entry */ +#define R_TILEPRO_RELATIVE 13 /* Adjust by program base */ +#define R_TILEPRO_BROFF_X1 14 /* X1 pipe branch offset */ +#define R_TILEPRO_JOFFLONG_X1 15 /* X1 pipe jump offset */ +#define R_TILEPRO_JOFFLONG_X1_PLT 16 /* X1 pipe jump offset to PLT */ +#define R_TILEPRO_IMM8_X0 17 /* X0 pipe 8-bit */ +#define R_TILEPRO_IMM8_Y0 18 /* Y0 pipe 8-bit */ +#define R_TILEPRO_IMM8_X1 19 /* X1 pipe 8-bit */ +#define R_TILEPRO_IMM8_Y1 20 /* Y1 pipe 8-bit */ +#define R_TILEPRO_MT_IMM15_X1 21 /* X1 pipe mtspr */ +#define R_TILEPRO_MF_IMM15_X1 22 /* X1 pipe mfspr */ +#define R_TILEPRO_IMM16_X0 23 /* X0 pipe 16-bit */ +#define R_TILEPRO_IMM16_X1 24 /* X1 pipe 16-bit */ +#define R_TILEPRO_IMM16_X0_LO 25 /* X0 pipe low 16-bit */ +#define R_TILEPRO_IMM16_X1_LO 26 /* X1 pipe low 16-bit */ +#define R_TILEPRO_IMM16_X0_HI 27 /* X0 pipe high 16-bit */ +#define R_TILEPRO_IMM16_X1_HI 28 /* X1 pipe high 16-bit */ +#define R_TILEPRO_IMM16_X0_HA 29 /* X0 pipe high 16-bit, adjusted */ +#define R_TILEPRO_IMM16_X1_HA 30 /* X1 pipe high 16-bit, adjusted */ +#define R_TILEPRO_IMM16_X0_PCREL 31 /* X0 pipe PC relative 16 bit */ +#define R_TILEPRO_IMM16_X1_PCREL 32 /* X1 pipe PC relative 16 bit */ +#define R_TILEPRO_IMM16_X0_LO_PCREL 33 /* X0 pipe PC relative low 16 bit */ +#define R_TILEPRO_IMM16_X1_LO_PCREL 34 /* X1 pipe PC relative low 16 bit */ +#define R_TILEPRO_IMM16_X0_HI_PCREL 35 /* X0 pipe PC relative high 16 bit */ +#define R_TILEPRO_IMM16_X1_HI_PCREL 36 /* X1 pipe PC relative high 16 bit */ +#define R_TILEPRO_IMM16_X0_HA_PCREL 37 /* X0 pipe PC relative ha() 16 bit */ +#define R_TILEPRO_IMM16_X1_HA_PCREL 38 /* X1 pipe PC relative ha() 16 bit */ +#define R_TILEPRO_IMM16_X0_GOT 39 /* X0 pipe 16-bit GOT offset */ +#define R_TILEPRO_IMM16_X1_GOT 40 /* X1 pipe 16-bit GOT offset */ +#define R_TILEPRO_IMM16_X0_GOT_LO 41 /* X0 pipe low 16-bit GOT offset */ +#define R_TILEPRO_IMM16_X1_GOT_LO 42 /* X1 pipe low 16-bit GOT offset */ +#define R_TILEPRO_IMM16_X0_GOT_HI 43 /* X0 pipe high 16-bit GOT offset */ +#define R_TILEPRO_IMM16_X1_GOT_HI 44 /* X1 pipe high 16-bit GOT offset */ +#define R_TILEPRO_IMM16_X0_GOT_HA 45 /* X0 pipe ha() 16-bit GOT offset */ +#define R_TILEPRO_IMM16_X1_GOT_HA 46 /* X1 pipe ha() 16-bit GOT offset */ +#define R_TILEPRO_MMSTART_X0 47 /* X0 pipe mm "start" */ +#define R_TILEPRO_MMEND_X0 48 /* X0 pipe mm "end" */ +#define R_TILEPRO_MMSTART_X1 49 /* X1 pipe mm "start" */ +#define R_TILEPRO_MMEND_X1 50 /* X1 pipe mm "end" */ +#define R_TILEPRO_SHAMT_X0 51 /* X0 pipe shift amount */ +#define R_TILEPRO_SHAMT_X1 52 /* X1 pipe shift amount */ +#define R_TILEPRO_SHAMT_Y0 53 /* Y0 pipe shift amount */ +#define R_TILEPRO_SHAMT_Y1 54 /* Y1 pipe shift amount */ +#define R_TILEPRO_DEST_IMM8_X1 55 /* X1 pipe destination 8-bit */ +/* Relocs 56-59 are currently not defined. */ +#define R_TILEPRO_TLS_GD_CALL 60 /* "jal" for TLS GD */ +#define R_TILEPRO_IMM8_X0_TLS_GD_ADD 61 /* X0 pipe "addi" for TLS GD */ +#define R_TILEPRO_IMM8_X1_TLS_GD_ADD 62 /* X1 pipe "addi" for TLS GD */ +#define R_TILEPRO_IMM8_Y0_TLS_GD_ADD 63 /* Y0 pipe "addi" for TLS GD */ +#define R_TILEPRO_IMM8_Y1_TLS_GD_ADD 64 /* Y1 pipe "addi" for TLS GD */ +#define R_TILEPRO_TLS_IE_LOAD 65 /* "lw_tls" for TLS IE */ +#define R_TILEPRO_IMM16_X0_TLS_GD 66 /* X0 pipe 16-bit TLS GD offset */ +#define R_TILEPRO_IMM16_X1_TLS_GD 67 /* X1 pipe 16-bit TLS GD offset */ +#define R_TILEPRO_IMM16_X0_TLS_GD_LO 68 /* X0 pipe low 16-bit TLS GD offset */ +#define R_TILEPRO_IMM16_X1_TLS_GD_LO 69 /* X1 pipe low 16-bit TLS GD offset */ +#define R_TILEPRO_IMM16_X0_TLS_GD_HI 70 /* X0 pipe high 16-bit TLS GD offset */ +#define R_TILEPRO_IMM16_X1_TLS_GD_HI 71 /* X1 pipe high 16-bit TLS GD offset */ +#define R_TILEPRO_IMM16_X0_TLS_GD_HA 72 /* X0 pipe ha() 16-bit TLS GD offset */ +#define R_TILEPRO_IMM16_X1_TLS_GD_HA 73 /* X1 pipe ha() 16-bit TLS GD offset */ +#define R_TILEPRO_IMM16_X0_TLS_IE 74 /* X0 pipe 16-bit TLS IE offset */ +#define R_TILEPRO_IMM16_X1_TLS_IE 75 /* X1 pipe 16-bit TLS IE offset */ +#define R_TILEPRO_IMM16_X0_TLS_IE_LO 76 /* X0 pipe low 16-bit TLS IE offset */ +#define R_TILEPRO_IMM16_X1_TLS_IE_LO 77 /* X1 pipe low 16-bit TLS IE offset */ +#define R_TILEPRO_IMM16_X0_TLS_IE_HI 78 /* X0 pipe high 16-bit TLS IE offset */ +#define R_TILEPRO_IMM16_X1_TLS_IE_HI 79 /* X1 pipe high 16-bit TLS IE offset */ +#define R_TILEPRO_IMM16_X0_TLS_IE_HA 80 /* X0 pipe ha() 16-bit TLS IE offset */ +#define R_TILEPRO_IMM16_X1_TLS_IE_HA 81 /* X1 pipe ha() 16-bit TLS IE offset */ +#define R_TILEPRO_TLS_DTPMOD32 82 /* ID of module containing symbol */ +#define R_TILEPRO_TLS_DTPOFF32 83 /* Offset in TLS block */ +#define R_TILEPRO_TLS_TPOFF32 84 /* Offset in static TLS block */ +#define R_TILEPRO_IMM16_X0_TLS_LE 85 /* X0 pipe 16-bit TLS LE offset */ +#define R_TILEPRO_IMM16_X1_TLS_LE 86 /* X1 pipe 16-bit TLS LE offset */ +#define R_TILEPRO_IMM16_X0_TLS_LE_LO 87 /* X0 pipe low 16-bit TLS LE offset */ +#define R_TILEPRO_IMM16_X1_TLS_LE_LO 88 /* X1 pipe low 16-bit TLS LE offset */ +#define R_TILEPRO_IMM16_X0_TLS_LE_HI 89 /* X0 pipe high 16-bit TLS LE offset */ +#define R_TILEPRO_IMM16_X1_TLS_LE_HI 90 /* X1 pipe high 16-bit TLS LE offset */ +#define R_TILEPRO_IMM16_X0_TLS_LE_HA 91 /* X0 pipe ha() 16-bit TLS LE offset */ +#define R_TILEPRO_IMM16_X1_TLS_LE_HA 92 /* X1 pipe ha() 16-bit TLS LE offset */ + +#define R_TILEPRO_GNU_VTINHERIT 128 /* GNU C++ vtable hierarchy */ +#define R_TILEPRO_GNU_VTENTRY 129 /* GNU C++ vtable member usage */ + +#define R_TILEPRO_NUM 130 + + +/* TILE-Gx relocations. */ +#define R_TILEGX_NONE 0 /* No reloc */ +#define R_TILEGX_64 1 /* Direct 64 bit */ +#define R_TILEGX_32 2 /* Direct 32 bit */ +#define R_TILEGX_16 3 /* Direct 16 bit */ +#define R_TILEGX_8 4 /* Direct 8 bit */ +#define R_TILEGX_64_PCREL 5 /* PC relative 64 bit */ +#define R_TILEGX_32_PCREL 6 /* PC relative 32 bit */ +#define R_TILEGX_16_PCREL 7 /* PC relative 16 bit */ +#define R_TILEGX_8_PCREL 8 /* PC relative 8 bit */ +#define R_TILEGX_HW0 9 /* hword 0 16-bit */ +#define R_TILEGX_HW1 10 /* hword 1 16-bit */ +#define R_TILEGX_HW2 11 /* hword 2 16-bit */ +#define R_TILEGX_HW3 12 /* hword 3 16-bit */ +#define R_TILEGX_HW0_LAST 13 /* last hword 0 16-bit */ +#define R_TILEGX_HW1_LAST 14 /* last hword 1 16-bit */ +#define R_TILEGX_HW2_LAST 15 /* last hword 2 16-bit */ +#define R_TILEGX_COPY 16 /* Copy relocation */ +#define R_TILEGX_GLOB_DAT 17 /* Create GOT entry */ +#define R_TILEGX_JMP_SLOT 18 /* Create PLT entry */ +#define R_TILEGX_RELATIVE 19 /* Adjust by program base */ +#define R_TILEGX_BROFF_X1 20 /* X1 pipe branch offset */ +#define R_TILEGX_JUMPOFF_X1 21 /* X1 pipe jump offset */ +#define R_TILEGX_JUMPOFF_X1_PLT 22 /* X1 pipe jump offset to PLT */ +#define R_TILEGX_IMM8_X0 23 /* X0 pipe 8-bit */ +#define R_TILEGX_IMM8_Y0 24 /* Y0 pipe 8-bit */ +#define R_TILEGX_IMM8_X1 25 /* X1 pipe 8-bit */ +#define R_TILEGX_IMM8_Y1 26 /* Y1 pipe 8-bit */ +#define R_TILEGX_DEST_IMM8_X1 27 /* X1 pipe destination 8-bit */ +#define R_TILEGX_MT_IMM14_X1 28 /* X1 pipe mtspr */ +#define R_TILEGX_MF_IMM14_X1 29 /* X1 pipe mfspr */ +#define R_TILEGX_MMSTART_X0 30 /* X0 pipe mm "start" */ +#define R_TILEGX_MMEND_X0 31 /* X0 pipe mm "end" */ +#define R_TILEGX_SHAMT_X0 32 /* X0 pipe shift amount */ +#define R_TILEGX_SHAMT_X1 33 /* X1 pipe shift amount */ +#define R_TILEGX_SHAMT_Y0 34 /* Y0 pipe shift amount */ +#define R_TILEGX_SHAMT_Y1 35 /* Y1 pipe shift amount */ +#define R_TILEGX_IMM16_X0_HW0 36 /* X0 pipe hword 0 */ +#define R_TILEGX_IMM16_X1_HW0 37 /* X1 pipe hword 0 */ +#define R_TILEGX_IMM16_X0_HW1 38 /* X0 pipe hword 1 */ +#define R_TILEGX_IMM16_X1_HW1 39 /* X1 pipe hword 1 */ +#define R_TILEGX_IMM16_X0_HW2 40 /* X0 pipe hword 2 */ +#define R_TILEGX_IMM16_X1_HW2 41 /* X1 pipe hword 2 */ +#define R_TILEGX_IMM16_X0_HW3 42 /* X0 pipe hword 3 */ +#define R_TILEGX_IMM16_X1_HW3 43 /* X1 pipe hword 3 */ +#define R_TILEGX_IMM16_X0_HW0_LAST 44 /* X0 pipe last hword 0 */ +#define R_TILEGX_IMM16_X1_HW0_LAST 45 /* X1 pipe last hword 0 */ +#define R_TILEGX_IMM16_X0_HW1_LAST 46 /* X0 pipe last hword 1 */ +#define R_TILEGX_IMM16_X1_HW1_LAST 47 /* X1 pipe last hword 1 */ +#define R_TILEGX_IMM16_X0_HW2_LAST 48 /* X0 pipe last hword 2 */ +#define R_TILEGX_IMM16_X1_HW2_LAST 49 /* X1 pipe last hword 2 */ +#define R_TILEGX_IMM16_X0_HW0_PCREL 50 /* X0 pipe PC relative hword 0 */ +#define R_TILEGX_IMM16_X1_HW0_PCREL 51 /* X1 pipe PC relative hword 0 */ +#define R_TILEGX_IMM16_X0_HW1_PCREL 52 /* X0 pipe PC relative hword 1 */ +#define R_TILEGX_IMM16_X1_HW1_PCREL 53 /* X1 pipe PC relative hword 1 */ +#define R_TILEGX_IMM16_X0_HW2_PCREL 54 /* X0 pipe PC relative hword 2 */ +#define R_TILEGX_IMM16_X1_HW2_PCREL 55 /* X1 pipe PC relative hword 2 */ +#define R_TILEGX_IMM16_X0_HW3_PCREL 56 /* X0 pipe PC relative hword 3 */ +#define R_TILEGX_IMM16_X1_HW3_PCREL 57 /* X1 pipe PC relative hword 3 */ +#define R_TILEGX_IMM16_X0_HW0_LAST_PCREL 58 /* X0 pipe PC-rel last hword 0 */ +#define R_TILEGX_IMM16_X1_HW0_LAST_PCREL 59 /* X1 pipe PC-rel last hword 0 */ +#define R_TILEGX_IMM16_X0_HW1_LAST_PCREL 60 /* X0 pipe PC-rel last hword 1 */ +#define R_TILEGX_IMM16_X1_HW1_LAST_PCREL 61 /* X1 pipe PC-rel last hword 1 */ +#define R_TILEGX_IMM16_X0_HW2_LAST_PCREL 62 /* X0 pipe PC-rel last hword 2 */ +#define R_TILEGX_IMM16_X1_HW2_LAST_PCREL 63 /* X1 pipe PC-rel last hword 2 */ +#define R_TILEGX_IMM16_X0_HW0_GOT 64 /* X0 pipe hword 0 GOT offset */ +#define R_TILEGX_IMM16_X1_HW0_GOT 65 /* X1 pipe hword 0 GOT offset */ +#define R_TILEGX_IMM16_X0_HW0_PLT_PCREL 66 /* X0 pipe PC-rel PLT hword 0 */ +#define R_TILEGX_IMM16_X1_HW0_PLT_PCREL 67 /* X1 pipe PC-rel PLT hword 0 */ +#define R_TILEGX_IMM16_X0_HW1_PLT_PCREL 68 /* X0 pipe PC-rel PLT hword 1 */ +#define R_TILEGX_IMM16_X1_HW1_PLT_PCREL 69 /* X1 pipe PC-rel PLT hword 1 */ +#define R_TILEGX_IMM16_X0_HW2_PLT_PCREL 70 /* X0 pipe PC-rel PLT hword 2 */ +#define R_TILEGX_IMM16_X1_HW2_PLT_PCREL 71 /* X1 pipe PC-rel PLT hword 2 */ +#define R_TILEGX_IMM16_X0_HW0_LAST_GOT 72 /* X0 pipe last hword 0 GOT offset */ +#define R_TILEGX_IMM16_X1_HW0_LAST_GOT 73 /* X1 pipe last hword 0 GOT offset */ +#define R_TILEGX_IMM16_X0_HW1_LAST_GOT 74 /* X0 pipe last hword 1 GOT offset */ +#define R_TILEGX_IMM16_X1_HW1_LAST_GOT 75 /* X1 pipe last hword 1 GOT offset */ +#define R_TILEGX_IMM16_X0_HW3_PLT_PCREL 76 /* X0 pipe PC-rel PLT hword 3 */ +#define R_TILEGX_IMM16_X1_HW3_PLT_PCREL 77 /* X1 pipe PC-rel PLT hword 3 */ +#define R_TILEGX_IMM16_X0_HW0_TLS_GD 78 /* X0 pipe hword 0 TLS GD offset */ +#define R_TILEGX_IMM16_X1_HW0_TLS_GD 79 /* X1 pipe hword 0 TLS GD offset */ +#define R_TILEGX_IMM16_X0_HW0_TLS_LE 80 /* X0 pipe hword 0 TLS LE offset */ +#define R_TILEGX_IMM16_X1_HW0_TLS_LE 81 /* X1 pipe hword 0 TLS LE offset */ +#define R_TILEGX_IMM16_X0_HW0_LAST_TLS_LE 82 /* X0 pipe last hword 0 LE off */ +#define R_TILEGX_IMM16_X1_HW0_LAST_TLS_LE 83 /* X1 pipe last hword 0 LE off */ +#define R_TILEGX_IMM16_X0_HW1_LAST_TLS_LE 84 /* X0 pipe last hword 1 LE off */ +#define R_TILEGX_IMM16_X1_HW1_LAST_TLS_LE 85 /* X1 pipe last hword 1 LE off */ +#define R_TILEGX_IMM16_X0_HW0_LAST_TLS_GD 86 /* X0 pipe last hword 0 GD off */ +#define R_TILEGX_IMM16_X1_HW0_LAST_TLS_GD 87 /* X1 pipe last hword 0 GD off */ +#define R_TILEGX_IMM16_X0_HW1_LAST_TLS_GD 88 /* X0 pipe last hword 1 GD off */ +#define R_TILEGX_IMM16_X1_HW1_LAST_TLS_GD 89 /* X1 pipe last hword 1 GD off */ +/* Relocs 90-91 are currently not defined. */ +#define R_TILEGX_IMM16_X0_HW0_TLS_IE 92 /* X0 pipe hword 0 TLS IE offset */ +#define R_TILEGX_IMM16_X1_HW0_TLS_IE 93 /* X1 pipe hword 0 TLS IE offset */ +#define R_TILEGX_IMM16_X0_HW0_LAST_PLT_PCREL 94 /* X0 pipe PC-rel PLT last hword 0 */ +#define R_TILEGX_IMM16_X1_HW0_LAST_PLT_PCREL 95 /* X1 pipe PC-rel PLT last hword 0 */ +#define R_TILEGX_IMM16_X0_HW1_LAST_PLT_PCREL 96 /* X0 pipe PC-rel PLT last hword 1 */ +#define R_TILEGX_IMM16_X1_HW1_LAST_PLT_PCREL 97 /* X1 pipe PC-rel PLT last hword 1 */ +#define R_TILEGX_IMM16_X0_HW2_LAST_PLT_PCREL 98 /* X0 pipe PC-rel PLT last hword 2 */ +#define R_TILEGX_IMM16_X1_HW2_LAST_PLT_PCREL 99 /* X1 pipe PC-rel PLT last hword 2 */ +#define R_TILEGX_IMM16_X0_HW0_LAST_TLS_IE 100 /* X0 pipe last hword 0 IE off */ +#define R_TILEGX_IMM16_X1_HW0_LAST_TLS_IE 101 /* X1 pipe last hword 0 IE off */ +#define R_TILEGX_IMM16_X0_HW1_LAST_TLS_IE 102 /* X0 pipe last hword 1 IE off */ +#define R_TILEGX_IMM16_X1_HW1_LAST_TLS_IE 103 /* X1 pipe last hword 1 IE off */ +/* Relocs 104-105 are currently not defined. */ +#define R_TILEGX_TLS_DTPMOD64 106 /* 64-bit ID of symbol's module */ +#define R_TILEGX_TLS_DTPOFF64 107 /* 64-bit offset in TLS block */ +#define R_TILEGX_TLS_TPOFF64 108 /* 64-bit offset in static TLS block */ +#define R_TILEGX_TLS_DTPMOD32 109 /* 32-bit ID of symbol's module */ +#define R_TILEGX_TLS_DTPOFF32 110 /* 32-bit offset in TLS block */ +#define R_TILEGX_TLS_TPOFF32 111 /* 32-bit offset in static TLS block */ +#define R_TILEGX_TLS_GD_CALL 112 /* "jal" for TLS GD */ +#define R_TILEGX_IMM8_X0_TLS_GD_ADD 113 /* X0 pipe "addi" for TLS GD */ +#define R_TILEGX_IMM8_X1_TLS_GD_ADD 114 /* X1 pipe "addi" for TLS GD */ +#define R_TILEGX_IMM8_Y0_TLS_GD_ADD 115 /* Y0 pipe "addi" for TLS GD */ +#define R_TILEGX_IMM8_Y1_TLS_GD_ADD 116 /* Y1 pipe "addi" for TLS GD */ +#define R_TILEGX_TLS_IE_LOAD 117 /* "ld_tls" for TLS IE */ +#define R_TILEGX_IMM8_X0_TLS_ADD 118 /* X0 pipe "addi" for TLS GD/IE */ +#define R_TILEGX_IMM8_X1_TLS_ADD 119 /* X1 pipe "addi" for TLS GD/IE */ +#define R_TILEGX_IMM8_Y0_TLS_ADD 120 /* Y0 pipe "addi" for TLS GD/IE */ +#define R_TILEGX_IMM8_Y1_TLS_ADD 121 /* Y1 pipe "addi" for TLS GD/IE */ + +#define R_TILEGX_GNU_VTINHERIT 128 /* GNU C++ vtable hierarchy */ +#define R_TILEGX_GNU_VTENTRY 129 /* GNU C++ vtable member usage */ + +#define R_TILEGX_NUM 130 + +/* BPF specific declarations. */ + +#define R_BPF_NONE 0 /* No reloc */ +#define R_BPF_MAP_FD 1 /* Map fd to pointer */ + +/* Imagination Meta specific relocations. */ + +#define R_METAG_HIADDR16 0 +#define R_METAG_LOADDR16 1 +#define R_METAG_ADDR32 2 /* 32bit absolute address */ +#define R_METAG_NONE 3 /* No reloc */ +#define R_METAG_RELBRANCH 4 +#define R_METAG_GETSETOFF 5 + +/* Backward compatability */ +#define R_METAG_REG32OP1 6 +#define R_METAG_REG32OP2 7 +#define R_METAG_REG32OP3 8 +#define R_METAG_REG16OP1 9 +#define R_METAG_REG16OP2 10 +#define R_METAG_REG16OP3 11 +#define R_METAG_REG32OP4 12 + +#define R_METAG_HIOG 13 +#define R_METAG_LOOG 14 + +#define R_METAG_REL8 15 +#define R_METAG_REL16 16 + +/* GNU */ +#define R_METAG_GNU_VTINHERIT 30 +#define R_METAG_GNU_VTENTRY 31 + +/* PIC relocations */ +#define R_METAG_HI16_GOTOFF 32 +#define R_METAG_LO16_GOTOFF 33 +#define R_METAG_GETSET_GOTOFF 34 +#define R_METAG_GETSET_GOT 35 +#define R_METAG_HI16_GOTPC 36 +#define R_METAG_LO16_GOTPC 37 +#define R_METAG_HI16_PLT 38 +#define R_METAG_LO16_PLT 39 +#define R_METAG_RELBRANCH_PLT 40 +#define R_METAG_GOTOFF 41 +#define R_METAG_PLT 42 +#define R_METAG_COPY 43 +#define R_METAG_JMP_SLOT 44 +#define R_METAG_RELATIVE 45 +#define R_METAG_GLOB_DAT 46 + +/* TLS relocations */ +#define R_METAG_TLS_GD 47 +#define R_METAG_TLS_LDM 48 +#define R_METAG_TLS_LDO_HI16 49 +#define R_METAG_TLS_LDO_LO16 50 +#define R_METAG_TLS_LDO 51 +#define R_METAG_TLS_IE 52 +#define R_METAG_TLS_IENONPIC 53 +#define R_METAG_TLS_IENONPIC_HI16 54 +#define R_METAG_TLS_IENONPIC_LO16 55 +#define R_METAG_TLS_TPOFF 56 +#define R_METAG_TLS_DTPMOD 57 +#define R_METAG_TLS_DTPOFF 58 +#define R_METAG_TLS_LE 59 +#define R_METAG_TLS_LE_HI16 60 +#define R_METAG_TLS_LE_LO16 61 + +/* +__END_DECLS +*/ + +#endif /* elf.h */ \ No newline at end of file diff --git a/DotsTheBee/stdafx.cpp b/DotsTheBee/stdafx.cpp new file mode 100644 index 0000000..08343af Binary files /dev/null and b/DotsTheBee/stdafx.cpp differ diff --git a/DotsTheBee/stdafx.h b/DotsTheBee/stdafx.h new file mode 100644 index 0000000..b74fd5d Binary files /dev/null and b/DotsTheBee/stdafx.h differ diff --git a/DotsTheBee/targetver.h b/DotsTheBee/targetver.h new file mode 100644 index 0000000..567cd34 Binary files /dev/null and b/DotsTheBee/targetver.h differ diff --git a/GayMaker-Studio.sln b/GayMaker-Studio.sln new file mode 100644 index 0000000..51a9b96 --- /dev/null +++ b/GayMaker-Studio.sln @@ -0,0 +1,54 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28010.2003 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GayMaker-Studio", "GayMaker-Studio\GayMaker-Studio.csproj", "{A574F9F8-D3B2-4EF6-80DE-5D546C43B57D}" + ProjectSection(ProjectDependencies) = postProject + {A37DD6C5-F166-496A-AC8A-4F70E42361F9} = {A37DD6C5-F166-496A-AC8A-4F70E42361F9} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DotsTheBee", "DotsTheBee\DotsTheBee.vcxproj", "{A37DD6C5-F166-496A-AC8A-4F70E42361F9}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A574F9F8-D3B2-4EF6-80DE-5D546C43B57D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A574F9F8-D3B2-4EF6-80DE-5D546C43B57D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A574F9F8-D3B2-4EF6-80DE-5D546C43B57D}.Debug|x64.ActiveCfg = Debug|Any CPU + {A574F9F8-D3B2-4EF6-80DE-5D546C43B57D}.Debug|x64.Build.0 = Debug|Any CPU + {A574F9F8-D3B2-4EF6-80DE-5D546C43B57D}.Debug|x86.ActiveCfg = Debug|Any CPU + {A574F9F8-D3B2-4EF6-80DE-5D546C43B57D}.Debug|x86.Build.0 = Debug|Any CPU + {A574F9F8-D3B2-4EF6-80DE-5D546C43B57D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A574F9F8-D3B2-4EF6-80DE-5D546C43B57D}.Release|Any CPU.Build.0 = Release|Any CPU + {A574F9F8-D3B2-4EF6-80DE-5D546C43B57D}.Release|x64.ActiveCfg = Release|Any CPU + {A574F9F8-D3B2-4EF6-80DE-5D546C43B57D}.Release|x64.Build.0 = Release|Any CPU + {A574F9F8-D3B2-4EF6-80DE-5D546C43B57D}.Release|x86.ActiveCfg = Release|Any CPU + {A574F9F8-D3B2-4EF6-80DE-5D546C43B57D}.Release|x86.Build.0 = Release|Any CPU + {A37DD6C5-F166-496A-AC8A-4F70E42361F9}.Debug|Any CPU.ActiveCfg = Debug|Win32 + {A37DD6C5-F166-496A-AC8A-4F70E42361F9}.Debug|Any CPU.Build.0 = Debug|Win32 + {A37DD6C5-F166-496A-AC8A-4F70E42361F9}.Debug|x64.ActiveCfg = Debug|x64 + {A37DD6C5-F166-496A-AC8A-4F70E42361F9}.Debug|x64.Build.0 = Debug|x64 + {A37DD6C5-F166-496A-AC8A-4F70E42361F9}.Debug|x86.ActiveCfg = Debug|Win32 + {A37DD6C5-F166-496A-AC8A-4F70E42361F9}.Debug|x86.Build.0 = Debug|Win32 + {A37DD6C5-F166-496A-AC8A-4F70E42361F9}.Release|Any CPU.ActiveCfg = Release|Win32 + {A37DD6C5-F166-496A-AC8A-4F70E42361F9}.Release|Any CPU.Build.0 = Release|Win32 + {A37DD6C5-F166-496A-AC8A-4F70E42361F9}.Release|x64.ActiveCfg = Release|x64 + {A37DD6C5-F166-496A-AC8A-4F70E42361F9}.Release|x64.Build.0 = Release|x64 + {A37DD6C5-F166-496A-AC8A-4F70E42361F9}.Release|x86.ActiveCfg = Release|Win32 + {A37DD6C5-F166-496A-AC8A-4F70E42361F9}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F5C9BDFB-D36B-4937-80EF-77A22E065856} + EndGlobalSection +EndGlobal diff --git a/GayMaker-Studio/CDN.cs b/GayMaker-Studio/CDN.cs new file mode 100644 index 0000000..884058d --- /dev/null +++ b/GayMaker-Studio/CDN.cs @@ -0,0 +1,188 @@ +using HtmlAgilityPack; +using Org.BouncyCastle.Crypto.Digests; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Net; +using System.Net.Cache; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace GMTools +{ + class CDNUrls + { + //GMS14 + public const String GMS14 = "http://store.yoyogames.com/downloads/gm-studio/update-studio.rss"; + public const String GMS14EA = "http://store.yoyogames.com/downloads/gm-studio-ea/update-studio-ea.rss"; + + //GMS2 + public const String GMS2 = "http://gms.yoyogames.com/Zeus-Runtime.rss"; + public const String GMS2Beta = "http://gms.yoyogames.com/Zeus-Runtime-Beta.rss"; + + + public static String FromIndex(int cdnIndex) + { + switch (cdnIndex) + { + case 1: + return CDNUrls.GMS14; + case 2: + return CDNUrls.GMS14EA; + case 3: + return CDNUrls.GMS2; + case 4: + return CDNUrls.GMS2Beta; + } + return "NF"; + } + + } + + class CDN + { + private static string xmlData = ""; + + private static string bypassAuthentication(string url) + { + if (url.StartsWith("https://updater.yoyogames.com") && !url.Contains("original")) + { + return "http://updatecdn.yoyogames.com/" + Path.GetFileName(url); + } + else + { + return url; + } + } + + private static string getOriginalUrl(string version) + { + if (version.StartsWith("1.")) + { + return "https://updater.yoyogames.com/api/download/original?filename=Original-" + version + ".zip"; + } + else if(version.StartsWith("2.")) + { + var doc = new HtmlAgilityPack.HtmlDocument(); + doc.LoadHtml(xmlData); + var versions = doc.DocumentNode.SelectNodes("/rss/channel/item/enclosure"); + foreach (HtmlNode ver in versions) + { + string verName = ver.GetAttributeValue("sparkle:version", "0.0.0.0"); + if (verName == version) + { + return ver.GetAttributeValue("url", "http://example.com/").ToString(); + } + } + } + return "NF"; + } + + + + + + public static void UseCDN(String CDN) + { + try + { + WebClient wc = new WebClient(); + wc.CachePolicy = new RequestCachePolicy(RequestCacheLevel.NoCacheNoStore); + xmlData = wc.DownloadString(CDN); + } + catch (Exception) + { + MessageBox.Show("Could not connect to: " + CDN, "Connection Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + + } + + public static String GetModuleForVersion(String Version, String Module) + { + + Module = Module.ToLower(); + + if (Module == "original") + return getOriginalUrl(Version); + + var doc = new HtmlAgilityPack.HtmlDocument(); + doc.LoadHtml(xmlData); + var versions = doc.DocumentNode.SelectNodes("/rss/channel/item/enclosure"); + + + foreach (HtmlNode version in versions) + { + string verName = version.GetAttributeValue("sparkle:version", "0.0.0.0"); + if (verName == Version) + { + var modules = version.Elements("module"); + foreach (var module in modules) + { + string moduleName = module.GetAttributeValue("name", "Original").ToLower(); + string moduleUrl = module.GetAttributeValue("url", "http://127.0.0.1"); + if (moduleName == Module) + { + return bypassAuthentication(moduleUrl); + } + } + } + + } + + + + return "NF"; // Not Found + } + + + public static String[] GetVersions(String Filter = "") + { + var doc = new HtmlAgilityPack.HtmlDocument(); + doc.LoadHtml(xmlData); + var versions = doc.DocumentNode.SelectNodes("/rss/channel/item/enclosure"); + + List verList = new List(); + + foreach (HtmlNode version in versions) + { + string versionName = version.GetAttributeValue("sparkle:version", "0.0.0.0"); + + if (Filter == "") + { + verList.Add(versionName); + } + else + { + if(GetModuleForVersion(versionName,Filter) != "NF") + { + verList.Add(versionName); + } + } + } + + return verList.ToArray(); + + } + + + public static String GetPassword(String ZipName) + { + if (ZipName.ToLower().StartsWith("original") || ZipName.ToLower().StartsWith("gmstudio")) + { + return "12#_p@o3w$ir_ADD-_$#"; + } + MD5Digest md5Digest = new MD5Digest(); + byte[] array = new byte[16]; + byte[] bytes = Encoding.UTF8.GetBytes("MRJA" + Path.GetFileName(ZipName) + "PHMD"); + md5Digest.Reset(); + md5Digest.BlockUpdate(bytes, 0, bytes.Length); + md5Digest.Finish(); + md5Digest.DoFinal(array, 0); + string password = Convert.ToBase64String(array); + return password; + } + + } +} diff --git a/GayMaker-Studio/DownloadingUpdate.Designer.cs b/GayMaker-Studio/DownloadingUpdate.Designer.cs new file mode 100644 index 0000000..434dcc9 --- /dev/null +++ b/GayMaker-Studio/DownloadingUpdate.Designer.cs @@ -0,0 +1,77 @@ +namespace GayMaker_Studio +{ + partial class DownloadingUpdate + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.DownloadProgress = new System.Windows.Forms.ProgressBar(); + this.label1 = new System.Windows.Forms.Label(); + this.SuspendLayout(); + // + // DownloadProgress + // + this.DownloadProgress.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.DownloadProgress.Location = new System.Drawing.Point(15, 44); + this.DownloadProgress.Name = "DownloadProgress"; + this.DownloadProgress.Size = new System.Drawing.Size(419, 23); + this.DownloadProgress.TabIndex = 0; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(12, 9); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(94, 13); + this.label1.TabIndex = 1; + this.label1.Text = "Starting Download"; + // + // DownloadingUpdate + // + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; + this.ClientSize = new System.Drawing.Size(443, 95); + this.ControlBox = false; + this.Controls.Add(this.label1); + this.Controls.Add(this.DownloadProgress); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "DownloadingUpdate"; + this.ShowIcon = false; + this.ShowInTaskbar = false; + this.Text = "Downloading Update"; + this.Load += new System.EventHandler(this.DownloadingUpdate_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.ProgressBar DownloadProgress; + private System.Windows.Forms.Label label1; + } +} \ No newline at end of file diff --git a/GayMaker-Studio/DownloadingUpdate.cs b/GayMaker-Studio/DownloadingUpdate.cs new file mode 100644 index 0000000..665689b --- /dev/null +++ b/GayMaker-Studio/DownloadingUpdate.cs @@ -0,0 +1,82 @@ +using System; +using System.ComponentModel; +using System.Drawing; +using System.IO; +using System.IO.Compression; +using System.Net; +using System.Net.Cache; +using System.Reflection; +using System.Windows.Forms; + + +namespace GayMaker_Studio +{ + public partial class DownloadingUpdate : Form + { + public DownloadingUpdate() + { + //Bypass Windows DPI Scaling + Font = new Font(Font.Name, 8.25f * 96f / CreateGraphics().DpiX, Font.Style, Font.Unit, Font.GdiCharSet, Font.GdiVerticalFont); + InitializeComponent(); + } + + private void startDownload() + { + WebClient wc = new WebClient(); + wc.CachePolicy = new RequestCachePolicy(RequestCacheLevel.NoCacheNoStore); + String UpdateString = wc.DownloadString("https://bitbucket.org/SilicaAndPina/gaymaker-studio/raw/master/latest.md"); + String[] Data = UpdateString.Split('~'); + String UpdateUrl = Data[1]; + wc.Dispose(); + + WebClient client = new WebClient(); + client.Headers.Add("pragma", "no-cache"); + + client.DownloadProgressChanged += new DownloadProgressChangedEventHandler(client_DownloadProgressChanged); + client.DownloadFileCompleted += new AsyncCompletedEventHandler(client_DownloadFileCompleted); + client.DownloadFileAsync(new Uri(UpdateUrl), "upgrade.zip"); + } + + private void client_DownloadFileCompleted(object sender, AsyncCompletedEventArgs e) + { + + label1.Text = "Extracting..."; + Application.DoEvents(); + + String EXEPath = Assembly.GetExecutingAssembly().Location; + + File.Move(EXEPath, Path.ChangeExtension(EXEPath, ".old")); + + ZipArchive archive = new ZipArchive(File.OpenRead("upgrade.zip")); + + foreach (ZipArchiveEntry file in archive.Entries) + { + if (File.Exists(file.FullName)) + { + File.Delete(file.FullName); + } + } + + archive.Dispose(); + + ZipFile.ExtractToDirectory("upgrade.zip", Path.GetDirectoryName(EXEPath)); + + File.Delete("upgrade.zip"); + + Application.Restart(); + + } + + private void client_DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e) + { + DownloadProgress.Value = e.ProgressPercentage; + label1.Text = "Downloading: " + e.ProgressPercentage + "%"; + } + + + private void DownloadingUpdate_Load(object sender, EventArgs e) + { + startDownload(); + } + } +} diff --git a/GayMaker-Studio/DownloadingUpdate.resx b/GayMaker-Studio/DownloadingUpdate.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/GayMaker-Studio/DownloadingUpdate.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/GayMaker-Studio/ElfTools.cs b/GayMaker-Studio/ElfTools.cs new file mode 100644 index 0000000..8f738c6 --- /dev/null +++ b/GayMaker-Studio/ElfTools.cs @@ -0,0 +1,30 @@ + + +using System; +using System.Diagnostics; +using System.IO; +using System.Runtime.InteropServices; + +namespace ELF +{ + class Tools + { + [DllImport("DotsTheBee.dll", SetLastError = true, CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] + public static extern int SceVerDown([MarshalAs(UnmanagedType.LPStr)]string ElfPath, UInt32 version); + + public static void MakeFself(string elf, string self) + { + Process makefself = new Process(); + makefself.StartInfo.FileName = @"make_fself\\make_fself.exe"; + makefself.StartInfo.Arguments = elf + " " + self; + makefself.StartInfo.UseShellExecute = false; + makefself.StartInfo.RedirectStandardOutput = true; + makefself.StartInfo.RedirectStandardError = true; + makefself.StartInfo.CreateNoWindow = true; + makefself.Start(); + makefself.WaitForExit(); + makefself.Dispose(); + File.Delete(elf); + } + } +} diff --git a/GayMaker-Studio/GMAC.cs b/GayMaker-Studio/GMAC.cs new file mode 100644 index 0000000..638d49c --- /dev/null +++ b/GayMaker-Studio/GMAC.cs @@ -0,0 +1,66 @@ +using System; +using System.Runtime.InteropServices; + +namespace GayMaker_Studio +{ + + class GMAC + { + public enum FileMapProtection : uint + { + PageReadonly = 0x02, + PageReadWrite = 0x04, + PageWriteCopy = 0x08, + PageExecuteRead = 0x20, + PageExecuteReadWrite = 0x40, + SectionCommit = 0x8000000, + SectionImage = 0x1000000, + SectionNoCache = 0x10000000, + SectionReserve = 0x4000000, + } + + public enum FileMapAccess : uint + { + FileMapCopy = 0x0001, + FileMapWrite = 0x0002, + FileMapRead = 0x0004, + FileMapReadWrite = 0x0006, + FileMapAllAccess = 0x001f, + FileMapExecute = 0x0020, + } + + [DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Auto)] + public static extern IntPtr CreateFileMapping( + IntPtr hFile, + IntPtr lpFileMappingAttributes, + FileMapProtection flProtect, + uint dwMaximumSizeHigh, + uint dwMaximumSizeLow, + string lpName + ); + + [DllImport("kernel32", SetLastError = true)] + public static extern IntPtr MapViewOfFile(IntPtr intptr_0, FileMapAccess dwDesiredAccess, int int_5, int int_6, IntPtr intptr_1); + + [DllImport("kernel32", CharSet = CharSet.Auto, SetLastError = true)] + public static extern IntPtr OpenFileMapping( + FileMapAccess dwDesiredAccess, + bool bInheritHandle, + string lpName + ); + + [DllImport("kernel32", SetLastError = true)] + public static extern bool CloseHandle(IntPtr intptr_0); + + public static void GetPermissionToExecute() + { + IntPtr Create = CreateFileMapping(new IntPtr(-1), IntPtr.Zero, FileMapProtection.PageReadWrite, 0x0, 0x1000, "YYMappingFileTestYY"); + IntPtr DaFile = OpenFileMapping(FileMapAccess.FileMapWrite, false, "YYMappingFileTestYY"); + IntPtr MapView = MapViewOfFile(DaFile, FileMapAccess.FileMapWrite, 0, 0, new IntPtr(4)); + + Marshal.WriteInt32(MapView, (int)(DateTime.Now - new DateTime(1970, 1, 1, 0, 0, 0)).TotalSeconds); + + CloseHandle(DaFile); + } + } +} diff --git a/GayMaker-Studio/GMLicense.cs b/GayMaker-Studio/GMLicense.cs new file mode 100644 index 0000000..54404f5 --- /dev/null +++ b/GayMaker-Studio/GMLicense.cs @@ -0,0 +1,150 @@ +/* + * In GMS2 they made the GMAssetCompiler verify your license file + * It uses RSA to do it + * ... and then they added the option to specify your own keys + * good fucking job + */ + +using Org.BouncyCastle.Crypto.Encodings; +using Org.BouncyCastle.Crypto.Engines; +using Org.BouncyCastle.Crypto.Parameters; +using Org.BouncyCastle.Math; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Security.Cryptography; +using System.Text; +using System.Xml; +using System.Xml.Linq; + +namespace GMLicense +{ + class Keys + { + public const String Modulus = "AEFD4A9B137D5EC3D80B11094948770D342E87CBF81E418A54FB61BBCDB8D40F241E242822C50327E20003EE57CCA877BF35A2A55A0EB06537F369B722C9DAAB943F33593CC458A7055C0D80CAE9112FD0F4BBC53AD1FEE67C83DDED354216F30EA7126200DE83FAEB7A9880647BFE16B9A0406C7B90D20315F011CCBB85070B"; + public const String PublicExponent = "03"; + public const String PrivateExponent = "74A8DC6762539482900760B0DB85A4B3781F0532A5698106E3524127DE7B380A1814181AC1D8ACC5415557F43A88704FD4CE6C6E3C09CAEE254CF124C1DBE71BF2B1BD2C550A95AEC64E1859444BD879815A820CD22A66E50C6B0658C475FEB83DB423101295BE269315353DFD2B5515A827C4C43C7FF28EDB13ECDA76EF125B"; + public const String Prime1 = "E1E58992501733C45719035DBC615326809E41B49D46A838A1EAAD0807B8866D4206DAEB7DE63BE374D73F9A560393BF9B1884B8CDFEDE9D6BCD0B245CDCA677"; + public const String Prime2 = "C64F0E046D1D445C84CDE59D2815F9530E4EB6FD624BBC5647F8A76006D89271701202DE6717AADD9A03890912B76AB6A24C148D52D2078F61852360AC41C50D"; + public const String Exponent1 = "969906618ABA2282E4BB5793D2EB8CC455BED67868D9C57B169C735AAFD0599E2C0491F253EED297A33A2A66E402627FBCBB0325DEA9E9BE47DE076D933DC44F"; + public const String Exponent2 = "8434B402F368D83DADDE9913700EA6375EDF24A8EC327D8EDAA5C4EAAF3B0C4BA00C01E99A0FC73E66AD06060C7A47246C32B85E3736AFB4EBAE1795C82BD8B3"; + public const String Coefficent = "2659d9ec51d4886df62574301fbce9b18d8479b36f33e8961ba6179395bb73dcf019c641c4efb4d88f10fdf2351117744fe65a1a9b7a45e63dfc9ce135bec994"; + + public static RsaKeyParameters GetPublicKey() + { + return new RsaKeyParameters(false, new BigInteger(Modulus, 16), new BigInteger(PublicExponent, 16)); + } + + public static RsaPrivateCrtKeyParameters GetPrivateKey() + { + return new RsaPrivateCrtKeyParameters(new BigInteger(Modulus, 16), new BigInteger(PublicExponent, 16), new BigInteger(PrivateExponent, 16), new BigInteger(Prime1, 16), new BigInteger(Prime2, 16), new BigInteger(Exponent1, 16), new BigInteger(Exponent2, 16), new BigInteger(Coefficent, 16)); + } + } + + class Crypto + { + public static String SignData(RsaPrivateCrtKeyParameters PrivateKey, String ToBeSigned) + { + byte[] Data = Encoding.UTF8.GetBytes(ToBeSigned); + byte[] sha1Hash = SHA1.Create().ComputeHash(Data); + + Pkcs1Encoding pkcs1Encoding = new Pkcs1Encoding(new RsaEngine()); + pkcs1Encoding.Init(true, PrivateKey); + int inputBlockSize = pkcs1Encoding.GetInputBlockSize(); + + byte[] EncryptedData = pkcs1Encoding.ProcessBlock(sha1Hash, 0, sha1Hash.Length); + + var signedString = Convert.ToBase64String(EncryptedData); + return signedString; + } + } + + class LicenseFormat + { + private static Dictionary Parse_Plist(string string_36) + { + StringBuilder stringBuilder = new StringBuilder(); + using (StringReader stringReader = new StringReader(string_36)) + { + string text; + while ((text = stringReader.ReadLine()) != null) + { + if (!text.Contains("DOCTYPE") || !text.Contains("DTD")) + { + stringBuilder.Append(text); + } + } + } + string s = stringBuilder.ToString(); + Dictionary dictionary = new Dictionary(); + XmlReaderSettings xmlReaderSettings = new XmlReaderSettings(); + xmlReaderSettings.IgnoreComments = true; + xmlReaderSettings.ProhibitDtd = true; + using (MemoryStream memoryStream = new MemoryStream(Encoding.UTF8.GetBytes(s))) + { + using (XmlReader xmlReader = XmlReader.Create(memoryStream, xmlReaderSettings)) + { + XmlDocument xmlDocument = new XmlDocument(); + xmlDocument.XmlResolver = null; + xmlDocument.Load(xmlReader); + XmlNode xmlNode = xmlDocument.SelectSingleNode("plist/dict"); + for (int i = 0; i < xmlNode.ChildNodes.Count; i++) + { + if (xmlNode.ChildNodes[i].Name == "key") + { + dictionary.Add(xmlNode.ChildNodes[i].InnerText, xmlNode.ChildNodes[i + 1].InnerText); + i++; + } + } + } + } + return dictionary; + } + + private static string createLicenseString(string plist) + { + Dictionary PlistDict = Parse_Plist(plist); + List PlistEntryList = PlistDict.Keys.ToList(); + PlistEntryList.Sort(); + StringBuilder stringBuilder = new StringBuilder(); + foreach (string PlistEntry in PlistEntryList) + { + string value = PlistDict[PlistEntry]; + if (string.Compare(PlistEntry, "Signature", true) != 0) + { + stringBuilder.Append(value); + } + } + return stringBuilder.ToString(); + } + + public static String CreateLicense(String AllowedPlatforms, RsaPrivateCrtKeyParameters PrivateKey) + { + String PlistFile = new XElement("plist", + new XElement("dict", + new XElement("key", "Signature"), + new XElement("data", "---SIGNATURE GOES HERE---"), + new XElement("key", "public_key"), //Thanks yoyo 4 backdoor lol + new XElement("string", Keys.Modulus), + new XElement("key", "components"), + new XElement("string", AllowedPlatforms), + new XElement("key", "expiry_date"), + new XElement("string", DateTime.UtcNow.AddDays(3).ToString("yyyy-mm-dd HH:mm:ss UTC")), + new XElement("key", "id"), + new XElement("string", "1337"), + new XElement("key", "email"), + new XElement("string", "girls@dying.moe"))).ToString(); + + //Sign license with private key + string licenseString = createLicenseString(PlistFile); + string signature = Crypto.SignData(PrivateKey, licenseString); + return PlistFile.Replace("---SIGNATURE GOES HERE---",signature); + } + + + + } +} + + diff --git a/GayMaker-Studio/GameSettings.Designer.cs b/GayMaker-Studio/GameSettings.Designer.cs new file mode 100644 index 0000000..7bb2d01 --- /dev/null +++ b/GayMaker-Studio/GameSettings.Designer.cs @@ -0,0 +1,191 @@ +namespace GayMaker_Studio +{ + partial class GameSettings + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GameSettings)); + this.label1 = new System.Windows.Forms.Label(); + this.panel1 = new System.Windows.Forms.Panel(); + this.TexturePageSize = new System.Windows.Forms.ComboBox(); + this.label3 = new System.Windows.Forms.Label(); + this.DisplayCursor = new System.Windows.Forms.CheckBox(); + this.Interporlate = new System.Windows.Forms.CheckBox(); + this.FullScale = new System.Windows.Forms.RadioButton(); + this.KeepAspect = new System.Windows.Forms.RadioButton(); + this.label2 = new System.Windows.Forms.Label(); + this.Save = new System.Windows.Forms.Button(); + this.panel1.SuspendLayout(); + this.SuspendLayout(); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(12, 9); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(112, 13); + this.label1.TabIndex = 0; + this.label1.Text = "Global Game Settings:"; + // + // panel1 + // + this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; + this.panel1.Controls.Add(this.TexturePageSize); + this.panel1.Controls.Add(this.label3); + this.panel1.Controls.Add(this.DisplayCursor); + this.panel1.Controls.Add(this.Interporlate); + this.panel1.Controls.Add(this.FullScale); + this.panel1.Controls.Add(this.KeepAspect); + this.panel1.Controls.Add(this.label2); + this.panel1.Location = new System.Drawing.Point(12, 25); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(238, 167); + this.panel1.TabIndex = 1; + // + // TexturePageSize + // + this.TexturePageSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.TexturePageSize.FormattingEnabled = true; + this.TexturePageSize.Items.AddRange(new object[] { + "256", + "512", + "1024", + "2048", + "4096", + "8192", + "16384"}); + this.TexturePageSize.Location = new System.Drawing.Point(6, 74); + this.TexturePageSize.Name = "TexturePageSize"; + this.TexturePageSize.Size = new System.Drawing.Size(94, 21); + this.TexturePageSize.TabIndex = 6; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Location = new System.Drawing.Point(3, 58); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(97, 13); + this.label3.TabIndex = 5; + this.label3.Text = "Texture Page Size:"; + // + // DisplayCursor + // + this.DisplayCursor.AutoSize = true; + this.DisplayCursor.Location = new System.Drawing.Point(3, 38); + this.DisplayCursor.Name = "DisplayCursor"; + this.DisplayCursor.Size = new System.Drawing.Size(201, 17); + this.DisplayCursor.TabIndex = 4; + this.DisplayCursor.Text = "Display cursor when touchpad active"; + this.DisplayCursor.UseVisualStyleBackColor = true; + // + // Interporlate + // + this.Interporlate.AutoSize = true; + this.Interporlate.Location = new System.Drawing.Point(3, 15); + this.Interporlate.Name = "Interporlate"; + this.Interporlate.Size = new System.Drawing.Size(183, 17); + this.Interporlate.TabIndex = 3; + this.Interporlate.Text = "Interporlate colors between pixels"; + this.Interporlate.UseVisualStyleBackColor = true; + // + // FullScale + // + this.FullScale.AutoSize = true; + this.FullScale.Location = new System.Drawing.Point(3, 143); + this.FullScale.Name = "FullScale"; + this.FullScale.Size = new System.Drawing.Size(71, 17); + this.FullScale.TabIndex = 2; + this.FullScale.TabStop = true; + this.FullScale.Text = "Full Scale"; + this.FullScale.UseVisualStyleBackColor = true; + // + // KeepAspect + // + this.KeepAspect.AutoSize = true; + this.KeepAspect.Location = new System.Drawing.Point(3, 120); + this.KeepAspect.Name = "KeepAspect"; + this.KeepAspect.Size = new System.Drawing.Size(114, 17); + this.KeepAspect.TabIndex = 1; + this.KeepAspect.TabStop = true; + this.KeepAspect.Text = "Keep Aspect Ratio"; + this.KeepAspect.UseVisualStyleBackColor = true; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(3, 104); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(84, 13); + this.label2.TabIndex = 0; + this.label2.Text = "Scaling Options:"; + // + // Save + // + this.Save.Location = new System.Drawing.Point(12, 198); + this.Save.Name = "Save"; + this.Save.Size = new System.Drawing.Size(238, 23); + this.Save.TabIndex = 2; + this.Save.Text = "Save Changes"; + this.Save.UseVisualStyleBackColor = true; + this.Save.Click += new System.EventHandler(this.Save_Click); + // + // GameSettings + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(262, 230); + this.Controls.Add(this.Save); + this.Controls.Add(this.panel1); + this.Controls.Add(this.label1); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.Name = "GameSettings"; + this.Text = "Global Game Settings"; + this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.GameSettings_FormClosing); + this.Load += new System.EventHandler(this.GameSettings_Load); + this.panel1.ResumeLayout(false); + this.panel1.PerformLayout(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Panel panel1; + private System.Windows.Forms.ComboBox TexturePageSize; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.CheckBox DisplayCursor; + private System.Windows.Forms.CheckBox Interporlate; + private System.Windows.Forms.RadioButton FullScale; + private System.Windows.Forms.RadioButton KeepAspect; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Button Save; + } +} \ No newline at end of file diff --git a/GayMaker-Studio/GameSettings.cs b/GayMaker-Studio/GameSettings.cs new file mode 100644 index 0000000..46271c1 --- /dev/null +++ b/GayMaker-Studio/GameSettings.cs @@ -0,0 +1,147 @@ +using System; +using System.Drawing; +using System.IO; +using System.Windows.Forms; +using System.Xml; + +namespace GayMaker_Studio +{ + public partial class GameSettings : Form + { + + String ProjectPath; + XmlDocument DefaultConfig = new XmlDocument(); + + public GameSettings() + { + //Bypass Windows DPI Scaling + Font = new Font(Font.Name, 8.25f * 96f / CreateGraphics().DpiX, Font.Style, Font.Unit, Font.GdiCharSet, Font.GdiVerticalFont); + InitializeComponent(); + } + + private void GameSettings_Load(object sender, EventArgs e) + { + Program.GMS.Enabled = false; + + ProjectPath = Path.GetDirectoryName(Program.GMS.GetProjectPath()); + Console.WriteLine(ProjectPath); + DefaultConfig.Load(ProjectPath + "\\Configs\\Default.config.gmx"); + + XmlNode TP = DefaultConfig.GetElementsByTagName("option_ps4_texture_page")[0]; + XmlNode IT = DefaultConfig.GetElementsByTagName("option_ps4_interpolate")[0]; + XmlNode SC = DefaultConfig.GetElementsByTagName("option_ps4_scale")[0]; + XmlNode DC = DefaultConfig.GetElementsByTagName("option_ps4_displaycursor")[0]; + + + try + { + //If global game settings was never opened then its true/false for some reason + DisplayCursor.Checked = bool.Parse(DC.InnerText); + Interporlate.Checked = bool.Parse(IT.InnerText); + + } + catch + { + //Otherwise its -1 / 0 (GM IS WEIRD) + if (int.Parse(DC.InnerText) == 0) + { + DisplayCursor.Checked = false; + } + else + { + DisplayCursor.Checked = true; + } + + if (int.Parse(IT.InnerText) == 0) + { + Interporlate.Checked = false; + } + else + { + Interporlate.Checked = true; + } + + if (int.Parse(SC.InnerText) == 0) + { + FullScale.Checked = true; + KeepAspect.Checked = false; + } + else + { + FullScale.Checked = false; + KeepAspect.Checked = true; + } + }; + + + + TexturePageSize.Text = int.Parse(TP.InnerText).ToString(); + + } + + private void Save_Click(object sender, EventArgs e) + { + try + { + + if (DisplayCursor.Checked) + { + XmlNode DC = DefaultConfig.GetElementsByTagName("option_ps4_displaycursor")[0]; + DC.InnerText = "-1"; + } + else + { + XmlNode DC = DefaultConfig.GetElementsByTagName("option_ps4_displaycursor")[0]; + DC.InnerText = "0"; + } + + if (Interporlate.Checked) + { + XmlNode IT = DefaultConfig.GetElementsByTagName("option_ps4_interpolate")[0]; + IT.InnerText = "-1"; + } + else + { + XmlNode IT = DefaultConfig.GetElementsByTagName("option_ps4_interpolate")[0]; + IT.InnerText = "0"; + } + + if (KeepAspect.Checked) + { + XmlNode SC = DefaultConfig.GetElementsByTagName("option_ps4_scale")[0]; + SC.InnerText = "-1"; + } + else + { + XmlNode SC = DefaultConfig.GetElementsByTagName("option_ps4_scale")[0]; + SC.InnerText = "0"; + } + + XmlNode TP = DefaultConfig.GetElementsByTagName("option_ps4_texture_page")[0]; + TP.InnerText = TexturePageSize.Text; + + XmlWriterSettings settings = new XmlWriterSettings { Indent = true, OmitXmlDeclaration = true }; + XmlWriter writer = XmlWriter.Create(ProjectPath + "\\Configs\\Default.config.gmx", settings); + DefaultConfig.Save(writer); + writer.Close(); + + } + + catch (Exception) + { + MessageBox.Show("There was an error while saving settings!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + + + Program.GMS.Enabled = true; + + Close(); + + } + + private void GameSettings_FormClosing(object sender, FormClosingEventArgs e) + { + Program.GMS.Enabled = true; + } + } +} \ No newline at end of file diff --git a/GayMaker-Studio/GameSettings.resx b/GayMaker-Studio/GameSettings.resx new file mode 100644 index 0000000..aa08bb4 --- /dev/null +++ b/GayMaker-Studio/GameSettings.resx @@ -0,0 +1,337 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAAAAAAAEAIABtMQAAFgAAAIlQTkcNChoKAAAADUlIRFIAAAEAAAABAAgGAAAAXHKoZgAAMTRJ + REFUeNrtvXl0VFea4Pm7b4lNsUhoQQIhJBYBEjtmsQEveEmcmd6zndld7sp0ujqrO2c51TM9M6fPzDlV + Z/6YmqnuOXN6eqazKitr6vT0dOXJxbszbSd2GjA2q8F2ogUhgRZAElojFHvEe2/+CEVYCG2ADUb6fueE + jbZY3nvf7917v+/eCwuPYuD3gHOzj+eeey4Tj8dtZwLJZNL67ne/m7qV5x1/jAKvAf8MWAWYC/AcCbcJ + Qw7B144Q8BTwGNANHAHeB44Cl4GMHCJBBDD/8QJrxh8vAF0TZPCxyEAQASwc3ED9+OOPRAaCCEBkIDIQ + RAAiA5GBIAIQRAaCCEAQGQgiAGEuMngPSS2KAOQQiAxEBiIAQWQgMhABCCIDkYEIQBAZiAxEAILIQGQg + AhAEkYEIQBBEBiIAQRAZiAAEYY4y+BBZz0AEICxoGbwgMhABCCIDkYEIQBAZiAxEAIIgMhABCILIQAQg + CCIDEYAgiAxEAIIgMhABCILIQAQgCCIDEYAgiAxEAIIgMhABCMItyqAT2XhVBCAsWBlM3Hh1wcpABCCI + DKaWwQHgXWB0Pn94Tc6/IFwng5eA/xvYPt8/sAhAEKaXgUsEIAiCCEAQBBGAIAgiAEEQRACCIIgABEEQ + AQiCIAIQBEEEIAiCCEAQBBGAIAgiAEEQRACCIIgABEEQAQiCIAIQBEEEIAiCCEAQBBGAIAgiAEEQRACC + IIgABEEQAQiCIAIQBEEEIAiCCEAQBBGAIAgiAEEQRACCIIgABEEQAQiCIAIQBEEEIAgiAEEQRACCIIgA + BEEQAQiCIAIQBEEEIAiCCEAAx3HkIAjzAmMhxq/P57NN0wSwpvkdNV2gW5ZFUVGRo5S67mcej8fxeDzo + uo7jOMTjcbnCBBHA14zYT37yk3N1dXUPANnJQT7h6yklYNs2FRUValwgBUzTVH/2Z3+mP/PMMyilyGaz + nDp1KtXV1eUkEglXNpvVlFIMDAw4bW1tdjabVZZlaY7joJQilUqRyWTkihRuK2qhfeBwOEwwGPxz4C9u + w8vZmUzGyWQymm3bSilFLBazLl26lIpGo/rY2JjLsiyllOLy5cvW4cOHndHRUaOpqckZHBxU0oK4o0SB + 7wG/EQHMI8bv6H8B/PnX7a2lUinS6TTt7e1WZ2enfvz48cy5c+eM3t5e1draSiaTESmIAEQA81QAU71X + O5FIqHA4bDc3Nzujo6P64cOHrfPnz+vNzc3O0NCQSqVSSroOIoCbZcGNAYz3ue+KYXyllObz+fD5fHpV + VRUATz31lJ5IJOjq6rK6u7v1zs5O+/Dhw3R1dWmtra1OOp3WpJUgzPkaW4gC4C5pAcz1IyWTSSKRiNPa + 2podHBw0P/7442x7e7vR19dHS0sLiURCWgk3jnQB5inuv/qrv/rZ2rVrX7iZfL7jOFRWVjrbtm1ThvFF + A8qyLOfMmTPO1atX8fv96UAgYFdXV7t9Pp/uOA6apjmGYTiGYTiapmlf5bG3bdtOJpPayMiI1dzcrC5c + uOAcPnzYHhkZMZuamuyhoSEtk8mQTqclzEUAC45ij8fzqq7rD97MH1uWxbPPPpv92c9+pnu93sLxS6VS + 9o9+9KPsr371K9PlctmGYVBfX6+Vl5crx3HQdd32er3pQCBgbdu2zVNdXa1bloWmaU4gEMisWrVKD4VC + usfjcXRd/7LPi5NKpZx0Oq06Ojqyly5dMjo7O+1Dhw6pS5cuqZaWFhlgXKACWIh1ACSTyVsaA0ilUtN+ + P5FIqEQioQMcPXp04o81wANgmiYejyffHVGGYRhr1qxRixcvdlasWGHt2bNHD4VCdmNjI+NSsMdbDTeL + crvdyu12s3nzZnPz5s0A2ksvvcTEAcYPP/zQamtr05ubm53BwUEZYFwALEgB3Gkymczkoh/t+PHjhXPy + 05/+FNM0tbVr11JZWemsWrXKuu+++1RJSUm2oaFBCwQCmtfrdZRStyQFr9eL1+vVKysrgS8GGLu7u63O + zk69q6vLPnTokBOJRIyzZ886Q0ND0koQAQhfNeNBpiZIwfzJT36CaZrGunXrqKysdOrr661du3ap0tLS + 7Nq1a/NSgFvo1um6rvx+Pw0NDWZDQwOA8+KLL5JOp53z589bXV1d+rFjx7Lnz5/X87UJ8XhcWgkiAOF2 + SeHYsWP5INd8Ph8ul0tfu3atWrZsmfPAAw84y5cv15YsWWKtXr1az3c1bkEKyuPx4PF42LZtm7Ft2zae + fvppPZlMaqOjo1ZzczMXLlxQH374oTU8PGw2NTXZg4ODWjqdlrJmEYBwO6QQj8e1Y8eOcezYMfX6669j + mialpaV6Y2OjCgaD1v3338/y5cu16urq7IoVKwyXy4Xb7b5pKWiaVqhNWLJkCYDzgx/8QE+lUs7Fixet + np4eNV6boLq7u5XUJogAhNtEOp0mnU4Ti8VUd3c3gP7KK6/gcrkKUiguLs7ef//9qqamRi1fvtyqqakx + 3G6343K51E1KQblcLuVyudi4caO5ceNGmDDA2NLSYg8PD6sjR45kOzo6jL6+PlpbW6U2QQQg3A7yA46x + WEwbl4Lx61//Grfb7eSlUFJSkt27d69WV1enGhoanJKSEt3tdjuGYdxq10FfvHixDrkBxlQqpYaHh62m + piZ18eJF+9ChQ044HJbJTyIA4Q5IQUWjUdXV1QVg/vKXv8Tr9Tpr165VlZWVTl1dnbV37149FArZDQ0N + FBcX626329Z1/aYyD7quF7oO1dXVMGGAMT/56dixY9m2tjZdJj+JAIQ7JIUTJ04Uro2//du/vSYduXLl + Smv37t2quLjYamhoUMFg8FZqFJTb7cbtdrNlyxZjy5YtPP300/pMk59kgFEEINxGpkpH/vVf/zWmaerj + 6Uh79erVhXTkunXrtEAgoHk8npuqUZhp8lNnZ6fV3d2turq6ZPKTCEC401KYLh1ZVVVlr1mzxtqxY4e5 + fPlya9WqVbrL5brpdKRhGCoQCLBhwwZzw4YNANoPf/hDIpGI3draag8ODiqZ/CQCEO6wFPLpSEAHdJ/P + R2lpqb5+/XoVCASsBx54gJqaGq26ujq7cuVK4xZqFAoDjBUVFTqQr01QIyMjhQHGCZOfnKGhISWTn0QA + wu2Xgurp6QHQX3311WvSkaFQ6Jp05PLly286HTmxNmHp0qWQq03Q0um0M2Hyk3Po0CF6enpkgFEEINxu + pkpHvvzyy7hcLqesrOyadGRNTQ21tbXWsmXLXB6P52bSkYUBxgmTn5g8+enw4cNWW1ub3tLSsmAnP4kA + hDstBRWLxa5JR7rdbqesrEytW7fOWb16tXX//ffrwWDQbmxsvJV05HWTn5588kk9mUzS1dVldXV1XTP5 + 6cyZM/T19c376fIiAOFrKYVoNKo6Ozt5++23jZ/97GcYhqGtW7eOxYsXOytXrrT27NmjQqGQ1dDQoG52 + yrRhGMrv99PY2Gg2NjbCeG1CJpPhl7/85aE/+ZM/aREBCMIdZqp05N/8zd9gmqaer1FYvXq1de+996pF + ixZl161bpwWDwZtJRxYmP7300ksnduzY0TFe2iwCEISvuxQmpSOd+vr67M6dO81ly5ZZ9fX1umma3MCU + abV+/fp5fxxFAMK8ksKEdKQCXBPTkX6/33rggQdYvny5tnTp0uyqVatmTEcuhLShCEBYCFIopCNfe+21 + fDrSmJSO1GpqarK1tbWGy+VSSik1Pm1aBCAI84UJ6Ug1KR1JPh0ZDAatvr6+fQcPHvwV0CQCEISFIQVt + PB2pA9uAuvkuAG0+fzhBuAVs4K7YQUoEIAiCCEAQBBGAIAgiAEEQRACCIIgABEEQAQiCIAIQBEEEIAgi + AEEQRACCIIgABEEQAQiCIAIQBEEEIAiCCEAQBBGAIAgiAEEQRACCIIgABEEQAQiCIAIQBOFuQPYFEL68 + i8kwCAaDVFRUUFZWRlVVFalUijNnzjC+M48gAhDmE0VFRVRVVbFq1Spqa2sJBAJYlsXw8DADAwMYhsET + TzzB4cOHOXv2rBwwEYBwt+P1eqmurmbjxo0sW7YMwzDo7+/n888/p7+/n0gkAoCmaaTTaaqrq3nkkUcY + HBykr6/vhl9PKUUoFMI0TZLJJGNjY3ISRADC7WbRokWsX7+eLVu2oJSip6eH999/n8HBQWzbxuv14vP5 + qK6uxjByl1Y8Hqenp4fu7m527drFa6+9dkOvaZomu3btYseOHZimSTQaJRwO09bWxrlz5wiHwzjOvN/A + RwQg3DlCoRBbt25l586djIyMcOzYMcb30CMQCFBVVYVhGGiahm3bOI5T+L9pmgSDQc6ePctzzz3HkSNH + GBwcnPNr33PPPVRXV/PWW28Ri8Xw+XyUlZWxevVqduzYwfnz5zlx4gTDw8NyokQAwpd6cRgGa9eu5bHH + HiMSifDb3/6Wvr4+fD4fVVVVuFwulFJYloVlWWSz2Smfp6ioiP7+fsbGxli5cuWcBVBXV0d9fT3vvfce + LpeL4uJiEokEFy9epK2tDZ/PR0NDA88//zzNzc2cPHmSRCIhJ04EINwq5eXlPPjgg5SWlnL06FHa29sJ + hULU1tai6zq2bZPNZmdsfjuOg1IK0zTRdZ2uri7Wrl3LiRMnZm22+/1+9uzZw+nTpzEMg8rKSjKZDKZp + EggE8rv5curUKVpaWti6dSvf/OY3+eijj25qnGGhInUAwnWsWrWKF198kVQqxcsvv8yVK1eora2lvLwc + gHQ6TSaTKTTzp3vkUUrh9Xrp6Ohg6dKl+P3+Wd/D5s2bCYfDXL58mfLy8kILI/+ahmEQCoVYvHgxtm1z + 6NAhuru7efjhh9mwYQNKKTmRIgDhRlBKsX79ep588klOnjzJRx99REVFBUuXLkXTNFKp1DWBPxsTReB2 + uxkaGsK2bZYvXz5jgOZTip988gmLFy9G13XS6fSUr6nrOiUlJZSXl9PR0cHBgwfZvHkzjz76KC6XS07q + LEgXQChQVVXF3r17effddxkdHaWurg7TNEmlUti2fV1w3wj55+np6eHpp59m165djI6O0t/fTzgcZmBg + gLGxMRzHYceOHTQ3NwO5Ach0On3d60/G5XKxePFiRkZG+OCDD3j44YfZv38/7777LqlUSk6uCECYjcrK + SgCuXLlCXV0duq6TTCZvKs02+W80TcPr9fKb3/yGJUuWUFJSQiAQoK6uDp/Ph9/vx7IsMpkM3d3d9PT0 + UF1dTTabnXZwcfJrGYbBokWLCIfDvPnmm+zfv59HH32U3/3ud6TTaTnBIgBhJlKpFB6PB13XSaVS1/Xl + pwvuuaCUoqSkBL/fTzKZpKuri2w2SzqdRimF2+2mqKgIv99Pd3c35eXlhVbDjbympmmEQiGUUrz//vs8 + ++yzfPvb3+aNN96YVSQLERkDEApcunQJXdcpLS0lFovNOrg3E5P/Jp8NKCoqIhgMUlZWxuLFi1m6dCmV + lZWFFsDAwAClpaUEg8FC03/ya+a/nu69KaUIBALous7rr79OVVUV9957r5xgEYAwE5FIhO7ubtasWUMk + Epn2jjnTyP9UknAcp9C8T6VShUd+QFHTNDweD36/n9LSUvx+P+l0upBmnOq5Z3vtvATS6TRvv/02W7du + ZeXKlXKSJyFdAOGaQP3ss8/49re/zYkTJ0gkEhQVFd3w8+RrBFKpVC5lmM6QyWawLRuHfJAqNE2h6zqG + YWCaJm63G9M0MQzjmizBjXQ58q0NyHUHSkpKGBgY4OjRo3zjG9/g5z//OSMjI3KyRQDCVHR2dhKJRFi7 + di1/+MMf8Hq9aJp2XYBNdZdPp9Mkk0lisTipVJJMJjseiApd13C5dUzTQNM1MhkLK2uRSqWIxxNYlo2u + KUyXicfjwev14vV6C3MKJr/WbBLIk08TtrS0sGzZMvbt28frr78u4wEiAGEqUqkUx48f5/HHH+fcuXMk + Egl8Pt+0AeY4Dslkkmg0SjQaI5NOoxs6oWIvS5dXsmJ1GdW1IUpKPYRKPARCXjSlkc1aREZTDA8muNwd + pufiCN0Xh+m9PEokMsbY2Bhut7uQITBNc9b3PpUYlFK4XC4CgQAff/wxL7zwAnV1dZw/f15OtghAmIpz + 586xd+9eNmzYwCeffILb7UbX9esCLJVKEYlEcoGfyRAMeWnYVMPOvbVs2r6EFatLKC714nLr6Pqkwp/x + Lx3bIZOxScSzXOkeo/Xzq5w40s2ZEz0MXh1jeHiEWCyG3+/H7/djGMas5cdTfc/lcjE8PEw4HCYYDMpJ + FgEI05FKpXj//fd5/PHH+fTTT0mlUte0AmzbJhaLMTIyQjKZwh/wsmNPLd96roGt9y6lvNKHYWjj/X3A + AduePmgNQyMYchHaWMbaDaU88sQqLp4f5f3ftPHB221c7hlheHiYRCJBKBTC4/HM6XPkBwUtyyIcDlNZ + WUk6naajo0NOsghAmC14stkslmXhOA6appHNZslkMoTDYSKRMRzHZt36JTz/g23sfXQ5ZYu9oBSO7cwY + 8FO/3hd3b3/QZOM9FdQ3LuKxp9bw25ebee+tVq72Rkin0wSDQQKBwHVjE1N9BsuyiEQi6LrOxo0bOX78 + OKOjo3KCRQDCdFRVVbFx40YOHDiAx+OhuLi4ULQzNDRELBqjyO/hgW+s4YU/3craDWVfDAx+CYtz5GXg + 9ug0bi5nRf19bN25lP/wVx9xsX2AcDiMZVkEg0F0Xb8m4PPvY2Lwa5rG/v37aW9v59y5c3KCRQDCdHg8 + Hh5++GFaW1sZGhpi2bJlhSb/0NAQ8XiC8ooQ//ile3jqnzRQWu655u79ZZJ/Xo/X4MHHVzI8lODf/y+H + iEVTjI2NYds2oVDoGglMXJAkEolg2zZPPPEEly5d4vjx47POKVhoSCGQcA2bNm0inU7T2dlJZWUljuMQ + jUYZHBwkkUhQtbSEf/6v9vLCn26mtNzL7ViNy3FA1xW79y1n+YpF5GoINOLxOJFIpNBNmXznNwyD/fv3 + 09fXx6FDhyT4p0BaAAsAn89HeXk5SikSiUQhX5/JZK7Jh1dUVLBhwwbefvvtwiKc0WiUkZEREokkVUtL + +Bf/3R72P1OPy63d1rX4HMchWOymtCI3GJlffiwWixWq/pRShe85jsNTTz1Fe3s7hw4dkry/CGBhUlJS + wuOPP05NTQ3pdBqXy0UmkwFgZGSEwcFBLl26RE9PDzt37qSvr49kMkl5eTnJZJLR0VGi0Rj+gJcXfrR9 + QvDf2PtQChQql/7LFQJOKOudowSUQrm+aO5PlICu6/h8vkJBUk1NDYsWLeLkyZMS/CKABXpyDYOHHnqI + K1eu8Lvf/Q5N09B1Ha/Xi8vlorS0lIqKCrZu3cpjjz3G2NgYL7/8MqWlpTiOw9jYGJHIGC6XwTefXc+3 + n1+Hy63P+c6fq8hVZC2HaDzLaDRJKm1jO+AydLwenVCRicelYegKZwYZKKW4OpzkytXYNWXCeQlEo9FC + SbHP56Ovrw/Lsqivr+fUqVNyMYgAFh5lZWXU1tZy9OhRQqEQhmGQyWSwLItoNMrw8DBNTU0opfD5fNi2 + XVjeOx6PEw6HsW2bTdtq+eMfbyNU4p5T8CsFlg3Do2nOdYf5Q9sw7RdHGOyPEI/nWh+6oRMKeqioCtCw + ahEb68tYXuXD783d4Se+jFKQztp8dPIKl7tGmbyYUF4C8XicQCBQ6LocOXKEXbt20dzcTDwelwtCBLCw + WLduHT09PWQyGYqKirAsq5A7nzirLp/is22bsrKyQuFMMpmitCzAsy9sonp5cM7BPxLJcPhMH4eO9nD+ + D32M9oTJhFOQzOJknVw3QIEyNJTX4Eipj7LaErZur2b/A7WsWR7A59FRgO3AaDTD4U96ef1XZ0mPpqZc + TkwpRSqVwuVyFUqIW1pa2L59O42NjZw8eVIuCBHAwkHXdVauXMmnn35aWBtvulV8890CXddRShGLxYjF + Ymiaxv2Prmb3wzXkOu4z4wCtnTF+8ZtzHPugnfD5YeyxNE7WHq/8VQXpFGbtxTLEBhPEO0a48mkvp452 + s+3eajasK6fIqzMcSfFp0yCfftTF4Ok+sJxCGfFkAdi2TSKRKHQFotEox44dY/PmzXz22WeyKpAIYOFQ + Xl6Oy+UqrOM/MVU21Wy+iYKIRqNks1kqKovZ/8xagiVubGtmAVi2w8mmYf7+P39O8+ELZPpjkLVBqUlT + e6G8ykfFEh+d58PEIhmUpiDrkOmPcWmok76z/bxfWYThMckkMiT7Y1jDScjYUwZ/Hk3TCusOuFwufD4f + 7e3t7Nmzh5UrV9LS0iIXhghgYbB06VJSqVzBTDAYLAggF4TXzuabSCaTGd9cQ7FzTy0NmypmLetVCk63 + jvKTn57i/MEL2JH0eDP/+mg1DMU/enENjz9Xx9svX+D/+XdnScatL7IEVk4Emavx3J87E+b4TxH8ubef + m3OQf7lUKoVpmpimSSwWo7W1lS1btnDhwoVCLUB+vGOhbysmApiHKKWoqanh0qVLmKZZ2L1nLpt45Ffq + 8Qe83LevjmCxa0YBKAVdvQn+0z98TtvvO7DH0rk7+pQvkusm2KZGqNTNt59fyfmmEd57s/u695///fzX + EwM9n0bUNIXLreP1mYSKvcTG0gwPxQp7COi6jtvtprm5mRdffJEf//jHJBKJa+Y1jI6OMjw8zPnz5+nt + 7V1wQhABzENM06S6upoPPvgAt9s95/X8LCu3QIdjO9SuLKNhU8UsooGxuMUvXmvlzDvnsKMzBD+5oM1m + bd55/wqb9lSxaU2Qh75Vw5H3r5CIZa9rMOTfr65ruL0GHrdJqMRL2eIiliwLUFEZpGyxn6U1QcoqXZz6 + qIP/6y8/IZXMCUDTNEzTpL+/n7/7u7+jpKQE0zSxbRuPx4NhGBQXF7Ns2TLWr19PZ2cnhw4dIhqNigCE + u5d8fXw4HMblcl13959OBJZl5Vbp1TTWNC6mcqkfexZpfN46zO9fbyE9EJ/Tbjwa0HN6kFdf6cT83gou + DKaxJ0kjf7cvKS3invuWsXbDYpbWBCkt9xIq8VG8yIvPZ2C4dBySpO0BEvZ5Kod7CJbAQK8im83icrnQ + dZ1AIEA0Gi1sKz5x89L8sQkGg+zevZv9+/fz5ptvLpi9BEQA85Di4mIAotEopaWl0/Z1J38vP/3X43Wx + dkMFpkubdvBfKYgnbT54/wIjF4Zz/fe5oBRWIsOHr17gfHeMkUtR0rFM4e5v2w66oXHPvcv5zh9vZtt9 + S/AH3OSyl7nBS9vJkrHCjGX6SGZ7SVkDOCpNyWKbimrFYK8qBHm+FZDvCk3+/HkJxONxPv74Y77zne9Q + XV29YNYMEAHMQ8rLy4lEIuPxpmYd7Mr/LJPJ4DgORX43y1ctQtPUtP1/BVzpj3PmSBdOIjtz0/86BygS + V+N0HujCsRyU/YVnyir8PP5MA8+/uInK6gCMB2nWypC1Y6StIZJWLugtJ4aDnZOPoygKaiyp02g+lRvo + syxr2vULJ78ft9tNOBymt7eX+vp6EYBw97J48WIikUhhYG8mAUxMC+bSgBAqcVNcqnAci1yjPR/cXzyH + jaKleYCBrhG4iX04FbnUX67Yx8HtNtixp47n/ulGtt5bhceryGSjZO0oaWuIlHWVjD1K1onhkC08x8SW + h24oKmt0dD0LzF18eQk4jkNPTw9btmzBNM3CnAkRgHDXoJTC7/fT19dXKJGdbQAw31zOpcgUuitF2jzN + UKIYQ1uEqYUwlB9dc6MwUErDtqG9dZDEaBLtJnfidRxwbChd7OXZFxr55vN1LFrskLZaiSZGydpjZJ0o + tpPCwRoPdjVtd0PTYPEyHZcHMiltxs89VatAKUV/fz9+vx+fz0c4HBYBCHcXmqYRDAZpa2srLOQ5Vf5/ + OgkopXB5MqTsq8SygziOQlNudOVFUx4M5cfQfKRTPq50XcWxHNBuXAC2DS431G8yeOKfBtnx4BiaeZLB + eAKH7BdN+5zWUHNcusIX1NFMhZbRcJwby/NrmlbYC9Hr9YoAhLvwhBpGYTvtictjTRXwk78upN0Mhcs9 + XrAP2E4S20kyPjiPUhAZM+jtjc998G8SZVWKfc+6eehpN+VLs1jOAJZF4TUnBvwXA4RT1hZdQ9YGpSl0 + TcOynWs2CplNgrnXytVCuN3uhXG9SMjML/Kj3slk8rrAnikIJn5P03JN8wlh8cV/1XgQ2ll0KzOXKQLX + v0cddn7Dwzf/2EsgMCnKJ72qg0M8qdHTa5DNwtoVGbQZGgOmAdgOStNQ4x9iLinQ/PfzgZ8/fiIA4a4T + gGVZ16yNdyPNYEWub65maXG7XOBxOzcT/9g2nPzEIPErH+vX29QsyRIosnG7HLRcNTDJpEY4qnGlX6fl + nM75sxYP7EqxbuXMbz6VAmd8yTDbVjc0BgC5iVETdyUWAQh3FY7jFDbPmDgAON0EoMkB4ADplENmholz + DqAbECi5yQ6AA4OtUT7sy3K62kdwiZuScg1PkcIwFMkkJGIOYyM2Y31p4r0RVDSBb4cbTfdMap1M/AwQ + jUImrfAY2pSBPu3nHj9O+UrBhTJzUAQwz8hfvF6v95oKwLksiKmUAsdhbNQhEc+1yqeMHwdMU7FspY5u + 3ORK4JaDNRgnPJwg0qRx2W2gDA10lVszIGvhZGzIWNiWw6IKjeoV+iyfHa72gmPn9iLMB/Z08pvcNbBt + G5fLVSgOEgEIdx352Xx+v59sNjtlF2C6u2JuPYAMsajDQL/DshXTv46mw+qNBoESRXjQmbXLMI1xUA6Q + sXEyaa7vUKjCrMIldTpLavUZxxyyWbja6+BYGpqm3VAGJC+AUChEPB5fEDUAIMuCzzssy2JgYIDKykos + yyqMB0x8TJwcNPGhaRooiEdsrl6aucXgOFCzWmfVeoNbnj+XTzgoNekBOGCYsOV+E39Qm2HNQBiLKq50 + WrjGNxLNt3qm+7xTPXw+X2E/ARGAcFfS0dFBdXU1pmkyNjZWWAo8X+s/nRTU+OIdmYzDhXM2M42DOQ4E + SzTu/YYLr4+vbH8A24HKGo2te020Wdqr/X3Q323hdpnXBfYX79u5TgoTvy4rK6O/v3/BXCsigHlIe3s7 + AwMDfO9732Pjxo0UFxcXRrYTiQRjY2NEo1EikQixWKzQ3NW0XNPZtmwuNGcZGZ49775lr8mmPeZX8jkc + B9xe2PesmyW1xrSDf5DL/5/91CE5mkvlZTKZKVs7E4N94r9t28Y0Tfx+P4ODgwvmWpExgHlIIpHg1Vdf + ZePGjTQ2NrJ79+7C2vjxeJx0Os3Y2BjJZJLm5mb6+voKs+V0XcfKWvR2Zmk7B4urmLbf7TgQWqTx9Ese + +rptOlutGXP0N8Om3SYPPOnGMJmx+R8JKz4/kUW3DDRdK0xsmin7MVEElmVRUlKC1+ulr69PBCDc/RI4 + fvw4p0+fxuPxEAgE8Hq9lJaWFv7d2NhIbW0tf//3f18oA9Z1PTcOMJLlxEGLLdsN/D5n2uBzHFjZaPLc + jzz8p3+b4OoV+9YlML5yUMM9Bt/5Uy/FpTNvRGI7cLZJ43JLBr/PTyaTKbRq5pIGzY/6l5WVFZZREwEI + 84J8MOQv6onTXE+dOsX3v/99ioqKSKfTmKZZ2DzEsiyajqY412KybdvsawLufNSNrsPP/32CSx0WoLiZ + OUL5GN14r8Ef/UsfKxqMGYNfKRiLaXz0e4fMCHhKPYyOjl6XxpspG5AfB6mvr6e9vX1BrR4sYwALmJGR + EaLRKLW1taTT6Wuq4cBh9FKCD36TZTQyezDrOmx/2M0P/7WPdVuNXH2AfQPbfjm5PH6wRPHwsy5++K+L + WNk4+/3JtuH0aY32E0mC3tzeB4lEYtpR/slSyPf/3W43lZWVdHV1LahrQFoAC5hUKkVraysbNmzg7Nmz + hY1DdF3PDQZmLD47mODYrhCPPZKdUQL5VXk37HJRWaPz0dtpPno7zeWLNpmUg5OfyDNhaYF8OGoqV1W4 + ar3OQ8+42XyfC19AzSoPTUFXr867r1tkBhxKy/yMjI5cI7OZlinL/042m2X16tVks1kuX74sAhAWDmfP + nmXTpk2Ul5czMDCAx+PJXRiGQTqdJtaX5MCvPNStcLFmVRbHmb1dX7FU54nve9j5qItzZ7I0nchw6YJF + ZNgmmRi/8AyFxweLKjRWNOps2OVixTqd4CJt+grECeQWJFW8d0Cj51Sc0kCIdCY3uJlf3CSbzRbGNTRN + K6Q5Jwog/1i7di09PT3EYjERgLBw6O/vp7Ozkz179vDKK68UWgFfjAVk6T41xiv/sIgX/4VOZbk1qwQc + JzeleMlynarlOvftdxEN24SHHJKJXGvAW6Tw+BRFQUVRQGG41PgeAHMIfnJVf4eOuvjo9RhFthuP10Nf + X19hizOATZs2YRgGHR0djI2NFZYIy++ABLm7fygUorKykrfeemvBnX8RgMDHH3/MD37wA1asWEFHRwce + j6cQKLZtk42n+fydMK9XFPPdf6JTEszt8Dsb+UB2exRuj05Z5YSfTfhHfmWguWI58MlZF2//Movd71Bc + WlyoacgH9bJly9i3bx8jIyPs3LmTRCJBR0cHfX19DA0NEY/HsSwLn8/Hrl276Ovro6enRwQgLDyGhobo + 7e2ltraWtra2wgaieQlks1mSw0k+/HUUTyDEk09kKQlYOHOcC5gXwa1WCyqVu/Mf/9TNK/+fRaQpSeWi + XOpuaGioUOXo8XjYtWsXhw8f5vTp05SXl1NVVUV9fT0bN25E0zQMwyCZTOLxeOjt7eW3v/3tgtwlSASw + wHG73ezbt49wOMzx48fx+/243e7C0lgT04LxKzEO/L8asUSQZ56Eqgr7msG8rxKlIJ2BD096eP3nFiOn + Y1SESrEsi6tXrxYG/jKZDNu2bSOTyXDmzBmy2Sy9vb309vZy+vRp3G43oVAIv9+P3+9nbGyM3t7eBbMA + iAhAKOByuXjwwQcpLS3lzTffBMDr9ZJOp6/Joys1vsCGZRHvHuOj/2wRHirmm0/CulVpXOZXNxcgNyDo + MDCic/ioi/deyRBvS1IRKgWgt7eXeDxeGPhbtmwZdXV1fPDBB1PO6EulUly9epWrV6/KBSACWLiYpslD + Dz2E2+3mrbfeQimFx+MhlUpNuY14vlvg2DaJvjhnXnPo7Q7x8FMe9mxPUxLKVQB+mSLQVG45sLPn3Rw6 + rNP0QQzVb1NZXEYmm6Wvr68Q/JlMhoqKCh555BGOHz9Ob2+vnGQRgDAd27Ztw+v18t5772EYRqHZn58z + AFNvoIEGjmOTHY3T+1GGV3sDnP3Mz+77bTatSxMKOIVFgm9GBrnBeYdUWtF1xcXRkybHD2aJnAtTlHFR + XFJCPB5nYGBgfBfjXB1/MBjkW9/6Ft3d3TQ1NckJFgEI01FdXU1jYyPvvPMOmqbhcrmuC/6pmFhc4zgO + VipDtG2Uz68k6Pw8wNFtXjZvcWhYnaFikYXb7aBr+XkE0w8YqvGlQDJZRXhMo/OywdkWg8+O2wy1RdFH + Hco8AVwBFyMjIwwPD19T629ZFtXV1VRUVPDrX/9aTrAIQJiJxsZGkskkAwMDBAKBQrN/cqDPhuM42Fkb + J5Jk9LMMn3a4OfeRl7KVXmrXuFm5wqKywqa02KbIa+MyHcarjIHcFN5EQmN0TKN/UKerR6PzIlxuyxC7 + FEULWwTcXnxBH4lEgoErV4jFYtct1qFpGl1dXTiOw4YNGzhy5IicZBGAMB26rpPJZLAs65rlwycH95wk + gINjOzgZB2fUJj6WoudilCvHTU6WevCWmvgXmfiLNQIBB93MzSuwbUU67TAWhshgluhQlvRwGsayuCyd + oMuNO+AmnUrR399PNBqdtoWiaRrRaJT33nuPHTt2cPr0aeLxuJxoEYAwFT09PXzrW98iFAoRjUbHJ//M + EuhzWF3XxkazFcqycJJZ7OEU6QsaYUPLLfjp0nN9/Pxooe2gsg66o2EqjYBuoutuMHKj9aOjo4WCndle + X9M0mpqauPfee9m4cSPHjh2TEz0HZDbgAqStrY3BwUH27t1bWB5scjDPNItushAm/p5l22SzWTLZDOl0 + mkwqjZVIY8fSqHAKI2phjlmYURt3UuHFxIWOYzvEE3GGhnNFSf39/UQikSkzElOhlCKRSHDs2DE2b968 + YHb2uVWkBbAASaVSvPHGGzz33HOsXr2atrY2DMMopPqmYi4SmMjk+fj5iTgTHxPlMdsmpnORgKZpnDt3 + jr1797Jq1SrJBswBaQEsUK5evcrhw4fZvXs3ZWVl1ywhPlMLYC4/n2r1Ydu2sSwr1zrI5FoH6XSaTCZT + WKx0Lq8/E0opIpEI7e3trF+/Xk6yCECYiZaWFtrb23nuueeoqKiYdiHN2RbUmO738qsR5Wv0Jz4mv85s + zGVJ7zznzp2jtraWQGHjQWE6pAuwgLFtu5Aye+SRRzhw4AD9/f3XdAduZIJMvhy3rq6O++67j+HhYQYG + BhgZGSnc6fNN/6GhIdLp9HXdjpudkDPx7wYGBjBNE6/Xu6DW9xMBCDeMZVkcPnyYLVu2sG/fPk6dOkVH + R8cXG4XMEHCTF9q0bZtgMMiOHTuIRCL4/X5qamrw+/1Arvw4k8mwZMkS3nnnHQ4cOFDYwWeuwT2X3ysr + K6O3t7dQKSiIAIRZAufMmTOMjY2xfft2iouL+fTTT8lmszOmCCf3/TVN48EHH2RgYICDBw8W1trPlxpD + rp++fft2Vq1axcGDBwuLdMxlA9OZyGcyVq5cyYMPPsjvf/97ufuLAIQbkcD58+cZHh7m4YcfZsWKFRw6 + dIi+vr7CCkEzCcCyLNasWUNFRQUffPBBISDz4wAT78ZNTU1s376dUCjE4ODgrN2NubQQXC4X69evZ/Pm + zZw4cYL29nY5qSIA4UYZGhrizTffZPPmzTz00ENcvHiRs2fPEo1GC+vqTcayLEpLS9m4cSMHDx6c9c6b + HxdYvXr1Nbvw3Ojdf2KT//HHH8fr9XLgwAEuXrwoJ3KOSBZAuI5EIsHRo0c5cuQIK1as4KmnnmLdunWY + pnndCH6+mf/QQw9x5cqVOd150+k0zc3NNDQ0YBjGDaX68oGf38hz+/btfP/738e2bX7xi19I8N8g0gIQ + pqWnp4df/OIXrFu3jj179rBjxw5OnTrFhQsXCk16Xde57777ADh9+vScn7u1tZWdO3eyZMkSuru757R8 + d55AIMCqVavYvXs3tm1z4MABmpqaris+EkQAwi1iWRZnz56lo6ODNWvWcN9993H//ffT0tLC5cuXqa+v + Z9GiRbz55ps3NOre399Pa2srW7Zsobu7e9YWgK7rVFVVsWHDBhoaGojH43zyySd8/vnnC24pbxGAcNtJ + JBJ8+umntLa2snz5crZs2cLWrVuJxWK89tprjI6O3tDzOY7D0aNHeeGFF9i0aROfffbZdQHv8XioqKhg + xYoVrF69mvLycrq7uzlw4ABtbW0Ldh0/EYBwx0gmk5w7d462tjbcbjeO45BKpW7qua5evcrBgwe5//77 + MQyDq1ev4vP5KC4upqqqiqVLl+L3+xkZGaGtrY033niDvr6+6yYvCSIA4TbjOM6Xcgc+ffo0w8PDPPDA + AwQCARzHIZ1OMzAwwNGjR7l06VJhyW9BBCDMQzo7OxkcHKSoKLe5ZywWu25lYkEEIMxjotEo0WhUDsRt + RuoABEEEIAiCCEAQBBGA8JXgADFARraErw0yCHj7SAH/K9ALPArsB0JyWIQ7ibQAbh8msBWIA38J/LfA + yPjPwuMPQRABzFN04BngPwK/HBfBh+M/OwC8KYdIEAHMf0ygHtgNDIx/L0lufEAQRAAL6NhPPP5KDokg + Alg4OHIIBBHAwiELtJFr7guCCGCBkQR+CvSMf23zRStAmv+CCGABEB8PfIBi4AOgHegj10IQBBHAPD/e + +WP+8HjQPwH8B6QoSLgDSCXg7UORKwPOz3mtGg/8D4H0uBAEQQQwT/EB5cD/DvwXwBpgEfCkHBrhTiFd + gNuHAl4gNxj4/fHA/zPgdSAih0cQAcx/6smVAv8dub5/J/A/Av8VuUlCgiACmMeMAUeAncD/APwc+BW5 + dODv5fAIIoD5L4A/B94Y/9oLrCM3PVjmAggigAVACfA2cHnSeZBiIEEEMM+xgVpgB/AKXxQF2RP+LQgi + gHmMAzxObirwqfHvLQOWyKERbjdSB3BnBBAilwZ8HWgA9iJrBQp3AGkB3F708WPuAPcAi8mNB+iASw6P + IAKYv2SBd4EucpN/LOAfAWfI1QMIgghgHmMDfwAOA98FXgReAzzAPyCzAYU7gIwB3D5cwJ8CF8n1+ZuA + nwFXx3/+CLnsgCCIAL5CJi7EcbtZRq4CcBu5vP/AuAg+A9xyOQoigK+eKnKz8u4EXnJlwHkqxx8yFfjr + ybxft3GhjQE0Av8OWC/XtjAH5n115kISwL3kZuF9YyGcWOGW8ZHbvq1IBHD38/h48O+U61q4gdj4E+C/ + J5epEQHchejAHwF/Q27WnSDcCB7gX5Fbr8EUAdxduIEfk+vzL5NrWbhJfMD/BPwzcjeUecV8zQIEyJn7 + vwH8cg0Lt0gQ+J/JLev+H5lH2YH5KIAy4C/IGVvq64Uvi1Jy27rHye3uLAL4GlID/G/A80iZs/DlUwn8 + m3EJvDUfPtB8CpJGcltvfU+CX/gKqQH+D2CfCODrw8QcvyB81awiN7h8rwjgziM5fuFOsB74P4EtIoA7 + g+T4hTvNPeMSuGuvv7tVAJLjF74u7Bm/DleIAG4PIXK76fwludSMINxpHiU3MFhzt73xuy0N6AH+a+C/ + JNcFSEz4mbrBf9/M7804iUipWecYObf48y/rOb6ur+fcpvf8Zb4nZ/y6eBD4l+RuTvG7JaD+fxt46exd + p639AAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/GayMaker-Studio/GayMaker-Studio.csproj b/GayMaker-Studio/GayMaker-Studio.csproj new file mode 100644 index 0000000..e33d712 --- /dev/null +++ b/GayMaker-Studio/GayMaker-Studio.csproj @@ -0,0 +1,139 @@ + + + + + Debug + AnyCPU + {A574F9F8-D3B2-4EF6-80DE-5D546C43B57D} + WinExe + GayMaker_Studio + GayMaker-Studio + v4.6.1 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + app.manifest + + + icon0.ico + + + + + + + ..\packages\BouncyCastle.1.8.4\lib\BouncyCastle.Crypto.dll + + + ..\packages\DotNetZip.1.13.3\lib\net40\DotNetZip.dll + + + ..\packages\HtmlAgilityPack.1.9.2\lib\Net45\HtmlAgilityPack.dll + + + ..\Packages\LibOrbisPkg.dll + + + + + + + + + + + + + + + + + + + Form + + + DownloadingUpdate.cs + + + + Form + + + GameSettings.cs + + + Form + + + GayMakerStudio.cs + + + + + + + Form + + + VersionManager.cs + + + DownloadingUpdate.cs + + + GameSettings.cs + + + GayMakerStudio.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + VersionManager.cs + + + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + \ No newline at end of file diff --git a/GayMaker-Studio/GayMakerStudio.Designer.cs b/GayMaker-Studio/GayMakerStudio.Designer.cs new file mode 100644 index 0000000..57bda00 --- /dev/null +++ b/GayMaker-Studio/GayMakerStudio.Designer.cs @@ -0,0 +1,483 @@ +namespace GayMaker_Studio +{ + partial class GayMakerStudio + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GayMakerStudio)); + this.homeScreen = new System.Windows.Forms.RadioButton(); + this.startupScreen = new System.Windows.Forms.RadioButton(); + this.IconPreview = new System.Windows.Forms.PictureBox(); + this.Title = new System.Windows.Forms.Label(); + this.homePreview = new System.Windows.Forms.Panel(); + this.IconPreview2 = new System.Windows.Forms.PictureBox(); + this.label1 = new System.Windows.Forms.Label(); + this.GameSettings = new System.Windows.Forms.Panel(); + this.label8 = new System.Windows.Forms.Label(); + this.VersionSelect = new System.Windows.Forms.ComboBox(); + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + this.GlobalGameSettings = new System.Windows.Forms.Label(); + this.label7 = new System.Windows.Forms.Label(); + this.titleName = new System.Windows.Forms.TextBox(); + this.label6 = new System.Windows.Forms.Label(); + this.titleID = new System.Windows.Forms.TextBox(); + this.label5 = new System.Windows.Forms.Label(); + this.contentID = new System.Windows.Forms.TextBox(); + this.browsePic = new System.Windows.Forms.Button(); + this.picPath = new System.Windows.Forms.TextBox(); + this.label4 = new System.Windows.Forms.Label(); + this.browseIcon = new System.Windows.Forms.Button(); + this.iconPath = new System.Windows.Forms.TextBox(); + this.label3 = new System.Windows.Forms.Label(); + this.browseProject = new System.Windows.Forms.Button(); + this.projectPath = new System.Windows.Forms.TextBox(); + this.label2 = new System.Windows.Forms.Label(); + this.Logo = new System.Windows.Forms.PictureBox(); + this.CreatePKG = new System.Windows.Forms.Button(); + this.panel1 = new System.Windows.Forms.Panel(); + this.GmacOut = new System.Windows.Forms.TextBox(); + this.StartupPreview = new System.Windows.Forms.Panel(); + ((System.ComponentModel.ISupportInitialize)(this.IconPreview)).BeginInit(); + this.homePreview.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.IconPreview2)).BeginInit(); + this.GameSettings.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.Logo)).BeginInit(); + this.panel1.SuspendLayout(); + this.SuspendLayout(); + // + // homeScreen + // + this.homeScreen.AutoSize = true; + this.homeScreen.Location = new System.Drawing.Point(69, 4); + this.homeScreen.Name = "homeScreen"; + this.homeScreen.Size = new System.Drawing.Size(53, 17); + this.homeScreen.TabIndex = 0; + this.homeScreen.TabStop = true; + this.homeScreen.Text = "Home"; + this.homeScreen.UseVisualStyleBackColor = true; + this.homeScreen.CheckedChanged += new System.EventHandler(this.homeScreen_CheckedChanged); + // + // startupScreen + // + this.startupScreen.AutoSize = true; + this.startupScreen.Location = new System.Drawing.Point(128, 4); + this.startupScreen.Name = "startupScreen"; + this.startupScreen.Size = new System.Drawing.Size(59, 17); + this.startupScreen.TabIndex = 1; + this.startupScreen.TabStop = true; + this.startupScreen.Text = "Startup"; + this.startupScreen.UseVisualStyleBackColor = true; + this.startupScreen.CheckedChanged += new System.EventHandler(this.startupScreen_CheckedChanged); + // + // IconPreview + // + this.IconPreview.BackColor = System.Drawing.Color.Transparent; + this.IconPreview.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("IconPreview.BackgroundImage"))); + this.IconPreview.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.IconPreview.Location = new System.Drawing.Point(144, 105); + this.IconPreview.Name = "IconPreview"; + this.IconPreview.Size = new System.Drawing.Size(165, 166); + this.IconPreview.TabIndex = 3; + this.IconPreview.TabStop = false; + this.IconPreview.Click += new System.EventHandler(this.IconPreview_Click); + // + // Title + // + this.Title.BackColor = System.Drawing.Color.Transparent; + this.Title.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.Title.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Title.ForeColor = System.Drawing.Color.White; + this.Title.Location = new System.Drawing.Point(312, 278); + this.Title.Name = "Title"; + this.Title.Size = new System.Drawing.Size(292, 23); + this.Title.TabIndex = 4; + this.Title.Text = "GameMaker: Studio"; + // + // homePreview + // + this.homePreview.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("homePreview.BackgroundImage"))); + this.homePreview.Controls.Add(this.IconPreview2); + this.homePreview.Controls.Add(this.IconPreview); + this.homePreview.Controls.Add(this.Title); + this.homePreview.Location = new System.Drawing.Point(3, 25); + this.homePreview.Name = "homePreview"; + this.homePreview.Size = new System.Drawing.Size(960, 544); + this.homePreview.TabIndex = 5; + // + // IconPreview2 + // + this.IconPreview2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("IconPreview2.BackgroundImage"))); + this.IconPreview2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.IconPreview2.Location = new System.Drawing.Point(316, 104); + this.IconPreview2.Name = "IconPreview2"; + this.IconPreview2.Size = new System.Drawing.Size(100, 102); + this.IconPreview2.TabIndex = 5; + this.IconPreview2.TabStop = false; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(12, 4); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(48, 13); + this.label1.TabIndex = 6; + this.label1.Text = "Preview:"; + // + // GameSettings + // + this.GameSettings.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; + this.GameSettings.Controls.Add(this.label8); + this.GameSettings.Controls.Add(this.VersionSelect); + this.GameSettings.Controls.Add(this.pictureBox1); + this.GameSettings.Controls.Add(this.GlobalGameSettings); + this.GameSettings.Controls.Add(this.label7); + this.GameSettings.Controls.Add(this.titleName); + this.GameSettings.Controls.Add(this.label6); + this.GameSettings.Controls.Add(this.titleID); + this.GameSettings.Controls.Add(this.label5); + this.GameSettings.Controls.Add(this.contentID); + this.GameSettings.Controls.Add(this.browsePic); + this.GameSettings.Controls.Add(this.picPath); + this.GameSettings.Controls.Add(this.label4); + this.GameSettings.Controls.Add(this.browseIcon); + this.GameSettings.Controls.Add(this.iconPath); + this.GameSettings.Controls.Add(this.label3); + this.GameSettings.Controls.Add(this.browseProject); + this.GameSettings.Controls.Add(this.projectPath); + this.GameSettings.Controls.Add(this.label2); + this.GameSettings.Location = new System.Drawing.Point(968, 25); + this.GameSettings.Name = "GameSettings"; + this.GameSettings.Size = new System.Drawing.Size(368, 301); + this.GameSettings.TabIndex = 7; + // + // label8 + // + this.label8.AutoSize = true; + this.label8.Location = new System.Drawing.Point(182, 276); + this.label8.Name = "label8"; + this.label8.Size = new System.Drawing.Size(65, 13); + this.label8.TabIndex = 18; + this.label8.Text = "GM Version:"; + // + // VersionSelect + // + this.VersionSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.VersionSelect.FormattingEnabled = true; + this.VersionSelect.Items.AddRange(new object[] { + "1.4.9999"}); + this.VersionSelect.Location = new System.Drawing.Point(253, 270); + this.VersionSelect.Name = "VersionSelect"; + this.VersionSelect.Size = new System.Drawing.Size(103, 21); + this.VersionSelect.TabIndex = 17; + this.VersionSelect.SelectedIndexChanged += new System.EventHandler(this.VersionSelect_SelectedIndexChanged); + // + // pictureBox1 + // + this.pictureBox1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox1.BackgroundImage"))); + this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.pictureBox1.Location = new System.Drawing.Point(6, 272); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(17, 18); + this.pictureBox1.TabIndex = 16; + this.pictureBox1.TabStop = false; + // + // GlobalGameSettings + // + this.GlobalGameSettings.AutoSize = true; + this.GlobalGameSettings.Enabled = false; + this.GlobalGameSettings.Location = new System.Drawing.Point(29, 276); + this.GlobalGameSettings.Name = "GlobalGameSettings"; + this.GlobalGameSettings.Size = new System.Drawing.Size(109, 13); + this.GlobalGameSettings.TabIndex = 15; + this.GlobalGameSettings.Text = "Global Game Settings"; + this.GlobalGameSettings.DoubleClick += new System.EventHandler(this.GlobalGameSettings_DoubleClick); + this.GlobalGameSettings.MouseEnter += new System.EventHandler(this.GlobalGameSettings_MouseEnter); + this.GlobalGameSettings.MouseLeave += new System.EventHandler(this.GlobalGameSettings_MouseLeave); + // + // label7 + // + this.label7.AutoSize = true; + this.label7.Location = new System.Drawing.Point(3, 170); + this.label7.Name = "label7"; + this.label7.Size = new System.Drawing.Size(30, 13); + this.label7.TabIndex = 14; + this.label7.Text = "Title:"; + // + // titleName + // + this.titleName.Location = new System.Drawing.Point(6, 186); + this.titleName.MaxLength = 40; + this.titleName.Multiline = true; + this.titleName.Name = "titleName"; + this.titleName.Size = new System.Drawing.Size(355, 78); + this.titleName.TabIndex = 13; + this.titleName.Text = "GameMaker: Studio"; + this.titleName.TextChanged += new System.EventHandler(this.titleName_TextChanged); + // + // label6 + // + this.label6.AutoSize = true; + this.label6.Location = new System.Drawing.Point(262, 134); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(44, 13); + this.label6.TabIndex = 12; + this.label6.Text = "Title ID:"; + // + // titleID + // + this.titleID.Location = new System.Drawing.Point(262, 147); + this.titleID.Name = "titleID"; + this.titleID.ReadOnly = true; + this.titleID.Size = new System.Drawing.Size(100, 20); + this.titleID.TabIndex = 11; + this.titleID.Text = "GMSP00001"; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Location = new System.Drawing.Point(3, 131); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(61, 13); + this.label5.TabIndex = 10; + this.label5.Text = "Content ID:"; + // + // contentID + // + this.contentID.Location = new System.Drawing.Point(3, 147); + this.contentID.MaxLength = 36; + this.contentID.Name = "contentID"; + this.contentID.Size = new System.Drawing.Size(253, 20); + this.contentID.TabIndex = 9; + this.contentID.Text = "IV0000-GMSP00001_00-GAMEMAKERSTUDIO0"; + this.contentID.TextChanged += new System.EventHandler(this.contentID_TextChanged); + // + // browsePic + // + this.browsePic.Location = new System.Drawing.Point(280, 108); + this.browsePic.Name = "browsePic"; + this.browsePic.Size = new System.Drawing.Size(75, 23); + this.browsePic.TabIndex = 8; + this.browsePic.Text = "Browse"; + this.browsePic.UseVisualStyleBackColor = true; + this.browsePic.Click += new System.EventHandler(this.browsePic_Click); + // + // picPath + // + this.picPath.Location = new System.Drawing.Point(6, 108); + this.picPath.Name = "picPath"; + this.picPath.ReadOnly = true; + this.picPath.Size = new System.Drawing.Size(268, 20); + this.picPath.TabIndex = 7; + this.picPath.Text = "img\\pic1.png"; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Location = new System.Drawing.Point(3, 92); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(140, 13); + this.label4.TabIndex = 6; + this.label4.Text = "Pic1.png (PNG 1920x1080):"; + // + // browseIcon + // + this.browseIcon.Location = new System.Drawing.Point(280, 66); + this.browseIcon.Name = "browseIcon"; + this.browseIcon.Size = new System.Drawing.Size(75, 23); + this.browseIcon.TabIndex = 5; + this.browseIcon.Text = "Browse"; + this.browseIcon.UseVisualStyleBackColor = true; + this.browseIcon.Click += new System.EventHandler(this.browseIcon_Click); + // + // iconPath + // + this.iconPath.Location = new System.Drawing.Point(6, 69); + this.iconPath.Name = "iconPath"; + this.iconPath.ReadOnly = true; + this.iconPath.Size = new System.Drawing.Size(268, 20); + this.iconPath.TabIndex = 4; + this.iconPath.Text = "img\\icon0.png"; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Location = new System.Drawing.Point(3, 53); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(134, 13); + this.label3.TabIndex = 3; + this.label3.Text = "Icon0.png (PNG 512x512):"; + // + // browseProject + // + this.browseProject.Location = new System.Drawing.Point(280, 28); + this.browseProject.Name = "browseProject"; + this.browseProject.Size = new System.Drawing.Size(75, 23); + this.browseProject.TabIndex = 2; + this.browseProject.Text = "Browse"; + this.browseProject.UseVisualStyleBackColor = true; + this.browseProject.Click += new System.EventHandler(this.browseProject_Click); + // + // projectPath + // + this.projectPath.Location = new System.Drawing.Point(6, 30); + this.projectPath.Name = "projectPath"; + this.projectPath.ReadOnly = true; + this.projectPath.Size = new System.Drawing.Size(268, 20); + this.projectPath.TabIndex = 1; + this.projectPath.Text = "(none)"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(3, 14); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(123, 13); + this.label2.TabIndex = 0; + this.label2.Text = "Project File (.gmx / .yyp):"; + // + // Logo + // + this.Logo.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Logo.BackgroundImage"))); + this.Logo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.Logo.Location = new System.Drawing.Point(1022, 332); + this.Logo.Name = "Logo"; + this.Logo.Size = new System.Drawing.Size(257, 206); + this.Logo.TabIndex = 8; + this.Logo.TabStop = false; + // + // CreatePKG + // + this.CreatePKG.Enabled = false; + this.CreatePKG.Location = new System.Drawing.Point(1022, 544); + this.CreatePKG.Name = "CreatePKG"; + this.CreatePKG.Size = new System.Drawing.Size(257, 23); + this.CreatePKG.TabIndex = 9; + this.CreatePKG.Text = "Make PKG"; + this.CreatePKG.UseVisualStyleBackColor = true; + this.CreatePKG.Click += new System.EventHandler(this.CreatePKG_Click); + // + // panel1 + // + this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; + this.panel1.Controls.Add(this.GmacOut); + this.panel1.Location = new System.Drawing.Point(3, 573); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(1333, 107); + this.panel1.TabIndex = 10; + // + // GmacOut + // + this.GmacOut.Dock = System.Windows.Forms.DockStyle.Fill; + this.GmacOut.Location = new System.Drawing.Point(0, 0); + this.GmacOut.Multiline = true; + this.GmacOut.Name = "GmacOut"; + this.GmacOut.ReadOnly = true; + this.GmacOut.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; + this.GmacOut.Size = new System.Drawing.Size(1329, 103); + this.GmacOut.TabIndex = 0; + // + // StartupPreview + // + this.StartupPreview.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("StartupPreview.BackgroundImage"))); + this.StartupPreview.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.StartupPreview.Location = new System.Drawing.Point(3, 25); + this.StartupPreview.Name = "StartupPreview"; + this.StartupPreview.Size = new System.Drawing.Size(960, 544); + this.StartupPreview.TabIndex = 6; + // + // GayMakerStudio + // + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; + this.ClientSize = new System.Drawing.Size(1344, 691); + this.Controls.Add(this.panel1); + this.Controls.Add(this.CreatePKG); + this.Controls.Add(this.Logo); + this.Controls.Add(this.GameSettings); + this.Controls.Add(this.label1); + this.Controls.Add(this.startupScreen); + this.Controls.Add(this.homeScreen); + this.Controls.Add(this.homePreview); + this.Controls.Add(this.StartupPreview); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.Name = "GayMakerStudio"; + this.Text = "GayMaker: Studio v"; + this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.GayMakerStudio_FormClosing); + this.Load += new System.EventHandler(this.GayMakerStudio_Load); + ((System.ComponentModel.ISupportInitialize)(this.IconPreview)).EndInit(); + this.homePreview.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.IconPreview2)).EndInit(); + this.GameSettings.ResumeLayout(false); + this.GameSettings.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.Logo)).EndInit(); + this.panel1.ResumeLayout(false); + this.panel1.PerformLayout(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.RadioButton homeScreen; + private System.Windows.Forms.RadioButton startupScreen; + private System.Windows.Forms.PictureBox IconPreview; + private System.Windows.Forms.Label Title; + private System.Windows.Forms.Panel homePreview; + private System.Windows.Forms.PictureBox IconPreview2; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Panel GameSettings; + private System.Windows.Forms.PictureBox Logo; + private System.Windows.Forms.Button CreatePKG; + private System.Windows.Forms.Panel panel1; + private System.Windows.Forms.TextBox GmacOut; + private System.Windows.Forms.Button browseProject; + private System.Windows.Forms.TextBox projectPath; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Button browseIcon; + private System.Windows.Forms.TextBox iconPath; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Label label7; + private System.Windows.Forms.TextBox titleName; + private System.Windows.Forms.Label label6; + private System.Windows.Forms.TextBox titleID; + private System.Windows.Forms.Label label5; + private System.Windows.Forms.TextBox contentID; + private System.Windows.Forms.Button browsePic; + private System.Windows.Forms.TextBox picPath; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Panel StartupPreview; + private System.Windows.Forms.PictureBox pictureBox1; + private System.Windows.Forms.Label GlobalGameSettings; + private System.Windows.Forms.Label label8; + private System.Windows.Forms.ComboBox VersionSelect; + } +} + diff --git a/GayMaker-Studio/GayMakerStudio.cs b/GayMaker-Studio/GayMakerStudio.cs new file mode 100644 index 0000000..964a397 --- /dev/null +++ b/GayMaker-Studio/GayMakerStudio.cs @@ -0,0 +1,773 @@ +using LibOrbisPkg.GP4; +using LibOrbisPkg.PKG; +using System; +using System.Diagnostics; +using System.Drawing; +using System.Drawing.Imaging; +using System.IO; +using System.Net; +using System.Net.Cache; +using System.Reflection; +using System.Text; +using System.Threading; +using System.Windows.Forms; +using System.Xml; + +namespace GayMaker_Studio +{ + public partial class GayMakerStudio : Form + { + public String CurrentVerison = "1.1"; + bool HasShaders = false; + + public GayMakerStudio() + { + + //Bypass Windows DPI Scaling + Font = new Font(Font.Name, 8.25f * 96f / CreateGraphics().DpiX, Font.Style, Font.Unit, Font.GdiCharSet, Font.GdiVerticalFont); + InitializeComponent(); + } + + public String GetProjectPath() //For GlobalGameSettings + { + return projectPath.Text; + } + + private bool isValidContentId(string contentId) + { + if(contentId.Length == 36) + if (Char.IsLetter(contentId[0])) + if (Char.IsUpper(contentId[0])) + if (Char.IsLetter(contentId[1])) + if (Char.IsUpper(contentId[1])) + if (Char.IsNumber(contentId[2])) + if (Char.IsNumber(contentId[3])) + if (Char.IsNumber(contentId[4])) + if (Char.IsNumber(contentId[5])) + if (contentId[6] == '-') + if (Char.IsLetter(contentId[7])) + if (Char.IsUpper(contentId[7])) + if (Char.IsLetter(contentId[8])) + if (Char.IsUpper(contentId[8])) + if (Char.IsLetter(contentId[9])) + if (Char.IsUpper(contentId[9])) + if (Char.IsLetter(contentId[10])) + if (Char.IsUpper(contentId[10])) + if (Char.IsNumber(contentId[11])) + if (Char.IsNumber(contentId[12])) + if (Char.IsNumber(contentId[13])) + if (Char.IsNumber(contentId[14])) + if (Char.IsNumber(contentId[15])) + if (contentId[16] == '_') + if (Char.IsNumber(contentId[17])) + if (Char.IsNumber(contentId[18])) + if (contentId[19] == '-') + if ((Char.IsNumber(contentId[20])) || (Char.IsLetter(contentId[20]) && Char.IsUpper(contentId[20]))) + if ((Char.IsNumber(contentId[21])) || (Char.IsLetter(contentId[21]) && Char.IsUpper(contentId[21]))) + if ((Char.IsNumber(contentId[22])) || (Char.IsLetter(contentId[22]) && Char.IsUpper(contentId[22]))) + if ((Char.IsNumber(contentId[23])) || (Char.IsLetter(contentId[23]) && Char.IsUpper(contentId[23]))) + if ((Char.IsNumber(contentId[24])) || (Char.IsLetter(contentId[24]) && Char.IsUpper(contentId[24]))) + if ((Char.IsNumber(contentId[25])) || (Char.IsLetter(contentId[25]) && Char.IsUpper(contentId[25]))) + if ((Char.IsNumber(contentId[26])) || (Char.IsLetter(contentId[26]) && Char.IsUpper(contentId[26]))) + if ((Char.IsNumber(contentId[27])) || (Char.IsLetter(contentId[27]) && Char.IsUpper(contentId[27]))) + if ((Char.IsNumber(contentId[28])) || (Char.IsLetter(contentId[28]) && Char.IsUpper(contentId[28]))) + if ((Char.IsNumber(contentId[29])) || (Char.IsLetter(contentId[29]) && Char.IsUpper(contentId[29]))) + if ((Char.IsNumber(contentId[30])) || (Char.IsLetter(contentId[30]) && Char.IsUpper(contentId[30]))) + if ((Char.IsNumber(contentId[31])) || (Char.IsLetter(contentId[31]) && Char.IsUpper(contentId[31]))) + if ((Char.IsNumber(contentId[32])) || (Char.IsLetter(contentId[32]) && Char.IsUpper(contentId[32]))) + if ((Char.IsNumber(contentId[33])) || (Char.IsLetter(contentId[33]) && Char.IsUpper(contentId[33]))) + if ((Char.IsNumber(contentId[34])) || (Char.IsLetter(contentId[34]) && Char.IsUpper(contentId[34]))) + if ((Char.IsNumber(contentId[35])) || (Char.IsLetter(contentId[35]) && Char.IsUpper(contentId[35]))) + return true; + return false; + + + + + } + + private bool canMakePkg() + { + if (File.Exists(projectPath.Text)) + if (isValidContentId(contentID.Text)) + return true; + return false; + } + + private void reloadIcons() + { + IconPreview.BackgroundImage.Dispose(); + IconPreview2.BackgroundImage.Dispose(); + StartupPreview.BackgroundImage.Dispose(); + + Image IBG = new Bitmap(iconPath.Text); + IconPreview.BackgroundImage = IBG; + IconPreview2.BackgroundImage = IBG; + + Image PBG = new Bitmap(picPath.Text); + StartupPreview.BackgroundImage = PBG; + } + + private void GayMakerStudio_FormClosing(object sender, FormClosingEventArgs e) + { + try + { + Microsoft.Win32.RegistryKey key; + key = Microsoft.Win32.Registry.CurrentUser.CreateSubKey(@"Software\GayMakerStudio"); + key.SetValue("project", projectPath.Text); + key.SetValue("icon0", iconPath.Text); + key.SetValue("pic1", picPath.Text); + key.SetValue("title", titleName.Text); + key.SetValue("contentID", contentID.Text); + key.SetValue("version", VersionSelect.SelectedIndex); + key.Close(); + } + catch (Exception) + { + MessageBox.Show("Failed to save settings to registry.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + private void CheckForUpdates() + { + WebClient wc = new WebClient(); + + wc.CachePolicy = new RequestCachePolicy(RequestCacheLevel.NoCacheNoStore); + String UpdateString = wc.DownloadString("https://bitbucket.org/SilicaAndPina/gaymaker-studio/raw/master/latest.md"); + String[] Data = UpdateString.Split('~'); + if (Data[0] != CurrentVerison) + { + DialogResult yesOrNo = MessageBox.Show("An update to GayMaker: Studio was found, Version: " + Data[0] + "\nWant to download it?\n\nThis system software update improves system performance.", "UPDATE FOUND!", MessageBoxButtons.YesNo, MessageBoxIcon.Question); + if (yesOrNo == DialogResult.Yes) + { + DownloadingUpdate updateForm = new DownloadingUpdate(); + this.Hide(); + updateForm.ShowDialog(); + this.Close(); + this.Dispose(); + } + } + } + + private void GayMakerStudio_Load(object sender, EventArgs e) + { + this.Text += CurrentVerison; + ReloadVersions(); + + + String OldEXEPath = Path.ChangeExtension(Assembly.GetExecutingAssembly().Location,".old"); + if(File.Exists(OldEXEPath)) + { + File.Delete(OldEXEPath); + } + + try + { + CheckForUpdates(); + } + catch (Exception) { }; + + + + try + { + Microsoft.Win32.RegistryKey key; + key = Microsoft.Win32.Registry.CurrentUser.CreateSubKey(@"Software\GayMakerStudio"); + + projectPath.Text = key.GetValue("project").ToString(); + iconPath.Text = key.GetValue("icon0").ToString(); + picPath.Text = key.GetValue("pic1").ToString(); + titleName.Text = key.GetValue("title").ToString(); + contentID.Text = key.GetValue("contentID").ToString(); + + int VerIndex = 0; + int.TryParse(key.GetValue("version").ToString(), out VerIndex); + VersionSelect.SelectedIndex = VerIndex; + + homeScreen.Checked = true; + startupScreen.Checked = false; + + homePreview.Visible = true; + StartupPreview.Visible = false; + + key.Close(); + + reloadIcons(); + } + catch (Exception) { }; + + + if (!File.Exists(iconPath.Text)) + { + iconPath.Text = "img\\icon0.png"; + } + + if (!File.Exists(picPath.Text)) + { + picPath.Text = "img\\pic1.png"; + } + + if (!File.Exists(projectPath.Text)) + { + projectPath.Text = "(none)"; + } + else + { + GlobalGameSettings.Enabled = true; + } + + CreatePKG.Enabled = canMakePkg(); + } + + private void titleName_TextChanged(object sender, EventArgs e) + { + homeScreen.Checked = true; + Title.Text = titleName.Text; + } + + private void homeScreen_CheckedChanged(object sender, EventArgs e) + { + homePreview.Visible = true; + StartupPreview.Visible = false; + } + + private void startupScreen_CheckedChanged(object sender, EventArgs e) + { + homePreview.Visible = false ; + StartupPreview.Visible = true; + } + + private void contentID_TextChanged(object sender, EventArgs e) + { + if(isValidContentId(contentID.Text)) + { + titleID.Text = contentID.Text.Substring(7, 9); + } + else + { + titleID.Text = "(INVALID)"; + } + + CreatePKG.Enabled = canMakePkg(); + } + + private void browseProject_Click(object sender, EventArgs e) + { + OpenFileDialog openFileDialog1 = new OpenFileDialog(); + openFileDialog1.Filter = "GameMaker Studio Project Files|*.project.gmx;*.yyp|GameMaker Studio 1.x Project Files|*.project.gmx|GameMaker Studio 2.x Project Files|*.yyp"; + openFileDialog1.Title = "Select a GameMaker Studio Project File"; + if (openFileDialog1.ShowDialog() == DialogResult.OK) + { + titleName.Text = "GameMaker: Studio"; + iconPath.Text = "img\\icon0.png"; + picPath.Text = "img\\pic1.png"; + contentID.Text = "IV0000-GMSP00001_00-GAMEMAKERSTUDIO0"; + projectPath.Text = openFileDialog1.FileName; + + CreatePKG.Enabled = true; + GlobalGameSettings.Enabled = true; + reloadIcons(); + } + } + + private void browseIcon_Click(object sender, EventArgs e) + { + OpenFileDialog openFileDialog1 = new OpenFileDialog(); + openFileDialog1.Filter = "Portable Network Graphics|*.PNG"; + openFileDialog1.Title = "Select a PNG File"; + if (openFileDialog1.ShowDialog() == DialogResult.OK) + { + Image img = new Bitmap(openFileDialog1.FileName); + if (img.Height == 512 && img.Width == 512) + { + IconPreview.BackgroundImage.Dispose(); + IconPreview2.BackgroundImage.Dispose(); + + IconPreview.BackgroundImage = img; + IconPreview2.BackgroundImage = img; + + homeScreen.Checked = true; + iconPath.Text = openFileDialog1.FileName; + } + else + { + img.Dispose(); //fix issue #2 + MessageBox.Show("Image is not 512x512!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + + } + } + + private void browsePic_Click(object sender, EventArgs e) + { + OpenFileDialog openFileDialog1 = new OpenFileDialog(); + openFileDialog1.Filter = "Portable Network Graphics|*.PNG"; + openFileDialog1.Title = "Select a PNG File"; + if (openFileDialog1.ShowDialog() == DialogResult.OK) + { + Image img = new Bitmap(openFileDialog1.FileName); + if (img.Height == 1080 && img.Width == 1920) + { + StartupPreview.BackgroundImage.Dispose(); + StartupPreview.BackgroundImage = img; + startupScreen.Checked = true; + picPath.Text = openFileDialog1.FileName; + } + else + { + img.Dispose(); //fix issue #2 + MessageBox.Show("Image is not 1920x1080 !", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + } + + private void IconPreview_Click(object sender, EventArgs e) + { + startupScreen.Checked = true; + } + + private void GlobalGameSettings_MouseEnter(object sender, EventArgs e) + { + GlobalGameSettings.ForeColor = Color.Blue; + GlobalGameSettings.Font = new Font(label1.Font.Name, label1.Font.SizeInPoints, FontStyle.Underline); + this.Cursor = Cursors.Hand; + } + + private void GlobalGameSettings_MouseLeave(object sender, EventArgs e) + { + GlobalGameSettings.ForeColor = Color.Black; + GlobalGameSettings.Font = new Font(label1.Font.Name, label1.Font.SizeInPoints, FontStyle.Regular); + this.Cursor = Cursors.Arrow; + } + + private void GlobalGameSettings_DoubleClick(object sender, EventArgs e) + { + GameSettings GlobalGames = new GameSettings(); + GlobalGames.ShowDialog(); + } + + + private void CopyDir(string source, string target) + { + GmacOut.AppendText("Copying Directory:\n \"" + source + "\"\n-> \"" + target + "\"\n"); + + if (!Directory.Exists(target)) Directory.CreateDirectory(target); + string[] sysEntries = Directory.GetFileSystemEntries(source); + + foreach (string sysEntry in sysEntries) + { + string fileName = Path.GetFileName(sysEntry); + string targetPath = Path.Combine(target, fileName); + if (Directory.Exists(sysEntry)) + CopyDir(sysEntry, targetPath); + else + { + GmacOut.AppendText("Copying \"" + fileName + "\"\n"); + File.Copy(sysEntry, targetPath, true); + } + } + } + + private void Make24Bit(string Src, string Dst) + { + GmacOut.AppendText("Making " + Src + " 24 bit color depth!"); + Bitmap orig = new Bitmap(Src); + if ((orig.PixelFormat != PixelFormat.Format24bppRgb)) + { + Bitmap clone = orig.Clone(new Rectangle(0, 0, orig.Width, orig.Height), PixelFormat.Format24bppRgb); + clone.Save(@Dst); + clone.Dispose(); + GmacOut.AppendText(" Done!\n"); + } + else + { + GmacOut.AppendText(" No need!\n"); + File.Copy(Src, Dst); + } + orig.Dispose(); + + + } + + private bool CompileProject(string Src, string Dst) + { + string GMVer = VersionSelect.SelectedItem.ToString(); + + + String TexturePageSize = "1028"; + + if (GMVer.StartsWith("1.")) + { + XmlDocument DefaultConfig = new XmlDocument(); + DefaultConfig.Load(Path.GetDirectoryName(projectPath.Text) + "\\Configs\\Default.config.gmx"); + TexturePageSize = DefaultConfig.GetElementsByTagName("option_ps4_texture_page")[0].InnerText; + } + + + string versionBit = GMVer.Split('.')[2]; + + if(GMVer.StartsWith("2.")) + { + GmacOut.AppendText("Creating license.plist...\n"); + String LicenseFile = GMLicense.LicenseFormat.CreateLicense("ps4", GMLicense.Keys.GetPrivateKey()); + + if (!Directory.Exists(Dst+"\\GameMakerLicense")) + { + Directory.CreateDirectory(Dst + "\\GameMakerLicense"); + } + + File.WriteAllText(Dst + "\\GameMakerLicense\\licence.plist",LicenseFile); + GmacOut.AppendText("Written license file to: " + Dst + "\\GameMakerLicense\\license.plist\n"); + } + + string args; + if (HasShaders && GMVer.StartsWith("1.")) + { + args = "/c /m=ps4 /config=\"Default\" /tgt=4294967296 /obob=True /obpp=False /obru=True /obes=False /i=3 /j=4 /cvm /tp=" + TexturePageSize + " /mv=1 /iv=0 /rv=0 /bv=" + versionBit + " /sh=False /ps4sdk=\"" + Directory.GetCurrentDirectory() + "\\ps4sdk\" /gn=\"" + titleName.Text + "\" /o=\"" + Dst + "\" \"" + Src + "\""; + } + else if(GMVer.StartsWith("1.")) + { + args = "/c /m=ps4 /config=\"Default\" /tgt=4294967296 /obob=True /obpp=False /obru=True /obes=False /i=3 /j=4 /cvm /tp=" + TexturePageSize + " /mv=1 /iv=0 /rv=0 /bv=" + versionBit + " /sh=False /gn=\"" + titleName.Text + "\" /o=\"" + Dst + "\" \"" + Src + "\""; + } + else if(HasShaders && GMVer.StartsWith("2.")) + { + args = "/c /zpex /zpuf=\""+Dst + "\\GameMakerLicense\" /baseproject=\"" +Directory.GetCurrentDirectory()+"\\versions\\"+GMVer+ "\\BaseProject\\BaseProject.yyp\" /m=PS4 /config=\"default\" /tgt=4294967296 /obob=True /obpp=False /obru=True /obes=False /i=3 /j=4 /cvm /mv=1 /iv=0 /rv=0 /bv=0 /sh=False /ps4sdk=\"" + Directory.GetCurrentDirectory() + "\\ps4sdk\" /gn=\"" + titleName.Text + "\" /o=\"" + Dst + "\" \"" + Src + "\""; + } + else + { + args = "/c /zpex /zpuf=\"" + Dst + "\\GameMakerLicense\" /baseproject=\"" + Directory.GetCurrentDirectory() + "\\versions\\" + GMVer + "\\BaseProject\\BaseProject.yyp\" /m=PS4 /config=\"default\" /tgt=4294967296 /obob=True /obpp=False /obru=True /obes=False /i=3 /j=4 /cvm /mv=1 /iv=0 /rv=0 /bv=0 /sh=False /gn=\"" + titleName.Text + "\" /o=\"" + Dst + "\" \"" + Src + "\""; + } + + GmacOut.AppendText("-- GMASSETCOMPILER BEGIN --\n"); + + GmacOut.AppendText("GMAssetCompiler.exe " + args + "\n"); + Process gmac = new Process(); + if (GMVer == "1.4.9999") + { + gmac.StartInfo.FileName = "GMAssetCompiler.exe"; + } + else + { + gmac.StartInfo.FileName = "versions\\" + GMVer + "\\GMAssetCompiler.exe"; + gmac.StartInfo.WorkingDirectory = "versions\\" + GMVer; + } + + gmac.StartInfo.Arguments = args; + gmac.StartInfo.UseShellExecute = false; + gmac.StartInfo.CreateNoWindow = true; + gmac.StartInfo.RedirectStandardOutput = true; + gmac.StartInfo.RedirectStandardError = true; + gmac.ErrorDataReceived += new DataReceivedEventHandler(gmacWrite); + gmac.OutputDataReceived += new DataReceivedEventHandler(gmacWrite); + GMAC.GetPermissionToExecute(); + gmac.Start(); + gmac.BeginOutputReadLine(); + gmac.BeginErrorReadLine(); + + while (!gmac.HasExited) + { + Application.DoEvents(); + } + if (gmac.ExitCode != 0) + { + + MessageBox.Show("GMAssetCompiler.exe Error Code: " + gmac.ExitCode.ToString(), "GMAC Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + Directory.Delete(Dst, true); + return false; + } + gmac.Dispose(); + GmacOut.AppendText("-- GMASSETCOMPILER FINISHED! --\n"); + + if (GMVer.StartsWith("2.")) + { + GmacOut.AppendText("Removing license.plist..."); + File.Delete(Dst + "\\GameMakerLicense\\license.plist"); + Directory.Delete(Dst + "\\GameMakerLicense", true); + GmacOut.AppendText("OK!\n"); + } + + GmacOut.AppendText("Renaming to game.win..."); + foreach (String file in Directory.GetFiles(Dst)) + { + if (file.EndsWith(".win")) + { + File.Move(file, Dst + "\\game.win"); + } + + if (file.EndsWith(".yydebug")) + { + File.Delete(file); + } + } + GmacOut.AppendText("OK!\n"); + return true; + } + + + + void gmacWrite(object sender, DataReceivedEventArgs e) + { + Trace.WriteLine(e.Data); + this.BeginInvoke(new MethodInvoker(() => + { + GmacOut.AppendText(e.Data + "\n"); + })); + } + + private void AddFile(Gp4Project proj, string targetPath, string origPath) + { + var f = origPath; + var fileEntry = new Gp4File + { + OrigPath = f, + TargetPath = targetPath + Path.GetFileName(origPath) + }; + proj.files.Items.Add(fileEntry); + } + + private void AddFileTree(Gp4Project proj, Dir parent, string path) + { + var newDir = proj.AddDir(parent, Path.GetFileName(path)); + foreach (var d in Directory.EnumerateDirectories(path)) + { + AddFileTree(proj, newDir, d); + } + var targetPath = newDir.Path; + foreach (var f in Directory.EnumerateFiles(path)) + { + AddFile(proj, targetPath, f); + } + } + + private void CreatePKG_Click(object sender, EventArgs e) + { + string GMVer = VersionSelect.SelectedItem.ToString(); + + if(Path.GetExtension(projectPath.Text).ToLower() == ".yyp" && GMVer.StartsWith("1.")) + { + MessageBox.Show("Cannot build GMS2 Project using GMS1.4", "Error!", MessageBoxButtons.OK, MessageBoxIcon.Error); + return; + } + else if(Path.GetExtension(projectPath.Text).ToLower() == ".gmx" && GMVer.StartsWith("2.")) + { + MessageBox.Show("Cannot build GMS1.4 Project using GMS2", "Error!", MessageBoxButtons.OK, MessageBoxIcon.Error); + return; + } + + string tempdir = ""; + + SaveFileDialog saveFileDialog1 = new SaveFileDialog(); + saveFileDialog1.Filter = "PS4 Packages|*.PKG"; + saveFileDialog1.Title = "Save PKG File"; + saveFileDialog1.FileName = contentID.Text; + CreatePKG.Enabled = false; + + if(GMVer.StartsWith("1.")) + HasShaders = File.ReadAllText(projectPath.Text).Contains(""); //Too lazy to parse XML properly. + else if(GMVer.StartsWith("2.")) + HasShaders = File.ReadAllText(projectPath.Text).Contains("GMShader"); //Too lazy to parse XML properly. + if (HasShaders) + { + if (!Directory.Exists(@"ps4sdk")) + { + DialogResult msgResult = MessageBox.Show("It's been detected that you are using Shaders in your GM Project\nHowever no copy of the PS4 Shader Compiler (orbis-wave-psslc.exe) was found.\nBrowse to orbis-wave-psslc.exe?", "Shader Warning", MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation); + if (msgResult == DialogResult.Yes) + { + OpenFileDialog openFileDialog = new OpenFileDialog(); + openFileDialog.Filter = "orbis-wave-psslc.exe|orbis-wave-psslc.exe"; + openFileDialog.Title = "Browse to PS4 Shader Compiler."; + if (openFileDialog.ShowDialog() == DialogResult.OK) + { + + if (!Directory.Exists(@"ps4sdk")) + { + GmacOut.AppendText("Creating PS4SDK Directory Structure\n"); + Directory.CreateDirectory("ps4sdk"); + Directory.CreateDirectory("ps4sdk/host_tools"); + Directory.CreateDirectory("ps4sdk/host_tools/bin"); + } + File.Copy(openFileDialog.FileName, @"ps4sdk/host_tools/bin/orbis-wave-psslc.exe"); + + } + else + { + CreatePKG.Enabled = true; + return; + } + } + else + { + CreatePKG.Enabled = true; + return; + } + + } + } + + + if (saveFileDialog1.ShowDialog() == DialogResult.OK) + { + tempdir = Path.GetDirectoryName(saveFileDialog1.FileName) + "\\_temp"; + + if (Directory.Exists(tempdir)) + { + Directory.Delete(tempdir, true); + } + Directory.CreateDirectory(tempdir); + + if (GMVer == "1.4.9999") + { + CopyDir(@"Runner", tempdir); + } + else + { + CopyDir("versions\\" + GMVer + "\\Runner", tempdir); + } + + + Make24Bit(iconPath.Text, tempdir + "\\sce_sys\\icon0.png"); + Make24Bit(picPath.Text, tempdir + "\\sce_sys\\pic1.png"); + + if (!CompileProject(projectPath.Text, tempdir + "\\games")) + { + Directory.Delete(tempdir, true); + CreatePKG.Enabled = true; + return; + } + } + else + { + CreatePKG.Enabled = true; + return; + } + + FileStream fd = File.Open(tempdir + "\\sce_sys\\param.sfo", FileMode.OpenOrCreate, FileAccess.ReadWrite); + + GmacOut.AppendText("Writing " + titleName.Text + " to TITLE of param.sfo\n"); + fd.Seek(0x350, SeekOrigin.Begin); + foreach (Byte by in ASCIIEncoding.ASCII.GetBytes(titleName.Text)) + { + fd.WriteByte(by); + } + + + GmacOut.AppendText("Writing " + titleID.Text + " to TITLE_ID of param.sfo\n"); + fd.Seek(0x3D0, SeekOrigin.Begin); + foreach (Byte by in ASCIIEncoding.ASCII.GetBytes(titleID.Text)) + { + fd.WriteByte(by); + } + + GmacOut.AppendText("Writing " + contentID.Text + " to CONTENT_ID of param.sfo!\n"); + fd.Seek(0x284, SeekOrigin.Begin); + foreach (Byte by in ASCIIEncoding.ASCII.GetBytes(contentID.Text)) + { + fd.WriteByte(by); + } + fd.Close(); + + + GmacOut.AppendText("Creating GP4 ..."); + + Gp4Project proj = Gp4Project.Create(VolumeType.pkg_ps4_app); + Dir root = null; + foreach (var file in Directory.GetFileSystemEntries(tempdir)) + { + if (File.Exists(file)) + { + AddFile(proj, "", file); + } + else if (Directory.Exists(file)) + { + AddFileTree(proj, root, file); + } + } + + proj.volume.Package.ContentId = contentID.Text; + proj.volume.Package.Passcode = "00000000000000000000000000000000"; + + GmacOut.AppendText("OK!\n"); + + + if (File.Exists(saveFileDialog1.FileName)) + { + File.Delete(saveFileDialog1.FileName); + } + + GmacOut.AppendText("Building PKG ..."); + Thread thr = new Thread(() => + { + PkgBuilder pkg = new PkgBuilder(PkgProperties.FromGp4(proj, "")); + pkg.Write(saveFileDialog1.FileName); + }); + thr.Start(); + + while (thr.IsAlive) + { + Application.DoEvents(); + } + + GmacOut.AppendText("OK!\n"); + + + + GmacOut.AppendText("Deleting " + tempdir + " ..."); + Directory.Delete(tempdir, true); + GmacOut.AppendText("OK!\n"); + + GmacOut.AppendText("Done!\n"); + CreatePKG.Enabled = true; + MessageBox.Show("PKG Created!", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information); + } + + public void ReloadVersions() + { + VersionSelect.Items.Clear(); + VersionSelect.Items.Add("1.4.9999"); + try + { + foreach (String version in Directory.GetDirectories(@"versions")) + { + VersionSelect.Items.Add(Path.GetFileName(version)); + } + } + catch (Exception) { }; + + VersionSelect.Items.Add("Manager"); + + VersionSelect.SelectedIndex = 0; + } + + private void VersionSelect_SelectedIndexChanged(object sender, EventArgs e) + { + //1.4.9999 comes built in + + if(VersionSelect.Text.StartsWith("1.")) + { + GameSettings.Enabled = true; + } + else + { + GlobalGameSettings.Enabled = false; + } + + if (VersionSelect.SelectedItem.ToString() == "Manager") + { + VersionSelect.SelectedIndex -= 1; + this.Enabled = false; + VersionManager VM = new VersionManager(); + VM.Show(); + VM.FormClosing += VM_FormClosing; + } + } + + private void VM_FormClosing(object sender, FormClosingEventArgs e) + { + this.Enabled = true; + ReloadVersions(); + this.Focus(); + } + + + } +} diff --git a/GayMaker-Studio/GayMakerStudio.resx b/GayMaker-Studio/GayMakerStudio.resx new file mode 100644 index 0000000..d41dfac --- /dev/null +++ b/GayMaker-Studio/GayMakerStudio.resx @@ -0,0 +1,11499 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + 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 + 03baAWFPgcsAAAAASUVORK5CYII= + + + + + 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 + +B33EKDXmnyQM6N+wFOChmhA/fjXeWEMkrnaYGwWD8pylUJUz2eVUkp9GuqT/6dPRQA9d36ktc+WSM8l + l2IiXVbkuQTvdA3Nmz03dqHHyoXekdeSfbZs3LouPDNy5Y5VYSlhkSmxq9b9cnfz9sQ1aTvjs/zHXQ93 + vLve+VHCnPuJfg8eXv31x0e/vr730+t7SyYMi3Wa0LtJE9dBvSOmjQqeOS5qjt08x7E7bx48lb/mt2cZ + 3z/a0bt21YZff9Xg66961a7Rr16tzlUrty5XtlmZUixpUvrrXrVq9Ktba1L75htnT+xlVTV8xsjvruf8 + 8eLMm1fn/3p54d8vL/z14twfD/d8v3zAD3M7DN9xbWjmtbEZJ5ziNvomp7tsjV2wJX2MT2DR0pHX57TP + HNFwtnX/kSt8egYv6Ba0oKPn3LZOPm39QtuvXNNiyqzmzj6t1kS12rC+Ro+Ro2e52sSuarsrtkNYWC9n + m7oOnla2rhVGOvZzdavQb3KxZisYQ5v8PJlRf86UoKEXRX0VdF4Yg2SuNhibxYOyXL0YVM9nlVJKfRrq + k/+nT4X3lAhuXu7zTlVL9rQq06dW2d61Sner+nUby8/rf/mRVfF/Vf/sw+rFP7Qq/lGtzz+s/cVH9b+0 + aF7yk1ZlP2M9vWqW6Vi5RKeqX9YtZdGo7Me0l6Nj3VJD21VZ6z3shwvhr8+HH0y0S4+eerNgYVTHHvt7 + jC/qMupIX+uDvSfmdhme22dC2rSJge4DE4PGXUmflRY07niSx7OzkScS54SM67Nqcv+ISb3X2fQ9ucZl + d4idv01XP7tuvnZd59n3WOzcZ4lr/yC3fiFeA1f6DI7wH5oSaZcaabM71nHnetu8aPs9CY6nc50eno+4 + medxJd7pVu7cW3nzrie5XU+bc+/AokcXAl88Pfviu7OP7246ned15/yS509Ofntjxb2jS65m+V7Pm3+z + aPGNosU38xde2Blw80BI4Vbf3CTf/BT/3OS5TATQXYdN6DpsYqueQ2rWs6rbqEqbTvX7DGnDNLJLw47V + ylaqUqZcxVJVqpQtX6l01cplbKqUnVO7gkfl0ksqlw2qXGZRpVJhs/unhI7L2WB9NM3lm6PLX90tePng + zB8vr/zw8GhSxORT2e4MoPcjB+9HQ2LUi6WUljAjRQfKKdFp7lQCoItG+zJ6ZujMAZqBMgI0LC33noVL + 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 + QEtInLC2xgC0yin1nmvD3dPDRYNVLsV+DgWeriXekU2x5XYqVZYK9XYqoRoC7UHaZZby3eF6T+o8l6rc + Xzb5LBY7gUyTvep0mjUg4DtlLoslzuhO3UBt4SY3C527U90v5sHZhGu3x2HpM6yBnkJqoKe+LcEJhXfK + z90fb39Q5f641uN+peuzBu97pefA5eluZ1bmSgev9w/PDY0tjt56fWv96/pPB/r7IVZ/ORTqQPv4h/QZ + uEy7+A205cdmZcdl58eGBYenxsUnhOWF+pU1xLl3dadGxKQGhWaHBw+VxLTNdbx92L800/+oO22hOTHQ + RFWTlU6OjU2KiTFDjSNeQ6DOybDC2SxYW+1hoevFKLOBuriu6tjOnpKJoSK2QwdPcbGn6Wlo83IaCfP7 + qMmHnVT0UpZU42RXYmVpcjb1PaViJikmR08jx0Qnw0inyMpkJCaoxs4sfuyoJC21BA2VFCOtEgeLjqiQ + vpiQ7hml/KvdIf1tbm1NFhUNQa3VkeezYwYy/Fqz7BqaMwYTakbi0hrjx4aTrl5Mqy/3vdgRPDcScq3P + b3woKCfOqmU0OSnONqDUr7HKvakt0is31cndSs/KUNbMRtLARCsq+FRutnRwrEpzj2r7gHrXMNA/caB/ + YYlaWfv07v2n5fcby+8+vln5+PzV2pMX7x8+Wbm+8PLi1cfdI3fruxcyK6cCU0ftQnpOOzfKmlUJaBUz + KuaQHE89LJiEGROjzSeFH/3/w/cYV9x2zhiivdsP79qOv3s7xcHdBLu3kR3YwU5+kJ5oH+Wh3RxURyRY + ySTBf0IR7KM+svcYwT5mskOEe7YT79suRHZAiuLACYr9VspsfEyE5Pg72Ah2PxwIeTQIFDrX4HEpz2La + TPNBX0iGg/Ip6mPq1NQmLKxWHNw+MvKuYuLeMnLPBgtdRIWCFFUCFVV8ZGQdBfidhYWDlVVDVFT9FRXb + Qh3D1NXDNTRcT4hHnDoZeeqUl9RxVwlRt+OC/oqSVc76waqSRTYnK4N0W5NN2lPM+rLNZjqd3jyuXHnZ + 8O5N5/u3fe9ej7+YCl4sPrdQ6L5Yfu7N7Yb3yzffr95fewf15tngRKPTzVG/dyv33kPBwugX8yG3a1wX + q30Xa7we9nu9fTG28vrG8uu5OzN5LVlWxYk2gJ7BO6ZS8Z7XMpqMkoSImICYFAiiMyk5aAlJyAkJCPEJ + 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 + vKLzCS1d4SGWduFO5xI9/f08nMJiA0KL4+Iq0xI78hrzU8ODY0MTk4KDkwKT86KLKn29grVVzImJGeio + OGgo2ZiouTjpeFzt3fU0jY5RCznoWToYmvVUFCefc5Ng40v2OnuzPmG2OnauMnK+PHok1T/Ny/XeRN+j + i70XO5pyo6IGSnNzIkPyYyLSA3xDba3SgvyL09NiAwMjfH3iw6IygrwzTNQKTZVb3Ax7vIwzw/z0yvoF + 22+p3nxjufRG4/xD3fkXHk+fnZl6YnTtvtO1m54Lt+MW5qpuj8bevm5z87Hj/L2im4NF872liz26V26p + dF5WrjsvG11h3ThnVD0qGZon5xgsdTZSwSvJqaDDq23Ys20ocHTMp2/UubjTsTrYodvJrcfknzjQ/3wr + bzACGFlAqxhbJgRacGM8e/X++au1F2/Wn758//DpKtCDx8sPn6zeevBm4d7rW/ffAO2GLztyL3fczOIL + oNGppaFLD4cvPxyaeDg48aCpbxFVQ+9CecuNwoYZVAX1M+5xg99/lv/qdv3hfUDvMcSB3vUr3t5t24j3 + 7cLfuePI7h2E+3aS4+8Dh8T7dxHv20l2aDfF4b278UAf1IT+hWDXr6gDLUF5QIwMOtDaYtTy3CTiLASK + zKSCNIcYyfcwU+xxkRA05+W3FRJUpaRWomHVomcMVFQx4uTykpbRZ2e35OZxFBeZKovBLP+MlnAgDjRa + wrE23fBkqNBakF2fk83nJJ8+M5MeE5MBI12OhXzG2RMh2nzBKvzRulI59kpBoiz9KdbjBbZrj2tQ0EJ5 + CTw+va57WubwrD78ZbPLt4/zv/327evXL7/99hXo65fVW70WT2YKv355hy4a/fXrxsbHdy+Xrl8rs7xc + 7D5d4z3Xk3KjP+/+TOXsgHt7unl1jBFcxo4jivN0EKdmEL9p+XGPbvXq31Sr/6Ve/81o4Jvj5U/6XR/k + 814Ia7rziatQsQhSswiTHWNj5hQhOkq/n5CEmIqG6CjD9v0HeVkZVCQENGUFZYV5RLiZ+NkYT8sJqkny + y4twUJAR40F0DptEdAUCNGBigL9btZk8iRPDQ9wYOQVbNEYON8/uwGzljQFoQM+AmLECAA2NZwjNnQJw + ZTqEnuFyzp0CZp38pp1IqQYMkLl98CFkVMZj1MRj0o5yM2BoXHpGiBkREqPojK62gV2FQ8ighOlMLQrQ + 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 + 03baAWFPgcsAAAAASUVORK5CYII= + + + + + Qk02AwAAAAAAADYAAAAoAAAAEAAAABAAAAABABgAAAAAAAAAAAATCwAAEwsAAAAAAAAAAAAA//////// + ////////////////////////////////////////////////////////////////rntutYSEtYSEtYSE + tYSEtYSEtYSEtYSEtYSEtYSEtYSEtYSE////////////////tYJy/OHL++DI+97E+9zC+tq++ti7+9e4 + +tS0+dKx+tCutYSE////////////////u4h1/OTP/OLM++DJ+97G+9zD+9q/+9m8+ta4+tW1+tOxtYSE + ////////////////wo95/OfU/OTR/OPO/OHKv7XS38jE+9vA+tq8+9e5+9W2tYSE//////////////// + yJV8/OjY/ObV5sm8UGPfADP/QFvo+97E+tzB+9m++ti7tYSE////////////////z5yA/Ovdn5XEED35 + ADP/ED35ADP/r5+++97G+9zC+tu/tYSE////////////////1aKD/e7g0sDJIEbyr6XK6Mu+ED35IEby + 8cyv+9/G+93DtYSE////////////////3KmH/vDl/e7h/ezf/evb/enYgIPUADP/i4rR/OHK+9/HtYSE + ////////////////3KmH/fPq/fHm/e/j/e3f/Ovc/enZIEbyADP/5si5/OHLtYSE//////////////// + 3KmH/fXt/vPq/fLn/e/k/e3h/ezezbvFADP/n5bG/OTQtYSE////////////////3KmH/vjy/vXu/fTs + /fLo/fDl/e7i/eze5MvB/OjY/ObUtYSE////////////////3KmH//r3/vjz/vbw/vTs/vLp/fHm/e/i + /9XM/9XM9bOqtYSE////////////////3KmH//37//v3/vn0/vfx/vXt/fPr/fHn96ZD96ZD4JJBtYSE + ////////////////3KmH//////77//v4/vr1/vjx/vbu/fPs3KmH6rN3tYSE//////////////////// + 3KmH3KmH3KmH3KmH3KmH3KmH3quI1qOE3KmHtYSE//////////////// + + + + + iVBORw0KGgoAAAANSUhEUgAAAdYAAAGJCAYAAAA3whJ4AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + 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 + bThUhNKBMgzDML4Nh4pQOlCGYRjGt+FQEUoHyjAMw/g2HCpC6UAZhmEY34aDg4ODg4ODg4ODg4ODg4OD + g4ODg4Pjuo0bbvgXUyrx0js5RMoAAAAASUVORK5CYII= + + + + + iVBORw0KGgoAAAANSUhEUgAAB4AAAAQ4CAIAAABnsVYUAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1 + MAAA6mAAADqYAAAXb5JfxUYAAAAJcEhZcwAACwwAAAsMAT9AIsgAADgKaVRYdFhNTDpjb20uYWRvYmUu + eG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/ + Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29y + ZSA1LjUtYzAyMSA3OS4xNTQ5MTEsIDIwMTMvMTAvMjktMTE6NDc6MTYgICAgICAgICI+CiAgIDxyZGY6 + UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+ + CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICAgICAgICAgIHhtbG5zOnhtcD0i + aHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZGM9Imh0dHA6Ly9w + dXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgICAgICAgICB4bWxuczpwaG90b3Nob3A9Imh0dHA6 + Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOnhtcE1NPSJodHRw + Oi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIgogICAgICAgICAgICB4bWxuczpzdEV2dD0iaHR0cDov + L25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIgogICAgICAgICAgICB4bWxu + czp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZXhp + Zj0iaHR0cDovL25zLmFkb2JlLmNvbS9leGlmLzEuMC8iPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29s + PkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cyk8L3htcDpDcmVhdG9yVG9vbD4KICAgICAgICAgPHht + cDpDcmVhdGVEYXRlPjIwMTQtMTEtMTFUMTE6Mjk6NDhaPC94bXA6Q3JlYXRlRGF0ZT4KICAgICAgICAg + PHhtcDpNb2RpZnlEYXRlPjIwMTQtMTEtMTFUMTM6NTc6MDZaPC94bXA6TW9kaWZ5RGF0ZT4KICAgICAg + ICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxNC0xMS0xMVQxMzo1NzowNlo8L3htcDpNZXRhZGF0YURhdGU+ + CiAgICAgICAgIDxkYzpmb3JtYXQ+aW1hZ2UvcG5nPC9kYzpmb3JtYXQ+CiAgICAgICAgIDxwaG90b3No + b3A6Q29sb3JNb2RlPjM8L3Bob3Rvc2hvcDpDb2xvck1vZGU+CiAgICAgICAgIDx4bXBNTTpJbnN0YW5j + ZUlEPnhtcC5paWQ6OGVhMDQ3YmQtZjQ0OS0zMDQzLTk4NTAtMGVhMDY1MjE5NzJjPC94bXBNTTpJbnN0 + YW5jZUlEPgogICAgICAgICA8eG1wTU06RG9jdW1lbnRJRD54bXAuZGlkOjhlYTA0N2JkLWY0NDktMzA0 + My05ODUwLTBlYTA2NTIxOTcyYzwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOk9yaWdp + bmFsRG9jdW1lbnRJRD54bXAuZGlkOjhlYTA0N2JkLWY0NDktMzA0My05ODUwLTBlYTA2NTIxOTcyYzwv + eG1wTU06T3JpZ2luYWxEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06SGlzdG9yeT4KICAgICAgICAg + ICAgPHJkZjpTZXE+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2Ui + PgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPmNyZWF0ZWQ8L3N0RXZ0OmFjdGlvbj4KICAg + ICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo4ZWEwNDdiZC1mNDQ5LTMwNDMt + OTg1MC0wZWEwNjUyMTk3MmM8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2 + dDp3aGVuPjIwMTQtMTEtMTFUMTE6Mjk6NDhaPC9zdEV2dDp3aGVuPgogICAgICAgICAgICAgICAgICA8 + c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpPC9zdEV2dDpzb2Z0 + d2FyZUFnZW50PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgPC9yZGY6U2VxPgog + ICAgICAgICA8L3htcE1NOkhpc3Rvcnk+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6 + T3JpZW50YXRpb24+CiAgICAgICAgIDx0aWZmOlhSZXNvbHV0aW9uPjcyMDAwMC8xMDAwMDwvdGlmZjpY + UmVzb2x1dGlvbj4KICAgICAgICAgPHRpZmY6WVJlc29sdXRpb24+NzIwMDAwLzEwMDAwPC90aWZmOllS + ZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpSZXNvbHV0aW9uVW5pdD4yPC90aWZmOlJlc29sdXRpb25V + bml0PgogICAgICAgICA8ZXhpZjpDb2xvclNwYWNlPjY1NTM1PC9leGlmOkNvbG9yU3BhY2U+CiAgICAg + ICAgIDxleGlmOlBpeGVsWERpbWVuc2lvbj4xOTIwPC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAg + ICAgPGV4aWY6UGl4ZWxZRGltZW5zaW9uPjEwODA8L2V4aWY6UGl4ZWxZRGltZW5zaW9uPgogICAgICA8 + L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAK + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAog + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + IAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAK + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAog + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + IAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg + ICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0idyI/Pu7TCs0AAJje + SURBVHhe7N0HmFxlvT9wtmV3k+ym9957771nlyaEmtB7C50ASSAEAgkpxIJKEVQUFQkKooioIEU6Uhb1 + Xm9BvXrvVbzK3wIKCvg/2T1ZZs6ZnZ2Znd0UPp/nfXiSPe+8p8yZ5cn3vPN79wMAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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 + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADGix + 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 + p639AAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/GayMaker-Studio/Program.cs b/GayMaker-Studio/Program.cs new file mode 100644 index 0000000..f327fb6 --- /dev/null +++ b/GayMaker-Studio/Program.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace GayMaker_Studio +{ + static class Program + { + public static GayMakerStudio GMS; + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + GMS = new GayMakerStudio(); + Application.Run(GMS); + } + } +} diff --git a/GayMaker-Studio/Properties/AssemblyInfo.cs b/GayMaker-Studio/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..7ee3d36 --- /dev/null +++ b/GayMaker-Studio/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("GayMaker-Studio")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("GayMaker-Studio")] +[assembly: AssemblyCopyright("Copyright © 2019")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("a574f9f8-d3b2-4ef6-80de-5d546c43b57d")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/GayMaker-Studio/Properties/Resources.Designer.cs b/GayMaker-Studio/Properties/Resources.Designer.cs new file mode 100644 index 0000000..ba0099c --- /dev/null +++ b/GayMaker-Studio/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace GayMaker_Studio.Properties +{ + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources + { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() + { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager + { + get + { + if ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("GayMaker_Studio.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + } +} diff --git a/GayMaker-Studio/Properties/Resources.resx b/GayMaker-Studio/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/GayMaker-Studio/Properties/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/GayMaker-Studio/Properties/Settings.Designer.cs b/GayMaker-Studio/Properties/Settings.Designer.cs new file mode 100644 index 0000000..792b6bd --- /dev/null +++ b/GayMaker-Studio/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace GayMaker_Studio.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/GayMaker-Studio/Properties/Settings.settings b/GayMaker-Studio/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/GayMaker-Studio/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/GayMaker-Studio/VersionManager.Designer.cs b/GayMaker-Studio/VersionManager.Designer.cs new file mode 100644 index 0000000..d79bb69 --- /dev/null +++ b/GayMaker-Studio/VersionManager.Designer.cs @@ -0,0 +1,150 @@ +namespace GayMaker_Studio +{ + partial class VersionManager + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(VersionManager)); + this.label1 = new System.Windows.Forms.Label(); + this.DownloadList = new System.Windows.Forms.ListBox(); + this.DownloadProgress = new System.Windows.Forms.ProgressBar(); + this.StatusText = new System.Windows.Forms.Label(); + this.DownloadButton = new System.Windows.Forms.Button(); + this.label2 = new System.Windows.Forms.Label(); + this.DownloadedList = new System.Windows.Forms.ListBox(); + this.DeleteVersion = new System.Windows.Forms.Button(); + this.SuspendLayout(); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(12, 9); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(109, 13); + this.label1.TabIndex = 0; + this.label1.Text = "Available Downloads:"; + // + // DownloadList + // + this.DownloadList.FormattingEnabled = true; + this.DownloadList.Location = new System.Drawing.Point(12, 25); + this.DownloadList.Name = "DownloadList"; + this.DownloadList.Size = new System.Drawing.Size(461, 186); + this.DownloadList.TabIndex = 1; + // + // DownloadProgress + // + this.DownloadProgress.Location = new System.Drawing.Point(12, 262); + this.DownloadProgress.Name = "DownloadProgress"; + this.DownloadProgress.Size = new System.Drawing.Size(461, 23); + this.DownloadProgress.TabIndex = 2; + // + // StatusText + // + this.StatusText.AutoSize = true; + this.StatusText.Location = new System.Drawing.Point(9, 246); + this.StatusText.Name = "StatusText"; + this.StatusText.Size = new System.Drawing.Size(52, 13); + this.StatusText.TabIndex = 3; + this.StatusText.Text = "Waiting..."; + // + // DownloadButton + // + this.DownloadButton.Location = new System.Drawing.Point(12, 220); + this.DownloadButton.Name = "DownloadButton"; + this.DownloadButton.Size = new System.Drawing.Size(461, 23); + this.DownloadButton.TabIndex = 4; + this.DownloadButton.Text = "Download This Version"; + this.DownloadButton.UseVisualStyleBackColor = true; + this.DownloadButton.Click += new System.EventHandler(this.DownloadButton_Click); + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(12, 288); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(110, 13); + this.label2.TabIndex = 5; + this.label2.Text = "Allready Downloaded:"; + // + // DownloadedList + // + this.DownloadedList.FormattingEnabled = true; + this.DownloadedList.Items.AddRange(new object[] { + "1.4.9999"}); + this.DownloadedList.Location = new System.Drawing.Point(12, 304); + this.DownloadedList.Name = "DownloadedList"; + this.DownloadedList.Size = new System.Drawing.Size(461, 199); + this.DownloadedList.TabIndex = 6; + // + // DeleteVersion + // + this.DeleteVersion.Location = new System.Drawing.Point(12, 509); + this.DeleteVersion.Name = "DeleteVersion"; + this.DeleteVersion.Size = new System.Drawing.Size(461, 23); + this.DeleteVersion.TabIndex = 7; + this.DeleteVersion.Text = "Delete This Version"; + this.DeleteVersion.UseVisualStyleBackColor = true; + this.DeleteVersion.Click += new System.EventHandler(this.DeleteVersion_Click); + // + // VersionManager + // + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; + this.ClientSize = new System.Drawing.Size(485, 544); + this.Controls.Add(this.DeleteVersion); + this.Controls.Add(this.DownloadedList); + this.Controls.Add(this.label2); + this.Controls.Add(this.DownloadButton); + this.Controls.Add(this.StatusText); + this.Controls.Add(this.DownloadProgress); + this.Controls.Add(this.DownloadList); + this.Controls.Add(this.label1); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "VersionManager"; + this.ShowInTaskbar = false; + this.Text = "GameMaker Studio Version Manager"; + this.Load += new System.EventHandler(this.VersionManager_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Label label1; + private System.Windows.Forms.ListBox DownloadList; + private System.Windows.Forms.ProgressBar DownloadProgress; + private System.Windows.Forms.Label StatusText; + private System.Windows.Forms.Button DownloadButton; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.ListBox DownloadedList; + private System.Windows.Forms.Button DeleteVersion; + } +} \ No newline at end of file diff --git a/GayMaker-Studio/VersionManager.cs b/GayMaker-Studio/VersionManager.cs new file mode 100644 index 0000000..1fe4e32 --- /dev/null +++ b/GayMaker-Studio/VersionManager.cs @@ -0,0 +1,358 @@ +using GMTools; +using Ionic.Zip; +using System; +using System.Drawing; +using System.IO; +using System.Net; +using System.Net.Cache; +using System.Threading; +using System.Windows.Forms; + +namespace GayMaker_Studio +{ + + public partial class VersionManager : Form + { + //private const int NUMBER_OF_CDN_URLS = 4; //Uncomment for GMS2 + private const int NUMBER_OF_CDN_URLS = 2; + + private string currentDownload = ""; + + private void CopyDir(string source, string target) + { + + if (!Directory.Exists(target)) Directory.CreateDirectory(target); + string[] sysEntries = Directory.GetFileSystemEntries(source); + + foreach (string sysEntry in sysEntries) + { + string fileName = Path.GetFileName(sysEntry); + string targetPath = Path.Combine(target, fileName); + if (Directory.Exists(sysEntry)) + CopyDir(sysEntry, targetPath); + else + { + File.Copy(sysEntry, targetPath, true); + } + } + } + + private string getUrlFileName(string url) + { + string filename = Path.GetFileName(new Uri(url).LocalPath); + if (!Path.HasExtension(filename)) + filename = Path.ChangeExtension(filename, ".zip"); + return filename; + } + + public VersionManager() + { + //Bypass Windows DPI Scaling + Font = new Font(Font.Name, 8.25f * 96f / CreateGraphics().DpiX, Font.Style, Font.Unit, Font.GdiCharSet, Font.GdiVerticalFont); + InitializeComponent(); + } + + private void VersionManager_Load(object sender, EventArgs e) + { + this.Owner = Program.GMS; + for (int cdnIndex = 1; cdnIndex <= NUMBER_OF_CDN_URLS; cdnIndex++) + { + Thread downloadThread = new Thread(() => + { + CDN.UseCDN(CDNUrls.FromIndex(cdnIndex)); + }); + + downloadThread.Start(); + + while (downloadThread.IsAlive) + Application.DoEvents(); + + + foreach (String Version in CDN.GetVersions("ps4")) + { + if (Version != "1.4.9999" || DownloadList.Items.Contains(Version)) + DownloadList.Items.Add(Version); + } + } + + foreach (String dir in Directory.GetDirectories(@"versions")) + { + DownloadedList.Items.Add(Path.GetFileName(dir)); + DownloadList.Items.Remove(Path.GetFileName(dir)); + } + } + + private void startDownload(string URL, string path) + { + currentDownload = getUrlFileName(URL); + DownloadProgress.Value = 0; + DownloadProgress.Style = ProgressBarStyle.Continuous; + + + WebClient wc = new WebClient(); + wc.CachePolicy = new RequestCachePolicy(RequestCacheLevel.NoCacheNoStore); + wc.Dispose(); + + WebClient client = new WebClient(); + client.Headers.Add("pragma", "no-cache"); + + + client.DownloadProgressChanged += new DownloadProgressChangedEventHandler(client_DownloadProgressChanged); + client.DownloadFileAsync(new Uri(URL), path); + + while (client.IsBusy) + Application.DoEvents(); + + StatusText.Text = "Waiting..."; + DownloadProgress.Value = 0; + DownloadProgress.Style = ProgressBarStyle.Continuous; + } + + private void extractFile(string zipfile, string path, string password = "") + { + + DownloadProgress.Style = ProgressBarStyle.Marquee; + Thread extractThread = new Thread(() => + { + + if (Directory.Exists(path)) + { + while (true) + { + try + { + Directory.Delete(path, true); + } + catch (Exception) { }; + break; + } + } + + + Thread.CurrentThread.IsBackground = true; + Invoke((Action)delegate { StatusText.Text = "Extracting: " + Path.GetFileName(zipfile); }); + + + using (ZipFile archive = new ZipFile(zipfile)) + { + archive.Password = password; + archive.Encryption = EncryptionAlgorithm.PkzipWeak; + archive.ExtractAll(path); + } + + }); + + extractThread.Start(); + + while (extractThread.IsAlive) + Application.DoEvents(); + + StatusText.Text = "Waiting..."; + DownloadProgress.Value = 0; + DownloadProgress.Style = ProgressBarStyle.Continuous; + + + File.Delete(zipfile); + } + + + private void client_DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e) + { + DownloadProgress.Value = e.ProgressPercentage; + StatusText.Text = "Downloading: "+ currentDownload + " " + e.ProgressPercentage + "% (" + e.BytesReceived + "b / " + e.TotalBytesToReceive + "b)"; + } + + private void DownloadButton_Click(object sender, EventArgs e) + { + if (DownloadList.SelectedIndex <= -1) { return; } + DownloadList.Enabled = false; + DownloadButton.Enabled = false; + ControlBox = false; + + string version = DownloadList.SelectedItem.ToString(); + + for (int cdnIndex = 1; cdnIndex <= NUMBER_OF_CDN_URLS; cdnIndex++) + { + Thread downloadThread = new Thread(() => + { + CDN.UseCDN(CDNUrls.FromIndex(cdnIndex)); + }); + + downloadThread.Start(); + + while (downloadThread.IsAlive) + Application.DoEvents(); + + string ps4Url = CDN.GetModuleForVersion(version, "ps4"); + if (ps4Url != "NF") + { + string ps4Filename = getUrlFileName(ps4Url); + string ps4Password = CDN.GetPassword(ps4Filename); + + string gamemakerUrl = CDN.GetModuleForVersion(version, "original"); + string gamemakerFilename = getUrlFileName(gamemakerUrl); + string gamemakerPassword = CDN.GetPassword(gamemakerFilename); + + startDownload(ps4Url, ps4Filename); + extractFile(ps4Filename, @"_ps4", ps4Password); + + startDownload(gamemakerUrl, gamemakerFilename); + extractFile(gamemakerFilename, @"_gamemaker", gamemakerPassword); + + DownloadProgress.Style = ProgressBarStyle.Marquee; + StatusText.Text = "Copying Files..."; + Application.DoEvents(); + + Thread copyThread = new Thread(() => + { + + Directory.CreateDirectory(@"versions\\" + version + "\\Runner"); + Directory.CreateDirectory(@"versions\\" + version + "\\Shaders"); + + if (version.StartsWith("1.")) + { + try + { + File.Copy(@"_gamemaker\\GMAssetCompiler.exe", @"versions\\" + version + "\\GMAssetCompiler.exe", true); + File.Copy(@"_gamemaker\\ffmpeg.exe", @"versions\\" + version + "\\ffmpeg.exe", true); + + File.Copy(@"_gamemaker\\BouncyCastle.Crypto.dll", @"versions\\" + version + "\\BouncyCastle.Crypto.dll", true); + File.Copy(@"_gamemaker\\spine-csharp.dll", @"versions\\" + version + "\\spine-csharp.dll", true); + File.Copy(@"_gamemaker\\SharpCompress.dll", @"versions\\" + version + "\\SharpCompress.dll", true); + File.Copy(@"_gamemaker\\Ionic.Zip.Reduced.dll", @"versions\\" + version + "\\Ionic.Zip.Reduced.dll", true); + File.Copy(@"_gamemaker\\Newtonsoft.Json.dll", @"versions\\" + version + "\\Newtonsoft.Json.dll", true); + } + catch (Exception) { }; + } + else if(version.StartsWith("2.")) + { + try + { + File.Copy(@"_gamemaker\\bin\\GMAssetCompiler.exe", @"versions\\" + version + "\\GMAssetCompiler.exe", true); + File.Copy(@"_gamemaker\\bin\\ffmpeg.exe", @"versions\\" + version + "\\ffmpeg.exe", true); + File.Copy(@"_gamemaker\\bin\\Newtonsoft.Json.dll", @"versions\\" + version + "\\Newtonsoft.Json.dll", true); + + File.Copy(@"_gamemaker\\bin\\BouncyCastle.Crypto.dll", @"versions\\" + version + "\\BouncyCastle.Crypto.dll", true); + File.Copy(@"_gamemaker\\bin\\spine-csharp.dll", @"versions\\" + version + "\\spine-csharp.dll", true); + File.Copy(@"_gamemaker\\bin\\SharpCompress.dll", @"versions\\" + version + "\\SharpCompress.dll", true); + File.Copy(@"_gamemaker\\bin\\Ionic.Zip.Reduced.dll", @"versions\\" + version + "\\Ionic.Zip.Reduced.dll", true); + } + catch (Exception) { }; + } + + + CopyDir(@"Runner", @"versions\\" + version + "\\Runner"); + + if(version.StartsWith("1.")) + { + CopyDir(@"_gamemaker\\Shaders", @"versions\\" + version + "\\Shaders"); + } + else if(version.StartsWith("2.")) + { + CopyDir(@"_gamemaker\\bin\Shaders", @"versions\\" + version + "\\Shaders"); + CopyDir(@"_gamemaker\\BaseProject", @"versions\\" + version + "\\BaseProject"); + CopyDir(@"_ps4\\BaseProject", @"versions\\" + version + "\\BaseProject"); + } + + + File.Delete(@"versions\\" + version + "\\Runner\\eboot.bin"); + + try + { + + File.Copy(@"_ps4\\PS4\\PSSL_PShaderCommon.shader", @"versions\\" + version + "\\Shaders\\PSSL_PShaderCommon.shade", true); + File.Copy(@"_ps4\\PS4\\PSSL_VShaderCommon.shader", @"versions\\" + version + "\\Shaders\\PSSL_VShaderCommon.shader", true); + File.Copy(@"_ps4\\PS4\\HLSL_to_PSSL.h", @"versions\\" + version + "\\Shaders\\HLSL_to_PSSL.h", true); + + } + catch (Exception){ }; + + }); + copyThread.Start(); + + while (copyThread.IsAlive) + Application.DoEvents(); + + if(version.StartsWith("2.") || version == "1.4.9999") + { + DownloadProgress.Style = ProgressBarStyle.Marquee; + StatusText.Text = "Applying SceVerDown Magic (by dots_tb)..."; + Application.DoEvents(); + + ELF.Tools.SceVerDown(@"_ps4\\PS4\\PS4Runner.elf", 0x05008001); + } + + DownloadProgress.Style = ProgressBarStyle.Marquee; + StatusText.Text = "Running Make FSELF (by flat_z)..."; + Application.DoEvents(); + + ELF.Tools.MakeFself(@"_ps4\\PS4\\PS4Runner.elf", @"versions\\" + version + "\\Runner\\eboot.bin"); + + DownloadProgress.Style = ProgressBarStyle.Marquee; + StatusText.Text = "Deleting Unused Files..."; + Application.DoEvents(); + + Thread deleteThread = new Thread(() => + { + while(true) + { + try + { + Directory.Delete(@"_ps4", true); + Directory.Delete(@"_gamemaker", true); + } + catch (Exception) { }; + break; + } + }); + + deleteThread.Start(); + + while (deleteThread.IsAlive) + Application.DoEvents(); + + DownloadProgress.Style = ProgressBarStyle.Continuous; + DownloadProgress.Value = 0; + StatusText.Text = "Waiting..."; + + DownloadedList.Items.Add(version); + DownloadList.Items.Remove(version); + + DownloadList.Enabled = true; + DownloadButton.Enabled = true; + ControlBox = true; + + } + } + } + + private void DeleteVersion_Click(object sender, EventArgs e) + { + if (DownloadedList.SelectedIndex == -1) { return; } + string toRemove = DownloadedList.SelectedItem.ToString(); + if (toRemove == "1.4.9999") + { + MessageBox.Show("Cannot delete builtin 1.4.9999 version!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + else + { + if (Directory.Exists(@"versions\\" + toRemove)) + { + while (true) + { + try + { + Directory.Delete(@"versions\\" + toRemove, true); + } + catch (Exception) { }; + break; + } + } + + DownloadedList.Items.Remove(toRemove); + DownloadList.Items.Add(toRemove); + } + } + + } +} diff --git a/GayMaker-Studio/VersionManager.resx b/GayMaker-Studio/VersionManager.resx new file mode 100644 index 0000000..aa08bb4 --- /dev/null +++ b/GayMaker-Studio/VersionManager.resx @@ -0,0 +1,337 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + 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 + p639AAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/GayMaker-Studio/app.manifest b/GayMaker-Studio/app.manifest new file mode 100644 index 0000000..f5d54da --- /dev/null +++ b/GayMaker-Studio/app.manifest @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + + + + + + + + diff --git a/GayMaker-Studio/icon0.ico b/GayMaker-Studio/icon0.ico new file mode 100644 index 0000000..b7d6d2d Binary files /dev/null and b/GayMaker-Studio/icon0.ico differ diff --git a/GayMaker-Studio/packages.config b/GayMaker-Studio/packages.config new file mode 100644 index 0000000..07a036c --- /dev/null +++ b/GayMaker-Studio/packages.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/LICENSE b/LICENSE deleted file mode 100644 index f288702..0000000 --- a/LICENSE +++ /dev/null @@ -1,674 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..ac29fdb --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,167 @@ +This software uses the LibOrbisPkg library. Copyright 2018, 2019 Maxton + + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. \ No newline at end of file diff --git a/Packages/BouncyCastle.1.8.4/BouncyCastle.1.8.4.nupkg b/Packages/BouncyCastle.1.8.4/BouncyCastle.1.8.4.nupkg new file mode 100644 index 0000000..2992027 Binary files /dev/null and b/Packages/BouncyCastle.1.8.4/BouncyCastle.1.8.4.nupkg differ diff --git a/Packages/BouncyCastle.1.8.4/README.md b/Packages/BouncyCastle.1.8.4/README.md new file mode 100644 index 0000000..270d9cc --- /dev/null +++ b/Packages/BouncyCastle.1.8.4/README.md @@ -0,0 +1,30 @@ +# The Bouncy Castle Crypto Package For C Sharp + +The Bouncy Castle Crypto package is a C\# implementation of cryptographic algorithms and protocols, it was developed by the Legion of the Bouncy Castle, a registered Australian Charity, with a little help! The Legion, and the latest goings on with this package, can be found at [http://www.bouncycastle.org](http://www.bouncycastle.org). In addition to providing basic cryptography algorithms, the package also provides support for CMS, TSP, X.509 certificate generation and a variety of other standards such as OpenPGP. + +The Legion also gratefully acknowledges the contributions made to this package by others (see [here](http://www.bouncycastle.org/csharp/contributors.html) for the current list). If you would like to contribute to our efforts please feel free to get in touch with us or visit our [donations page](https://www.bouncycastle.org/donate), sponsor some specific work, or purchase a support contract through [Crypto Workshop](http://www.cryptoworkshop.com). + +Except where otherwise stated, this software is distributed under a license based on the MIT X Consortium license. To view the license, [see here](http://www.bouncycastle.org/licence.html). The OpenPGP library also includes a modified BZIP2 library which is licensed under the [Apache Software License, Version 2.0](http://www.apache.org/licenses/). + +**Note**: this source tree is not the FIPS version of the APIs - if you are interested in our FIPS version please contact us directly at [office@bouncycastle.org](mailto:office@bouncycastle.org). + +## Mailing Lists + +For those who are interested, there are 2 mailing lists for participation in this project. To subscribe use the links below and include the word subscribe in the message body. (To unsubscribe, replace **subscribe** with **unsubscribe** in the message body) + +* [announce-crypto-csharp-request@bouncycastle.org](mailto:announce-crypto-csharp-request@bouncycastle.org) + This mailing list is for new release announcements only, general subscribers cannot post to it. +* [dev-crypto-csharp-request@bouncycastle.org](mailto:dev-crypto-csharp-request@bouncycastle.org) + This mailing list is for discussion of development of the package. This includes bugs, comments, requests for enhancements, questions about use or operation. + +**NOTE:**You need to be subscribed to send mail to the above mailing list. + +## Feedback + +If you want to provide feedback directly to the members of **The Legion** then please use [feedback-crypto@bouncycastle.org](mailto:feedback-crypto@bouncycastle.org), if you want to help this project survive please consider [donating](https://www.bouncycastle.org/donate). + +For bug reporting/requests you can report issues here on github, via feedback-crypto if required, and we also have a [Jira issue tracker](http://www.bouncycastle.org/jira). We will accept pull requests based on this repository as well. + +## Finally + +Enjoy! diff --git a/Packages/BouncyCastle.1.8.4/lib/BouncyCastle.Crypto.dll b/Packages/BouncyCastle.1.8.4/lib/BouncyCastle.Crypto.dll new file mode 100644 index 0000000..ef5a5bb Binary files /dev/null and b/Packages/BouncyCastle.1.8.4/lib/BouncyCastle.Crypto.dll differ diff --git a/Packages/DotNetZip.1.13.3/.signature.p7s b/Packages/DotNetZip.1.13.3/.signature.p7s new file mode 100644 index 0000000..565167a Binary files /dev/null and b/Packages/DotNetZip.1.13.3/.signature.p7s differ diff --git a/Packages/DotNetZip.1.13.3/DotNetZip.1.13.3.nupkg b/Packages/DotNetZip.1.13.3/DotNetZip.1.13.3.nupkg new file mode 100644 index 0000000..e895bc3 Binary files /dev/null and b/Packages/DotNetZip.1.13.3/DotNetZip.1.13.3.nupkg differ diff --git a/Packages/DotNetZip.1.13.3/lib/net40/DotNetZip.dll b/Packages/DotNetZip.1.13.3/lib/net40/DotNetZip.dll new file mode 100644 index 0000000..35d0483 Binary files /dev/null and b/Packages/DotNetZip.1.13.3/lib/net40/DotNetZip.dll differ diff --git a/Packages/DotNetZip.1.13.3/lib/net40/DotNetZip.pdb b/Packages/DotNetZip.1.13.3/lib/net40/DotNetZip.pdb new file mode 100644 index 0000000..338a808 Binary files /dev/null and b/Packages/DotNetZip.1.13.3/lib/net40/DotNetZip.pdb differ diff --git a/Packages/DotNetZip.1.13.3/lib/net40/DotNetZip.xml b/Packages/DotNetZip.1.13.3/lib/net40/DotNetZip.xml new file mode 100644 index 0000000..69a4753 --- /dev/null +++ b/Packages/DotNetZip.1.13.3/lib/net40/DotNetZip.xml @@ -0,0 +1,18520 @@ + + + + DotNetZip + + + + + Delivers the remaining bits, left-aligned, in a byte. + + + + This is valid only if NumRemainingBits is less than 8; + in other words it is valid only after a call to Flush(). + + + + + + Reset the BitWriter. + + + + This is useful when the BitWriter writes into a MemoryStream, and + is used by a BZip2Compressor, which itself is re-used for multiple + distinct data blocks. + + + + + + Write some number of bits from the given value, into the output. + + + + The nbits value should be a max of 25, for safety. For performance + reasons, this method does not check! + + + + + + Write a full 8-bit byte into the output. + + + + + Write four 8-bit bytes into the output. + + + + + Write all available byte-aligned bytes. + + + + This method writes no new output, but flushes any accumulated + bits. At completion, the accumulator may contain up to 7 + bits. + + + This is necessary when re-assembling output from N independent + compressors, one for each of N blocks. The output of any + particular compressor will in general have some fragment of a byte + remaining. This fragment needs to be accumulated into the + parent BZip2OutputStream. + + + + + + Writes all available bytes, and emits padding for the final byte as + necessary. This must be the last method invoked on an instance of + BitWriter. + + + + Knuth's increments seem to work better than Incerpi-Sedgewick here. + Possibly because the number of elems to sort is usually small, typically + <= 20. + + + + BZip2Compressor writes its compressed data out via a BitWriter. This + is necessary because BZip2 does byte shredding. + + + + + The number of uncompressed bytes being held in the buffer. + + + + I am thinking this may be useful in a Stream that uses this + compressor class. In the Close() method on the stream it could + check this value to see if anything has been written at all. You + may think the stream could easily track the number of bytes it + wrote, which would eliminate the need for this. But, there is the + case where the stream writes a complete block, and it is full, and + then writes no more. In that case the stream may want to check. + + + + + + Accept new bytes into the compressor data buffer + + + + This method does the first-level (cheap) run-length encoding, and + stores the encoded data into the rle block. + + + + + + Process one input byte into the block. + + + + + To "process" the byte means to do the run-length encoding. + There are 3 possible return values: + + 0 - the byte was not written, in other words, not + encoded into the block. This happens when the + byte b would require the start of a new run, and + the block has no more room for new runs. + + 1 - the byte was written, and the block is not full. + + 2 - the byte was written, and the block is full. + + + + 0 if the byte was not written, non-zero if written. + + + + Append one run to the output block. + + + + + This compressor does run-length-encoding before BWT and etc. This + method simply appends a run to the output block. The append always + succeeds. The return value indicates whether the block is full: + false (not full) implies that at least one additional run could be + processed. + + + true if the block is now full; otherwise false. + + + + Compress the data that has been placed (Run-length-encoded) into the + block. The compressed data goes into the CompressedBytes array. + + + + Side effects: 1. fills the CompressedBytes array. 2. sets the + AvailableBytesOut property. + + + + + This is the most hammered method of this class. + +

+ This is the version using unrolled loops. +

+
+ + Method "mainQSort3", file "blocksort.c", BZip2 1.0.2 + + + Array instance identical to sfmap, both are used only + temporarily and independently, so we do not need to allocate + additional memory. + + + + A read-only decorator stream that performs BZip2 decompression on Read. + + + + + Compressor State + + + + + Create a BZip2InputStream, wrapping it around the given input Stream. + + + + The input stream will be closed when the BZip2InputStream is closed. + + + The stream from which to read compressed data + + + + Create a BZip2InputStream with the given stream, and + specifying whether to leave the wrapped stream open when + the BZip2InputStream is closed. + + The stream from which to read compressed data + + Whether to leave the input stream open, when the BZip2InputStream closes. + + + + + This example reads a bzip2-compressed file, decompresses it, + and writes the decompressed data into a newly created file. + + + var fname = "logfile.log.bz2"; + using (var fs = File.OpenRead(fname)) + { + using (var decompressor = new Ionic.BZip2.BZip2InputStream(fs)) + { + var outFname = fname + ".decompressed"; + using (var output = File.Create(outFname)) + { + byte[] buffer = new byte[2048]; + int n; + while ((n = decompressor.Read(buffer, 0, buffer.Length)) > 0) + { + output.Write(buffer, 0, n); + } + } + } + } + + + + + + Read data from the stream. + + + + + To decompress a BZip2 data stream, create a BZip2InputStream, + providing a stream that reads compressed data. Then call Read() on + that BZip2InputStream, and the data read will be decompressed + as you read. + + + + A BZip2InputStream can be used only for Read(), not for Write(). + + + + The buffer into which the read data should be placed. + the offset within that data array to put the first byte read. + the number of bytes to read. + the number of bytes actually read + + + + Read a single byte from the stream. + + the byte read from the stream, or -1 if EOF + + + + Indicates whether the stream can be read. + + + The return value depends on whether the captive stream supports reading. + + + + + Indicates whether the stream supports Seek operations. + + + Always returns false. + + + + + Indicates whether the stream can be written. + + + The return value depends on whether the captive stream supports writing. + + + + + Flush the stream. + + + + + Reading this property always throws a . + + + + + The position of the stream pointer. + + + + Setting this property always throws a . Reading will return the + total number of uncompressed bytes read in. + + + + + Calling this method always throws a . + + this is irrelevant, since it will always throw! + this is irrelevant, since it will always throw! + irrelevant! + + + + Calling this method always throws a . + + this is irrelevant, since it will always throw! + + + + Calling this method always throws a . + + this parameter is never used + this parameter is never used + this parameter is never used + + + + Dispose the stream. + + + indicates whether the Dispose method was invoked by user code. + + + + + Close the stream. + + + + + Read n bits from input, right justifying the result. + + + + For example, if you read 1 bit, the result is either 0 + or 1. + + + + The number of bits to read, always between 1 and 32. + + + + Called by createHuffmanDecodingTables() exclusively. + + + Called by recvDecodingTables() exclusively. + + + Freq table collected to save a pass over the data during + decompression. + + + Initializes the tt array. + + This method is called when the required length of the array is known. + I don't initialize it at construction time to avoid unneccessary + memory allocation when compressing small files. + + + + A write-only decorator stream that compresses data as it is + written using the BZip2 algorithm. + + + + + Constructs a new BZip2OutputStream, that sends its + compressed output to the given output stream. + + + + The destination stream, to which compressed output will be sent. + + + + + This example reads a file, then compresses it with bzip2 file, + and writes the compressed data into a newly created file. + + + var fname = "logfile.log"; + using (var fs = File.OpenRead(fname)) + { + var outFname = fname + ".bz2"; + using (var output = File.Create(outFname)) + { + using (var compressor = new Ionic.BZip2.BZip2OutputStream(output)) + { + byte[] buffer = new byte[2048]; + int n; + while ((n = fs.Read(buffer, 0, buffer.Length)) > 0) + { + compressor.Write(buffer, 0, n); + } + } + } + } + + + + + + Constructs a new BZip2OutputStream with specified blocksize. + + the destination stream. + + The blockSize in units of 100000 bytes. + The valid range is 1..9. + + + + + Constructs a new BZip2OutputStream. + + the destination stream. + + whether to leave the captive stream open upon closing this stream. + + + + + Constructs a new BZip2OutputStream with specified blocksize, + and explicitly specifies whether to leave the wrapped stream open. + + + the destination stream. + + The blockSize in units of 100000 bytes. + The valid range is 1..9. + + + whether to leave the captive stream open upon closing this stream. + + + + + Close the stream. + + + + This may or may not close the underlying stream. Check the + constructors that accept a bool value. + + + + + + Flush the stream. + + + + + The blocksize parameter specified at construction time. + + + + + Write data to the stream. + + + + + Use the BZip2OutputStream to compress data while writing: + create a BZip2OutputStream with a writable output stream. + Then call Write() on that BZip2OutputStream, providing + uncompressed data as input. The data sent to the output stream will + be the compressed form of the input data. + + + + A BZip2OutputStream can be used only for Write() not for Read(). + + + + + The buffer holding data to write to the stream. + the offset within that data array to find the first byte to write. + the number of bytes to write. + + + + Indicates whether the stream can be read. + + + The return value is always false. + + + + + Indicates whether the stream supports Seek operations. + + + Always returns false. + + + + + Indicates whether the stream can be written. + + + The return value should always be true, unless and until the + object is disposed and closed. + + + + + Reading this property always throws a . + + + + + The position of the stream pointer. + + + + Setting this property always throws a . Reading will return the + total number of uncompressed bytes written through. + + + + + Calling this method always throws a . + + this is irrelevant, since it will always throw! + this is irrelevant, since it will always throw! + irrelevant! + + + + Calling this method always throws a . + + this is irrelevant, since it will always throw! + + + + Calling this method always throws a . + + this parameter is never used + this parameter is never used + this parameter is never used + never returns anything; always throws + + + + A write-only decorator stream that compresses data as it is + written using the BZip2 algorithm. This stream compresses by + block using multiple threads. + + + This class performs BZIP2 compression through writing. For + more information on the BZIP2 algorithm, see + . + + + + This class is similar to , + except that this implementation uses an approach that employs multiple + worker threads to perform the compression. On a multi-cpu or multi-core + computer, the performance of this class can be significantly higher than + the single-threaded BZip2OutputStream, particularly for larger streams. + How large? Anything over 10mb is a good candidate for parallel + compression. + + + + The tradeoff is that this class uses more memory and more CPU than the + vanilla BZip2OutputStream. Also, for small files, the + ParallelBZip2OutputStream can be much slower than the vanilla + BZip2OutputStream, because of the overhead associated to using the + thread pool. + + + + + + + Constructs a new ParallelBZip2OutputStream, that sends its + compressed output to the given output stream. + + + + The destination stream, to which compressed output will be sent. + + + + + This example reads a file, then compresses it with bzip2 file, + and writes the compressed data into a newly created file. + + + var fname = "logfile.log"; + using (var fs = File.OpenRead(fname)) + { + var outFname = fname + ".bz2"; + using (var output = File.Create(outFname)) + { + using (var compressor = new Ionic.BZip2.ParallelBZip2OutputStream(output)) + { + byte[] buffer = new byte[2048]; + int n; + while ((n = fs.Read(buffer, 0, buffer.Length)) > 0) + { + compressor.Write(buffer, 0, n); + } + } + } + } + + + + + + Constructs a new ParallelBZip2OutputStream with specified blocksize. + + the destination stream. + + The blockSize in units of 100000 bytes. + The valid range is 1..9. + + + + + Constructs a new ParallelBZip2OutputStream. + + the destination stream. + + whether to leave the captive stream open upon closing this stream. + + + + + Constructs a new ParallelBZip2OutputStream with specified blocksize, + and explicitly specifies whether to leave the wrapped stream open. + + + the destination stream. + + The blockSize in units of 100000 bytes. + The valid range is 1..9. + + + whether to leave the captive stream open upon closing this stream. + + + + + The maximum number of concurrent compression worker threads to use. + + + + + This property sets an upper limit on the number of concurrent worker + threads to employ for compression. The implementation of this stream + employs multiple threads from the .NET thread pool, via + ThreadPool.QueueUserWorkItem(), to compress the incoming data by + block. As each block of data is compressed, this stream re-orders the + compressed blocks and writes them to the output stream. + + + + A higher number of workers enables a higher degree of + parallelism, which tends to increase the speed of compression on + multi-cpu computers. On the other hand, a higher number of buffer + pairs also implies a larger memory consumption, more active worker + threads, and a higher cpu utilization for any compression. This + property enables the application to limit its memory consumption and + CPU utilization behavior depending on requirements. + + + + By default, DotNetZip allocates 4 workers per CPU core, subject to the + upper limit specified in this property. For example, suppose the + application sets this property to 16. Then, on a machine with 2 + cores, DotNetZip will use 8 workers; that number does not exceed the + upper limit specified by this property, so the actual number of + workers used will be 4 * 2 = 8. On a machine with 4 cores, DotNetZip + will use 16 workers; again, the limit does not apply. On a machine + with 8 cores, DotNetZip will use 16 workers, because of the limit. + + + + For each compression "worker thread" that occurs in parallel, there is + up to 2mb of memory allocated, for buffering and processing. The + actual number depends on the property. + + + + CPU utilization will also go up with additional workers, because a + larger number of buffer pairs allows a larger number of background + threads to compress in parallel. If you find that parallel + compression is consuming too much memory or CPU, you can adjust this + value downward. + + + + The default value is 16. Different values may deliver better or + worse results, depending on your priorities and the dynamic + performance characteristics of your storage and compute resources. + + + + The application can set this value at any time, but it is effective + only before the first call to Write(), which is when the buffers are + allocated. + + + + + + Close the stream. + + + + This may or may not close the underlying stream. Check the + constructors that accept a bool value. + + + + + + Flush the stream. + + + + + The blocksize parameter specified at construction time. + + + + + Write data to the stream. + + + + + Use the ParallelBZip2OutputStream to compress data while + writing: create a ParallelBZip2OutputStream with a writable + output stream. Then call Write() on that + ParallelBZip2OutputStream, providing uncompressed data as + input. The data sent to the output stream will be the compressed + form of the input data. + + + + A ParallelBZip2OutputStream can be used only for + Write() not for Read(). + + + + + The buffer holding data to write to the stream. + the offset within that data array to find the first byte to write. + the number of bytes to write. + + + + Indicates whether the stream can be read. + + + The return value is always false. + + + + + Indicates whether the stream supports Seek operations. + + + Always returns false. + + + + + Indicates whether the stream can be written. + + + The return value depends on whether the captive stream supports writing. + + + + + Reading this property always throws a . + + + + + The position of the stream pointer. + + + + Setting this property always throws a . Reading will return the + total number of uncompressed bytes written through. + + + + + The total number of bytes written out by the stream. + + + This value is meaningful only after a call to Close(). + + + + + Calling this method always throws a . + + this is irrelevant, since it will always throw! + this is irrelevant, since it will always throw! + irrelevant! + + + + Calling this method always throws a . + + this is irrelevant, since it will always throw! + + + + Calling this method always throws a . + + this parameter is never used + this parameter is never used + this parameter is never used + never returns anything; always throws + + + + Returns the "random" number at a specific index. + + the index + the random number + + + + An enum that provides the different self-extractor flavors + + + + + A self-extracting zip archive that runs from the console or + command line. + + + + + A self-extracting zip archive that presents a graphical user + interface when it is executed. + + + + + The options for generating a self-extracting archive. + + + + + The type of SFX to create. + + + + + The command to run after extraction. + + + + + This is optional. Leave it empty (null in C# or Nothing in + VB) to run no command after extraction. + + + + If it is non-empty, the SFX will execute the command specified in this + string on the user's machine, and using the extract directory as the + working directory for the process, after unpacking the archive. The + program to execute can include a path, if you like. If you want to execute + a program that accepts arguments, specify the program name, followed by a + space, and then the arguments for the program, each separated by a space, + just as you would on a normal command line. Example: program.exe arg1 + arg2. The string prior to the first space will be taken as the + program name, and the string following the first space specifies the + arguments to the program. + + + + If you want to execute a program that has a space in the name or path of + the file, surround the program name in double-quotes. The first character + of the command line should be a double-quote character, and there must be + a matching double-quote following the end of the program file name. Any + optional arguments to the program follow that, separated by + spaces. Example: "c:\project files\program name.exe" arg1 arg2. + + + + If the flavor of the SFX is SelfExtractorFlavor.ConsoleApplication, + then the SFX starts a new process, using this string as the post-extract + command line. The SFX waits for the process to exit. The exit code of + the post-extract command line is returned as the exit code of the + command-line self-extractor exe. A non-zero exit code is typically used to + indicated a failure by the program. In the case of an SFX, a non-zero exit + code may indicate a failure during extraction, OR, it may indicate a + failure of the run-after-extract program if specified, OR, it may indicate + the run-after-extract program could not be fuond. There is no way to + distinguish these conditions from the calling shell, aside from parsing + the output of the SFX. If you have Quiet set to true, you may not + see error messages, if a problem occurs. + + + + If the flavor of the SFX is + SelfExtractorFlavor.WinFormsApplication, then the SFX starts a new + process, using this string as the post-extract command line, and using the + extract directory as the working directory for the process. The SFX does + not wait for the command to complete, and does not check the exit code of + the program. If the run-after-extract program cannot be fuond, a message + box is displayed indicating that fact. + + + + You can specify environment variables within this string, with a format like + %NAME%. The value of these variables will be expanded at the time + the SFX is run. Example: %WINDIR%\system32\xcopy.exe may expand at + runtime to c:\Windows\System32\xcopy.exe. + + + + By combining this with the RemoveUnpackedFilesAfterExecute + flag, you can create an SFX that extracts itself, runs a file that + was extracted, then deletes all the files that were extracted. If + you want it to run "invisibly" then set Flavor to + SelfExtractorFlavor.ConsoleApplication, and set Quiet + to true. The user running such an EXE will see a console window + appear, then disappear quickly. You may also want to specify the + default extract location, with DefaultExtractDirectory. + + + + If you set Flavor to + SelfExtractorFlavor.WinFormsApplication, and set Quiet to + true, then a GUI with progressbars is displayed, but it is + "non-interactive" - it accepts no input from the user. Instead the SFX + just automatically unpacks and exits. + + + + + + + The default extract directory the user will see when + running the self-extracting archive. + + + + + Passing null (or Nothing in VB) here will cause the Self Extractor to use + the the user's personal directory () for the default extract + location. + + + + This is only a default location. The actual extract location will be + settable on the command line when the SFX is executed. + + + + You can specify environment variables within this string, + with %NAME%. The value of these variables will be + expanded at the time the SFX is run. Example: + %USERPROFILE%\Documents\unpack may expand at runtime to + c:\users\melvin\Documents\unpack. + + + + + + The name of an .ico file in the filesystem to use for the application icon + for the generated SFX. + + + + + Normally, DotNetZip will embed an "zipped folder" icon into the generated + SFX. If you prefer to use a different icon, you can specify it here. It + should be a .ico file. This file is passed as the /win32icon + option to the csc.exe compiler when constructing the SFX file. + + + + + + + Whether the ConsoleApplication SFX will be quiet during extraction. + + + + + This option affects the way the generated SFX runs. By default it is + false. When you set it to true,... + + + + + Flavor + Behavior + + + + ConsoleApplication + no messages will be emitted during successful + operation. Double-clicking the SFX in Windows + Explorer or as an attachment in an email will cause a console + window to appear briefly, before it disappears. If you run the + ConsoleApplication SFX from the cmd.exe prompt, it runs as a + normal console app; by default, because it is quiet, it displays + no messages to the console. If you pass the -v+ command line + argument to the Console SFX when you run it, you will get verbose + messages to the console. + + + + + WinFormsApplication + the SFX extracts automatically when the application + is launched, with no additional user input. + + + + + + + When you set it to false,... + + + + + Flavor + Behavior + + + + ConsoleApplication + the extractor will emit a + message to the console for each entry extracted. + + When double-clicking to launch the SFX, the console window will + remain, and the SFX will emit a message for each file as it + extracts. The messages fly by quickly, they won't be easily + readable, unless the extracted files are fairly large. + + + + + + WinFormsApplication + the SFX presents a forms UI and allows the user to select + options before extracting. + + + + + + + + + + Specify what the self-extractor will do when extracting an entry + would overwrite an existing file. + + + + The default behavvior is to Throw. + + + + + + Whether to remove the files that have been unpacked, after executing the + PostExtractCommandLine. + + + + + If true, and if there is a + PostExtractCommandLine, and if the command runs successfully, + then the files that the SFX unpacked will be removed, afterwards. If + the command does not complete successfully (non-zero return code), + that is interpreted as a failure, and the extracted files will not be + removed. + + + + Setting this flag, and setting Flavor to + SelfExtractorFlavor.ConsoleApplication, and setting Quiet to + true, results in an SFX that extracts itself, runs a file that was + extracted, then deletes all the files that were extracted, with no + intervention by the user. You may also want to specify the default + extract location, with DefaultExtractDirectory. + + + + + + + The file version number to embed into the generated EXE. It will show up, for + example, during a mouseover in Windows Explorer. + + + + + + The product version to embed into the generated EXE. It will show up, for + example, during a mouseover in Windows Explorer. + + + + You can use any arbitrary string, but a human-readable version number is + recommended. For example "v1.2 alpha" or "v4.2 RC2". If you specify nothing, + then there is no product version embedded into the EXE. + + + + + + The copyright notice, if any, to embed into the generated EXE. + + + + It will show up, for example, while viewing properties of the file in + Windows Explorer. You can use any arbitrary string, but typically you + want something like "Copyright � Dino Chiesa 2011". + + + + + + The description to embed into the generated EXE. + + + + Use any arbitrary string. This text will be displayed during a + mouseover in Windows Explorer. If you specify nothing, then the string + "DotNetZip SFX Archive" is embedded into the EXE as the description. + + + + + + The product name to embed into the generated EXE. + + + + Use any arbitrary string. This text will be displayed + while viewing properties of the EXE file in + Windows Explorer. + + + + + + The title to display in the Window of a GUI SFX, while it extracts. + + + + + By default the title show in the GUI window of a self-extractor + is "DotNetZip Self-extractor (http://DotNetZip.codeplex.com/)". + You can change that by setting this property before saving the SFX. + + + + This property has an effect only when producing a Self-extractor + of flavor SelfExtractorFlavor.WinFormsApplication. + + + + + + + Additional options for the csc.exe compiler, when producing the SFX + EXE. + + + + + + The ZipFile type represents a zip archive file. + + + + + This is the main type in the DotNetZip class library. This class reads and + writes zip files, as defined in the specification + for zip files described by PKWare. The compression for this + implementation is provided by a managed-code version of Zlib, included with + DotNetZip in the classes in the Ionic.Zlib namespace. + + + + This class provides a general purpose zip file capability. Use it to read, + create, or update zip files. When you want to create zip files using a + Stream type to write the zip file, you may want to consider the class. + + + + Both the ZipOutputStream class and the ZipFile class can + be used to create zip files. Both of them support many of the common zip + features, including Unicode, different compression methods and levels, + and ZIP64. They provide very similar performance when creating zip + files. + + + + The ZipFile class is generally easier to use than + ZipOutputStream and should be considered a higher-level interface. For + example, when creating a zip file via calls to the PutNextEntry() and + Write() methods on the ZipOutputStream class, the caller is + responsible for opening the file, reading the bytes from the file, writing + those bytes into the ZipOutputStream, setting the attributes on the + ZipEntry, and setting the created, last modified, and last accessed + timestamps on the zip entry. All of these things are done automatically by a + call to ZipFile.AddFile(). + For this reason, the ZipOutputStream is generally recommended for use + only when your application emits arbitrary data, not necessarily data from a + filesystem file, directly into a zip file, and does so using a Stream + metaphor. + + + + Aside from the differences in programming model, there are other + differences in capability between the two classes. + + + + + ZipFile can be used to read and extract zip files, in addition to + creating zip files. ZipOutputStream cannot read zip files. If you want + to use a stream to read zip files, check out the class. + + + + ZipOutputStream does not support the creation of segmented or spanned + zip files. + + + + ZipOutputStream cannot produce a self-extracting archive. + + + + + Be aware that the ZipFile class implements the interface. In order for ZipFile to + produce a valid zip file, you use use it within a using clause (Using + in VB), or call the Dispose() method explicitly. See the examples + for how to employ a using clause. + + + + + + + Saves the ZipFile instance to a self-extracting zip archive. + + + + + + The generated exe image will execute on any machine that has the .NET + Framework 4.0 installed on it. The generated exe image is also a + valid ZIP file, readable with DotNetZip or another Zip library or tool + such as WinZip. + + + + There are two "flavors" of self-extracting archive. The + WinFormsApplication version will pop up a GUI and allow the + user to select a target directory into which to extract. There's also + a checkbox allowing the user to specify to overwrite existing files, + and another checkbox to allow the user to request that Explorer be + opened to see the extracted files after extraction. The other flavor + is ConsoleApplication. A self-extractor generated with that + flavor setting will run from the command line. It accepts command-line + options to set the overwrite behavior, and to specify the target + extraction directory. + + + + There are a few temporary files created during the saving to a + self-extracting zip. These files are created in the directory pointed + to by , which defaults to . These temporary files are + removed upon successful completion of this method. + + + + When a user runs the WinForms SFX, the user's personal directory (Environment.SpecialFolder.Personal) + will be used as the default extract location. If you want to set the + default extract location, you should use the other overload of + SaveSelfExtractor()/ The user who runs the SFX will have the + opportunity to change the extract directory before extracting. When + the user runs the Command-Line SFX, the user must explicitly specify + the directory to which to extract. The .NET Framework 4.0 is required + on the computer when the self-extracting archive is run. + + + + NB: This method is not available in the "Reduced" DotNetZip library. + + + + + + + string DirectoryPath = "c:\\Documents\\Project7"; + using (ZipFile zip = new ZipFile()) + { + zip.AddDirectory(DirectoryPath, System.IO.Path.GetFileName(DirectoryPath)); + zip.Comment = "This will be embedded into a self-extracting console-based exe"; + zip.SaveSelfExtractor("archive.exe", SelfExtractorFlavor.ConsoleApplication); + } + + + Dim DirectoryPath As String = "c:\Documents\Project7" + Using zip As New ZipFile() + zip.AddDirectory(DirectoryPath, System.IO.Path.GetFileName(DirectoryPath)) + zip.Comment = "This will be embedded into a self-extracting console-based exe" + zip.SaveSelfExtractor("archive.exe", SelfExtractorFlavor.ConsoleApplication) + End Using + + + + + a pathname, possibly fully qualified, to be created. Typically it + will end in an .exe extension. + + Indicates whether a Winforms or Console self-extractor is + desired. + + + + Saves the ZipFile instance to a self-extracting zip archive, using + the specified save options. + + + + + This method saves a self extracting archive, using the specified save + options. These options include the flavor of the SFX, the default extract + directory, the icon file, and so on. See the documentation + for for more + details. + + + + The user who runs the SFX will have the opportunity to change the extract + directory before extracting. If at the time of extraction, the specified + directory does not exist, the SFX will create the directory before + extracting the files. + + + + + + This example saves a WinForms-based self-extracting archive EXE that + will use c:\ExtractHere as the default extract location. The C# code + shows syntax for .NET 3.0, which uses an object initializer for + the SelfExtractorOptions object. + + string DirectoryPath = "c:\\Documents\\Project7"; + using (ZipFile zip = new ZipFile()) + { + zip.AddDirectory(DirectoryPath, System.IO.Path.GetFileName(DirectoryPath)); + zip.Comment = "This will be embedded into a self-extracting WinForms-based exe"; + var options = new SelfExtractorOptions + { + Flavor = SelfExtractorFlavor.WinFormsApplication, + DefaultExtractDirectory = "%USERPROFILE%\\ExtractHere", + PostExtractCommandLine = ExeToRunAfterExtract, + SfxExeWindowTitle = "My Custom Window Title", + RemoveUnpackedFilesAfterExecute = true + }; + zip.SaveSelfExtractor("archive.exe", options); + } + + + Dim DirectoryPath As String = "c:\Documents\Project7" + Using zip As New ZipFile() + zip.AddDirectory(DirectoryPath, System.IO.Path.GetFileName(DirectoryPath)) + zip.Comment = "This will be embedded into a self-extracting console-based exe" + Dim options As New SelfExtractorOptions() + options.Flavor = SelfExtractorFlavor.WinFormsApplication + options.DefaultExtractDirectory = "%USERPROFILE%\\ExtractHere" + options.PostExtractCommandLine = ExeToRunAfterExtract + options.SfxExeWindowTitle = "My Custom Window Title" + options.RemoveUnpackedFilesAfterExecute = True + zip.SaveSelfExtractor("archive.exe", options) + End Using + + + + The name of the EXE to generate. + provides the options for creating the + Self-extracting archive. + + + + Adds an item, either a file or a directory, to a zip file archive. + + + + + This method is handy if you are adding things to zip archive and don't + want to bother distinguishing between directories or files. Any files are + added as single entries. A directory added through this method is added + recursively: all files and subdirectories contained within the directory + are added to the ZipFile. + + + + The name of the item may be a relative path or a fully-qualified + path. Remember, the items contained in ZipFile instance get written + to the disk only when you call or a similar + save method. + + + + The directory name used for the file within the archive is the same + as the directory name (potentially a relative path) specified in the + . + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + + + + This method has two overloads. + + the name of the file or directory to add. + + The ZipEntry added. + + + + Adds an item, either a file or a directory, to a zip file archive, + explicitly specifying the directory path to be used in the archive. + + + + + If adding a directory, the add is recursive on all files and + subdirectories contained within it. + + + The name of the item may be a relative path or a fully-qualified path. + The item added by this call to the ZipFile is not read from the + disk nor written to the zip file archive until the application calls + Save() on the ZipFile. + + + + This version of the method allows the caller to explicitly specify the + directory path to be used in the archive, which would override the + "natural" path of the filesystem file. + + + + Encryption will be used on the file data if the Password has + been set on the ZipFile object, prior to calling this method. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + Thrown if the file or directory passed in does not exist. + + + the name of the file or directory to add. + + + + The name of the directory path to use within the zip archive. This path + need not refer to an extant directory in the current filesystem. If the + files within the zip are later extracted, this is the path used for the + extracted file. Passing null (Nothing in VB) will use the + path on the fileOrDirectoryName. Passing the empty string ("") will + insert the item at the root path within the archive. + + + + + + + + This example shows how to zip up a set of files into a flat hierarchy, + regardless of where in the filesystem the files originated. The resulting + zip archive will contain a toplevel directory named "flat", which itself + will contain files Readme.txt, MyProposal.docx, and Image1.jpg. A + subdirectory under "flat" called SupportFiles will contain all the files + in the "c:\SupportFiles" directory on disk. + + + String[] itemnames= { + "c:\\fixedContent\\Readme.txt", + "MyProposal.docx", + "c:\\SupportFiles", // a directory + "images\\Image1.jpg" + }; + + try + { + using (ZipFile zip = new ZipFile()) + { + for (int i = 1; i < itemnames.Length; i++) + { + // will add Files or Dirs, recurses and flattens subdirectories + zip.AddItem(itemnames[i],"flat"); + } + zip.Save(ZipToCreate); + } + } + catch (System.Exception ex1) + { + System.Console.Error.WriteLine("exception: {0}", ex1); + } + + + + Dim itemnames As String() = _ + New String() { "c:\fixedContent\Readme.txt", _ + "MyProposal.docx", _ + "SupportFiles", _ + "images\Image1.jpg" } + Try + Using zip As New ZipFile + Dim i As Integer + For i = 1 To itemnames.Length - 1 + ' will add Files or Dirs, recursing and flattening subdirectories. + zip.AddItem(itemnames(i), "flat") + Next i + zip.Save(ZipToCreate) + End Using + Catch ex1 As Exception + Console.Error.WriteLine("exception: {0}", ex1.ToString()) + End Try + + + The ZipEntry added. + + + + Adds a File to a Zip file archive. + + + + + This call collects metadata for the named file in the filesystem, + including the file attributes and the timestamp, and inserts that metadata + into the resulting ZipEntry. Only when the application calls Save() on + the ZipFile, does DotNetZip read the file from the filesystem and + then write the content to the zip file archive. + + + + This method will throw an exception if an entry with the same name already + exists in the ZipFile. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + + In this example, three files are added to a Zip archive. The ReadMe.txt + file will be placed in the root of the archive. The .png file will be + placed in a folder within the zip called photos\personal. The pdf file + will be included into a folder within the zip called Desktop. + + + try + { + using (ZipFile zip = new ZipFile()) + { + zip.AddFile("c:\\photos\\personal\\7440-N49th.png"); + zip.AddFile("c:\\Desktop\\2008-Regional-Sales-Report.pdf"); + zip.AddFile("ReadMe.txt"); + + zip.Save("Package.zip"); + } + } + catch (System.Exception ex1) + { + System.Console.Error.WriteLine("exception: " + ex1); + } + + + + Try + Using zip As ZipFile = New ZipFile + zip.AddFile("c:\photos\personal\7440-N49th.png") + zip.AddFile("c:\Desktop\2008-Regional-Sales-Report.pdf") + zip.AddFile("ReadMe.txt") + zip.Save("Package.zip") + End Using + Catch ex1 As Exception + Console.Error.WriteLine("exception: {0}", ex1.ToString) + End Try + + + + This method has two overloads. + + + + + + + The name of the file to add. It should refer to a file in the filesystem. + The name of the file may be a relative path or a fully-qualified path. + + The ZipEntry corresponding to the File added. + + + + Adds a File to a Zip file archive, potentially overriding the path to be + used within the zip archive. + + + + + The file added by this call to the ZipFile is not written to the + zip file archive until the application calls Save() on the ZipFile. + + + + This method will throw an exception if an entry with the same name already + exists in the ZipFile. + + + + This version of the method allows the caller to explicitly specify the + directory path to be used in the archive. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + + In this example, three files are added to a Zip archive. The ReadMe.txt + file will be placed in the root of the archive. The .png file will be + placed in a folder within the zip called images. The pdf file will be + included into a folder within the zip called files\docs, and will be + encrypted with the given password. + + + try + { + using (ZipFile zip = new ZipFile()) + { + // the following entry will be inserted at the root in the archive. + zip.AddFile("c:\\datafiles\\ReadMe.txt", ""); + // this image file will be inserted into the "images" directory in the archive. + zip.AddFile("c:\\photos\\personal\\7440-N49th.png", "images"); + // the following will result in a password-protected file called + // files\\docs\\2008-Regional-Sales-Report.pdf in the archive. + zip.Password = "EncryptMe!"; + zip.AddFile("c:\\Desktop\\2008-Regional-Sales-Report.pdf", "files\\docs"); + zip.Save("Archive.zip"); + } + } + catch (System.Exception ex1) + { + System.Console.Error.WriteLine("exception: {0}", ex1); + } + + + + Try + Using zip As ZipFile = New ZipFile + ' the following entry will be inserted at the root in the archive. + zip.AddFile("c:\datafiles\ReadMe.txt", "") + ' this image file will be inserted into the "images" directory in the archive. + zip.AddFile("c:\photos\personal\7440-N49th.png", "images") + ' the following will result in a password-protected file called + ' files\\docs\\2008-Regional-Sales-Report.pdf in the archive. + zip.Password = "EncryptMe!" + zip.AddFile("c:\Desktop\2008-Regional-Sales-Report.pdf", "files\documents") + zip.Save("Archive.zip") + End Using + Catch ex1 As Exception + Console.Error.WriteLine("exception: {0}", ex1) + End Try + + + + + + + + + The name of the file to add. The name of the file may be a relative path + or a fully-qualified path. + + + + Specifies a directory path to use to override any path in the fileName. + This path may, or may not, correspond to a real directory in the current + filesystem. If the files within the zip are later extracted, this is the + path used for the extracted file. Passing null (Nothing in + VB) will use the path on the fileName, if any. Passing the empty string + ("") will insert the item at the root path within the archive. + + + The ZipEntry corresponding to the file added. + + + + This method removes a collection of entries from the ZipFile. + + + + A collection of ZipEntry instances from this zip file to be removed. For + example, you can pass in an array of ZipEntry instances; or you can call + SelectEntries(), and then add or remove entries from that + ICollection<ZipEntry> (ICollection(Of ZipEntry) in VB), and pass + that ICollection to this method. + + + + + + + + This method removes a collection of entries from the ZipFile, by name. + + + + A collection of strings that refer to names of entries to be removed + from the ZipFile. For example, you can pass in an array or a + List of Strings that provide the names of entries to be removed. + + + + + + + + This method adds a set of files to the ZipFile. + + + + + Use this method to add a set of files to the zip archive, in one call. + For example, a list of files received from + System.IO.Directory.GetFiles() can be added to a zip archive in one + call. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to each + ZipEntry added. + + + + + The collection of names of the files to add. Each string should refer to a + file in the filesystem. The name of the file may be a relative path or a + fully-qualified path. + + + + This example shows how to create a zip file, and add a few files into it. + + String ZipFileToCreate = "archive1.zip"; + String DirectoryToZip = "c:\\reports"; + using (ZipFile zip = new ZipFile()) + { + // Store all files found in the top level directory, into the zip archive. + String[] filenames = System.IO.Directory.GetFiles(DirectoryToZip); + zip.AddFiles(filenames); + zip.Save(ZipFileToCreate); + } + + + + Dim ZipFileToCreate As String = "archive1.zip" + Dim DirectoryToZip As String = "c:\reports" + Using zip As ZipFile = New ZipFile + ' Store all files found in the top level directory, into the zip archive. + Dim filenames As String() = System.IO.Directory.GetFiles(DirectoryToZip) + zip.AddFiles(filenames) + zip.Save(ZipFileToCreate) + End Using + + + + + + + + Adds or updates a set of files in the ZipFile. + + + + + Any files that already exist in the archive are updated. Any files that + don't yet exist in the archive are added. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to each + ZipEntry added. + + + + + The collection of names of the files to update. Each string should refer to a file in + the filesystem. The name of the file may be a relative path or a fully-qualified path. + + + + + + Adds a set of files to the ZipFile, using the + specified directory path in the archive. + + + + + Any directory structure that may be present in the + filenames contained in the list is "flattened" in the + archive. Each file in the list is added to the archive in + the specified top-level directory. + + + + For ZipFile properties including , , , , , , and , their respective values at the + time of this call will be applied to each ZipEntry added. + + + + + The names of the files to add. Each string should refer to + a file in the filesystem. The name of the file may be a + relative path or a fully-qualified path. + + + + Specifies a directory path to use to override any path in the file name. + Th is path may, or may not, correspond to a real directory in the current + filesystem. If the files within the zip are later extracted, this is the + path used for the extracted file. Passing null (Nothing in + VB) will use the path on each of the fileNames, if any. Passing + the empty string ("") will insert the item at the root path within the + archive. + + + + + + + Adds a set of files to the ZipFile, using the specified directory + path in the archive, and preserving the full directory structure in the + filenames. + + + + + + Think of the as a "root" or + base directory used in the archive for the files that get added. when + is true, the hierarchy of files + found in the filesystem will be placed, with the hierarchy intact, + starting at that root in the archive. When preserveDirHierarchy + is false, the path hierarchy of files is flattned, and the flattened + set of files gets placed in the root within the archive as specified in + directoryPathInArchive. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to each + ZipEntry added. + + + + + + The names of the files to add. Each string should refer to a file in the + filesystem. The name of the file may be a relative path or a + fully-qualified path. + + + + Specifies a directory path to use as a prefix for each entry name. + This path may, or may not, correspond to a real directory in the current + filesystem. If the files within the zip are later extracted, this is the + path used for the extracted file. Passing null (Nothing in + VB) will use the path on each of the fileNames, if any. Passing + the empty string ("") will insert the item at the root path within the + archive. + + + + whether the entries in the zip archive will reflect the directory + hierarchy that is present in the various filenames. For example, if + includes two paths, + \Animalia\Chordata\Mammalia\Info.txt and + \Plantae\Magnoliophyta\Dicotyledon\Info.txt, then calling this method + with = false will + result in an exception because of a duplicate entry name, while + calling this method with = + true will result in the full direcory paths being included in + the entries added to the ZipFile. + + + + + + Adds or updates a set of files to the ZipFile, using the specified + directory path in the archive. + + + + + + Any files that already exist in the archive are updated. Any files that + don't yet exist in the archive are added. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to each + ZipEntry added. + + + + + The names of the files to add or update. Each string should refer to a + file in the filesystem. The name of the file may be a relative path or a + fully-qualified path. + + + + Specifies a directory path to use to override any path in the file name. + This path may, or may not, correspond to a real directory in the current + filesystem. If the files within the zip are later extracted, this is the + path used for the extracted file. Passing null (Nothing in + VB) will use the path on each of the fileNames, if any. Passing + the empty string ("") will insert the item at the root path within the + archive. + + + + + + + Adds or Updates a File in a Zip file archive. + + + + + This method adds a file to a zip archive, or, if the file already exists + in the zip archive, this method Updates the content of that given filename + in the zip archive. The UpdateFile method might more accurately be + called "AddOrUpdateFile". + + + + Upon success, there is no way for the application to learn whether the file + was added versus updated. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + This example shows how to Update an existing entry in a zipfile. The first + call to UpdateFile adds the file to the newly-created zip archive. The + second call to UpdateFile updates the content for that file in the zip + archive. + + + using (ZipFile zip1 = new ZipFile()) + { + // UpdateFile might more accurately be called "AddOrUpdateFile" + zip1.UpdateFile("MyDocuments\\Readme.txt"); + zip1.UpdateFile("CustomerList.csv"); + zip1.Comment = "This zip archive has been created."; + zip1.Save("Content.zip"); + } + + using (ZipFile zip2 = ZipFile.Read("Content.zip")) + { + zip2.UpdateFile("Updates\\Readme.txt"); + zip2.Comment = "This zip archive has been updated: The Readme.txt file has been changed."; + zip2.Save(); + } + + + + Using zip1 As New ZipFile + ' UpdateFile might more accurately be called "AddOrUpdateFile" + zip1.UpdateFile("MyDocuments\Readme.txt") + zip1.UpdateFile("CustomerList.csv") + zip1.Comment = "This zip archive has been created." + zip1.Save("Content.zip") + End Using + + Using zip2 As ZipFile = ZipFile.Read("Content.zip") + zip2.UpdateFile("Updates\Readme.txt") + zip2.Comment = "This zip archive has been updated: The Readme.txt file has been changed." + zip2.Save + End Using + + + + + + + + + The name of the file to add or update. It should refer to a file in the + filesystem. The name of the file may be a relative path or a + fully-qualified path. + + + + The ZipEntry corresponding to the File that was added or updated. + + + + + Adds or Updates a File in a Zip file archive. + + + + + This method adds a file to a zip archive, or, if the file already exists + in the zip archive, this method Updates the content of that given filename + in the zip archive. + + + + This version of the method allows the caller to explicitly specify the + directory path to be used in the archive. The entry to be added or + updated is found by using the specified directory path, combined with the + basename of the specified filename. + + + + Upon success, there is no way for the application to learn if the file was + added versus updated. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + + + + The name of the file to add or update. It should refer to a file in the + filesystem. The name of the file may be a relative path or a + fully-qualified path. + + + + Specifies a directory path to use to override any path in the + fileName. This path may, or may not, correspond to a real + directory in the current filesystem. If the files within the zip are + later extracted, this is the path used for the extracted file. Passing + null (Nothing in VB) will use the path on the + fileName, if any. Passing the empty string ("") will insert the + item at the root path within the archive. + + + + The ZipEntry corresponding to the File that was added or updated. + + + + + Add or update a directory in a zip archive. + + + + If the specified directory does not exist in the archive, then this method + is equivalent to calling AddDirectory(). If the specified + directory already exists in the archive, then this method updates any + existing entries, and adds any new entries. Any entries that are in the + zip archive but not in the specified directory, are left alone. In other + words, the contents of the zip file will be a union of the previous + contents and the new files. + + + + + + + + The path to the directory to be added to the zip archive, or updated in + the zip archive. + + + + The ZipEntry corresponding to the Directory that was added or updated. + + + + + Add or update a directory in the zip archive at the specified root + directory in the archive. + + + + If the specified directory does not exist in the archive, then this method + is equivalent to calling AddDirectory(). If the specified + directory already exists in the archive, then this method updates any + existing entries, and adds any new entries. Any entries that are in the + zip archive but not in the specified directory, are left alone. In other + words, the contents of the zip file will be a union of the previous + contents and the new files. + + + + + + + + The path to the directory to be added to the zip archive, or updated + in the zip archive. + + + + Specifies a directory path to use to override any path in the + directoryName. This path may, or may not, correspond to a real + directory in the current filesystem. If the files within the zip are + later extracted, this is the path used for the extracted file. Passing + null (Nothing in VB) will use the path on the + directoryName, if any. Passing the empty string ("") will insert + the item at the root path within the archive. + + + + The ZipEntry corresponding to the Directory that was added or updated. + + + + + Add or update a file or directory in the zip archive. + + + + + This is useful when the application is not sure or does not care if the + item to be added is a file or directory, and does not know or does not + care if the item already exists in the ZipFile. Calling this method + is equivalent to calling RemoveEntry() if an entry by the same name + already exists, followed calling by AddItem(). + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + + + + the path to the file or directory to be added or updated. + + + + + Add or update a file or directory. + + + + + This method is useful when the application is not sure or does not care if + the item to be added is a file or directory, and does not know or does not + care if the item already exists in the ZipFile. Calling this method + is equivalent to calling RemoveEntry(), if an entry by that name + exists, and then calling AddItem(). + + + + This version of the method allows the caller to explicitly specify the + directory path to be used for the item being added to the archive. The + entry or entries that are added or updated will use the specified + DirectoryPathInArchive. Extracting the entry from the archive will + result in a file stored in that directory path. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + + + + The path for the File or Directory to be added or updated. + + + Specifies a directory path to use to override any path in the + itemName. This path may, or may not, correspond to a real + directory in the current filesystem. If the files within the zip are + later extracted, this is the path used for the extracted file. Passing + null (Nothing in VB) will use the path on the + itemName, if any. Passing the empty string ("") will insert the + item at the root path within the archive. + + + + + Adds a named entry into the zip archive, taking content for the entry + from a string. + + + + Calling this method creates an entry using the given fileName and + directory path within the archive. There is no need for a file by the + given name to exist in the filesystem; the name is used within the zip + archive only. The content for the entry is encoded using the default text + encoding for the machine. + + + + The content of the file, should it be extracted from the zip. + + + + The name, including any path, to use for the entry within the archive. + + + The ZipEntry added. + + + + This example shows how to add an entry to the zipfile, using a string as + content for that entry. + + + string Content = "This string will be the content of the Readme.txt file in the zip archive."; + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddFile("MyDocuments\\Resume.doc", "files"); + zip1.AddEntry("Readme.txt", Content); + zip1.Comment = "This zip file was created at " + System.DateTime.Now.ToString("G"); + zip1.Save("Content.zip"); + } + + + + Public Sub Run() + Dim Content As String = "This string will be the content of the Readme.txt file in the zip archive." + Using zip1 As ZipFile = New ZipFile + zip1.AddEntry("Readme.txt", Content) + zip1.AddFile("MyDocuments\Resume.doc", "files") + zip1.Comment = ("This zip file was created at " & DateTime.Now.ToString("G")) + zip1.Save("Content.zip") + End Using + End Sub + + + + + + Adds a named entry into the zip archive, taking content for the entry + from a string, and using the specified text encoding. + + + + + + Calling this method creates an entry using the given fileName and + directory path within the archive. There is no need for a file by the + given name to exist in the filesystem; the name is used within the zip + archive only. + + + + The content for the entry, a string value, is encoded using the given + text encoding. A BOM (byte-order-mark) is emitted into the file, if the + Encoding parameter is set for that. + + + + Most Encoding classes support a constructor that accepts a boolean, + indicating whether to emit a BOM or not. For example see . + + + + + + The name, including any path, to use within the archive for the entry. + + + + The content of the file, should it be extracted from the zip. + + + + The text encoding to use when encoding the string. Be aware: This is + distinct from the text encoding used to encode the fileName, as specified + in . + + + The ZipEntry added. + + + + + Create an entry in the ZipFile using the given Stream + as input. The entry will have the given filename. + + + + + + The application should provide an open, readable stream; in this case it + will be read during the call to or one of + its overloads. + + + + The passed stream will be read from its current position. If + necessary, callers should set the position in the stream before + calling AddEntry(). This might be appropriate when using this method + with a MemoryStream, for example. + + + + In cases where a large number of streams will be added to the + ZipFile, the application may wish to avoid maintaining all of the + streams open simultaneously. To handle this situation, the application + should use the + overload. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + + This example adds a single entry to a ZipFile via a Stream. + + + + String zipToCreate = "Content.zip"; + String fileNameInArchive = "Content-From-Stream.bin"; + using (System.IO.Stream streamToRead = MyStreamOpener()) + { + using (ZipFile zip = new ZipFile()) + { + ZipEntry entry= zip.AddEntry(fileNameInArchive, streamToRead); + zip.AddFile("Readme.txt"); + zip.Save(zipToCreate); // the stream is read implicitly here + } + } + + + + Dim zipToCreate As String = "Content.zip" + Dim fileNameInArchive As String = "Content-From-Stream.bin" + Using streamToRead as System.IO.Stream = MyStreamOpener() + Using zip As ZipFile = New ZipFile() + Dim entry as ZipEntry = zip.AddEntry(fileNameInArchive, streamToRead) + zip.AddFile("Readme.txt") + zip.Save(zipToCreate) '' the stream is read implicitly, here + End Using + End Using + + + + + + + The name, including any path, which is shown in the zip file for the added + entry. + + + The input stream from which to grab content for the file + + The ZipEntry added. + + + + Add a ZipEntry for which content is written directly by the application. + + + + + When the application needs to write the zip entry data, use this + method to add the ZipEntry. For example, in the case that the + application wishes to write the XML representation of a DataSet into + a ZipEntry, the application can use this method to do so. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + About progress events: When using the WriteDelegate, DotNetZip does + not issue any SaveProgress events with EventType = + Saving_EntryBytesRead. (This is because it is the + application's code that runs in WriteDelegate - there's no way for + DotNetZip to know when to issue a EntryBytesRead event.) + Applications that want to update a progress bar or similar status + indicator should do so from within the WriteDelegate + itself. DotNetZip will issue the other SaveProgress events, + including + Saving_Started, + + Saving_BeforeWriteEntry, and + Saving_AfterWriteEntry. + + + + Note: When you use PKZip encryption, it's normally necessary to + compute the CRC of the content to be encrypted, before compressing or + encrypting it. Therefore, when using PKZip encryption with a + WriteDelegate, the WriteDelegate CAN BE called twice: once to compute + the CRC, and the second time to potentially compress and + encrypt. Surprising, but true. This is because PKWARE specified that + the encryption initialization data depends on the CRC. + If this happens, for each call of the delegate, your + application must stream the same entry data in its entirety. If your + application writes different data during the second call, it will + result in a corrupt zip file. + + + + The double-read behavior happens with all types of entries, not only + those that use WriteDelegate. It happens if you add an entry from a + filesystem file, or using a string, or a stream, or an opener/closer + pair. But in those cases, DotNetZip takes care of reading twice; in + the case of the WriteDelegate, the application code gets invoked + twice. Be aware. + + + + As you can imagine, this can cause performance problems for large + streams, and it can lead to correctness problems when you use a + WriteDelegate. This is a pretty big pitfall. There are two + ways to avoid it. First, and most preferred: don't use PKZIP + encryption. If you use the WinZip AES encryption, this problem + doesn't occur, because the encryption protocol doesn't require the CRC + up front. Second: if you do choose to use PKZIP encryption, write out + to a non-seekable stream (like standard output, or the + Response.OutputStream in an ASP.NET application). In this case, + DotNetZip will use an alternative encryption protocol that does not + rely on the CRC of the content. This also implies setting bit 3 in + the zip entry, which still presents problems for some zip tools. + + + + In the future I may modify DotNetZip to *always* use bit 3 when PKZIP + encryption is in use. This seems like a win overall, but there will + be some work involved. If you feel strongly about it, visit the + DotNetZip forums and vote up the Workitem + tracking this issue. + + + + + the name of the entry to add + the delegate which will write the entry content + the ZipEntry added + + + + This example shows an application filling a DataSet, then saving the + contents of that DataSet as XML, into a ZipEntry in a ZipFile, using an + anonymous delegate in C#. The DataSet XML is never saved to a disk file. + + + var c1= new System.Data.SqlClient.SqlConnection(connstring1); + var da = new System.Data.SqlClient.SqlDataAdapter() + { + SelectCommand= new System.Data.SqlClient.SqlCommand(strSelect, c1) + }; + + DataSet ds1 = new DataSet(); + da.Fill(ds1, "Invoices"); + + using(Ionic.Zip.ZipFile zip = new Ionic.Zip.ZipFile()) + { + zip.AddEntry(zipEntryName, (name,stream) => ds1.WriteXml(stream) ); + zip.Save(zipFileName); + } + + + + + + This example uses an anonymous method in C# as the WriteDelegate to provide + the data for the ZipEntry. The example is a bit contrived - the + AddFile() method is a simpler way to insert the contents of a file + into an entry in a zip file. On the other hand, if there is some sort of + processing or transformation of the file contents required before writing, + the application could use the WriteDelegate to do it, in this way. + + + using (var input = File.Open(filename, FileMode.Open, FileAccess.Read, FileShare.ReadWrite )) + { + using(Ionic.Zip.ZipFile zip = new Ionic.Zip.ZipFile()) + { + zip.AddEntry(zipEntryName, (name,output) => + { + byte[] buffer = new byte[BufferSize]; + int n; + while ((n = input.Read(buffer, 0, buffer.Length)) != 0) + { + // could transform the data here... + output.Write(buffer, 0, n); + // could update a progress bar here + } + }); + + zip.Save(zipFileName); + } + } + + + + + + This example uses a named delegate in VB to write data for the given + ZipEntry (VB9 does not have anonymous delegates). The example here is a bit + contrived - a simpler way to add the contents of a file to a ZipEntry is to + simply use the appropriate AddFile() method. The key scenario for + which the WriteDelegate makes sense is saving a DataSet, in XML + format, to the zip file. The DataSet can write XML to a stream, and the + WriteDelegate is the perfect place to write into the zip file. There may be + other data structures that can write to a stream, but cannot be read as a + stream. The WriteDelegate would be appropriate for those cases as + well. + + + Private Sub WriteEntry (ByVal name As String, ByVal output As Stream) + Using input As FileStream = File.Open(filename, FileMode.Open, FileAccess.Read, FileShare.ReadWrite) + Dim n As Integer = -1 + Dim buffer As Byte() = New Byte(BufferSize){} + Do While n <> 0 + n = input.Read(buffer, 0, buffer.Length) + output.Write(buffer, 0, n) + Loop + End Using + End Sub + + Public Sub Run() + Using zip = New ZipFile + zip.AddEntry(zipEntryName, New WriteDelegate(AddressOf WriteEntry)) + zip.Save(zipFileName) + End Using + End Sub + + + + + + Add an entry, for which the application will provide a stream + containing the entry data, on a just-in-time basis. + + + + + In cases where the application wishes to open the stream that + holds the content for the ZipEntry, on a just-in-time basis, the + application can use this method. The application provides an + opener delegate that will be called by the DotNetZip library to + obtain a readable stream that can be read to get the bytes for + the given entry. Typically, this delegate opens a stream. + Optionally, the application can provide a closer delegate as + well, which will be called by DotNetZip when all bytes have been + read from the entry. + + + + These delegates are called from within the scope of the call to + ZipFile.Save(). + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + + This example uses anonymous methods in C# to open and close the + source stream for the content for a zip entry. + + + using(Ionic.Zip.ZipFile zip = new Ionic.Zip.ZipFile()) + { + zip.AddEntry(zipEntryName, + (name) => File.Open(filename, FileMode.Open, FileAccess.Read, FileShare.ReadWrite ), + (name, stream) => stream.Close() + ); + + zip.Save(zipFileName); + } + + + + + + + This example uses delegates in VB.NET to open and close the + the source stream for the content for a zip entry. VB 9.0 lacks + support for "Sub" lambda expressions, and so the CloseDelegate must + be an actual, named Sub. + + + + Function MyStreamOpener(ByVal entryName As String) As Stream + '' This simply opens a file. You probably want to do somethinig + '' more involved here: open a stream to read from a database, + '' open a stream on an HTTP connection, and so on. + Return File.OpenRead(entryName) + End Function + + Sub MyStreamCloser(entryName As String, stream As Stream) + stream.Close() + End Sub + + Public Sub Run() + Dim dirToZip As String = "fodder" + Dim zipFileToCreate As String = "Archive.zip" + Dim opener As OpenDelegate = AddressOf MyStreamOpener + Dim closer As CloseDelegate = AddressOf MyStreamCloser + Dim numFilestoAdd As Int32 = 4 + Using zip As ZipFile = New ZipFile + Dim i As Integer + For i = 0 To numFilesToAdd - 1 + zip.AddEntry(String.Format("content-{0:000}.txt"), opener, closer) + Next i + zip.Save(zipFileToCreate) + End Using + End Sub + + + + + the name of the entry to add + + the delegate that will be invoked by ZipFile.Save() to get the + readable stream for the given entry. ZipFile.Save() will call + read on this stream to obtain the data for the entry. This data + will then be compressed and written to the newly created zip + file. + + + the delegate that will be invoked to close the stream. This may + be null (Nothing in VB), in which case no call is makde to close + the stream. + + the ZipEntry added + + + + + Updates the given entry in the ZipFile, using the given + string as content for the ZipEntry. + + + + + + Calling this method is equivalent to removing the ZipEntry for + the given file name and directory path, if it exists, and then calling + . See the documentation for + that method for further explanation. The string content is encoded + using the default encoding for the machine. This encoding is distinct + from the encoding used for the filename itself. See + . + + + + + + The name, including any path, to use within the archive for the entry. + + + + The content of the file, should it be extracted from the zip. + + + The ZipEntry added. + + + + + Updates the given entry in the ZipFile, using the given string as + content for the ZipEntry. + + + + Calling this method is equivalent to removing the ZipEntry for the + given file name and directory path, if it exists, and then calling . See the + documentation for that method for further explanation. + + + + The name, including any path, to use within the archive for the entry. + + + + The content of the file, should it be extracted from the zip. + + + + The text encoding to use when encoding the string. Be aware: This is + distinct from the text encoding used to encode the filename. See . + + + The ZipEntry added. + + + + + Updates the given entry in the ZipFile, using the given delegate + as the source for content for the ZipEntry. + + + + Calling this method is equivalent to removing the ZipEntry for the + given file name and directory path, if it exists, and then calling . See the + documentation for that method for further explanation. + + + + The name, including any path, to use within the archive for the entry. + + + the delegate which will write the entry content. + + The ZipEntry added. + + + + + Updates the given entry in the ZipFile, using the given delegates + to open and close the stream that provides the content for the ZipEntry. + + + + Calling this method is equivalent to removing the ZipEntry for the + given file name and directory path, if it exists, and then calling . See the + documentation for that method for further explanation. + + + + The name, including any path, to use within the archive for the entry. + + + + the delegate that will be invoked to open the stream + + + the delegate that will be invoked to close the stream + + + The ZipEntry added or updated. + + + + + Updates the given entry in the ZipFile, using the given stream as + input, and the given filename and given directory Path. + + + + + Calling the method is equivalent to calling RemoveEntry() if an + entry by the same name already exists, and then calling AddEntry() + with the given fileName and stream. + + + + The stream must be open and readable during the call to + ZipFile.Save. You can dispense the stream on a just-in-time basis + using the property. Check the + documentation of that property for more information. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + + + + The name, including any path, to use within the archive for the entry. + + + The input stream from which to read file data. + The ZipEntry added. + + + + Add an entry into the zip archive using the given filename and + directory path within the archive, and the given content for the + file. No file is created in the filesystem. + + + The data to use for the entry. + + + The name, including any path, to use within the archive for the entry. + + + The ZipEntry added. + + + + Updates the given entry in the ZipFile, using the given byte + array as content for the entry. + + + + Calling this method is equivalent to removing the ZipEntry + for the given filename and directory path, if it exists, and then + calling . See the + documentation for that method for further explanation. + + + + The name, including any path, to use within the archive for the entry. + + + The content to use for the ZipEntry. + + The ZipEntry added. + + + + + Adds the contents of a filesystem directory to a Zip file archive. + + + + + + The name of the directory may be a relative path or a fully-qualified + path. Any files within the named directory are added to the archive. Any + subdirectories within the named directory are also added to the archive, + recursively. + + + + Top-level entries in the named directory will appear as top-level entries + in the zip archive. Entries in subdirectories in the named directory will + result in entries in subdirectories in the zip archive. + + + + If you want the entries to appear in a containing directory in the zip + archive itself, then you should call the AddDirectory() overload that + allows you to explicitly specify a directory path for use in the archive. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to each + ZipEntry added. + + + + + + + + + + This method has 2 overloads. + + The name of the directory to add. + The ZipEntry added. + + + + Adds the contents of a filesystem directory to a Zip file archive, + overriding the path to be used for entries in the archive. + + + + + The name of the directory may be a relative path or a fully-qualified + path. The add operation is recursive, so that any files or subdirectories + within the name directory are also added to the archive. + + + + Top-level entries in the named directory will appear as top-level entries + in the zip archive. Entries in subdirectories in the named directory will + result in entries in subdirectories in the zip archive. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to each + ZipEntry added. + + + + + + + In this code, calling the ZipUp() method with a value of "c:\reports" for + the directory parameter will result in a zip file structure in which all + entries are contained in a toplevel "reports" directory. + + + + public void ZipUp(string targetZip, string directory) + { + using (var zip = new ZipFile()) + { + zip.AddDirectory(directory, System.IO.Path.GetFileName(directory)); + zip.Save(targetZip); + } + } + + + + + + + + The name of the directory to add. + + + Specifies a directory path to use to override any path in the + DirectoryName. This path may, or may not, correspond to a real directory + in the current filesystem. If the zip is later extracted, this is the + path used for the extracted file or directory. Passing null + (Nothing in VB) or the empty string ("") will insert the items at + the root path within the archive. + + + The ZipEntry added. + + + + Creates a directory in the zip archive. + + + + + + Use this when you want to create a directory in the archive but there is + no corresponding filesystem representation for that directory. + + + + You will probably not need to do this in your code. One of the only times + you will want to do this is if you want an empty directory in the zip + archive. The reason: if you add a file to a zip archive that is stored + within a multi-level directory, all of the directory tree is implicitly + created in the zip archive. + + + + + + The name of the directory to create in the archive. + + The ZipEntry added. + + + + Checks a zip file to see if its directory is consistent. + + + + + + In cases of data error, the directory within a zip file can get out + of synch with the entries in the zip file. This method checks the + given zip file and returns true if this has occurred. + + + This method may take a long time to run for large zip files. + + + This method is not supported in the Reduced version of DotNetZip. + + + + Developers using COM can use the ComHelper.CheckZip(String) + method. + + + + + The filename to of the zip file to check. + + true if the named zip file checks OK. Otherwise, false. + + + + + + + Checks a zip file to see if its directory is consistent, + and optionally fixes the directory if necessary. + + + + + + In cases of data error, the directory within a zip file can get out of + synch with the entries in the zip file. This method checks the given + zip file, and returns true if this has occurred. It also optionally + fixes the zipfile, saving the fixed copy in Name_Fixed.zip. + + + + This method may take a long time to run for large zip files. It + will take even longer if the file actually needs to be fixed, and if + fixIfNecessary is true. + + + + This method is not supported in the Reduced version of DotNetZip. + + + + + The filename to of the zip file to check. + + If true, the method will fix the zip file if + necessary. + + + a TextWriter in which messages generated while checking will be written. + + + true if the named zip is OK; false if the file needs to be fixed. + + + + + + + Rewrite the directory within a zipfile. + + + + + + In cases of data error, the directory in a zip file can get out of + synch with the entries in the zip file. This method attempts to fix + the zip file if this has occurred. + + + This can take a long time for large zip files. + + This won't work if the zip file uses a non-standard + code page - neither IBM437 nor UTF-8. + + + This method is not supported in the Reduced or Compact Framework + versions of DotNetZip. + + + + Developers using COM can use the ComHelper.FixZipDirectory(String) + method. + + + + + The filename to of the zip file to fix. + + + + + + + Verify the password on a zip file. + + + + + Keep in mind that passwords in zipfiles are applied to + zip entries, not to the entire zip file. So testing a + zipfile for a particular password doesn't work in the + general case. On the other hand, it's often the case + that a single password will be used on all entries in a + zip file. This method works for that case. + + + There is no way to check a password without doing the + decryption. So this code decrypts and extracts the given + zipfile into + + + + The filename to of the zip file to fix. + + The password to check. + + a bool indicating whether the password matches. + + + + Provides a human-readable string with information about the ZipFile. + + + + + The information string contains 10 lines or so, about each ZipEntry, + describing whether encryption is in use, the compressed and uncompressed + length of the entry, the offset of the entry, and so on. As a result the + information string can be very long for zip files that contain many + entries. + + + This information is mostly useful for diagnostic purposes. + + + + + + Indicates whether to perform a full scan of the zip file when reading it. + + + + + + You almost never want to use this property. + + + + When reading a zip file, if this flag is true (True in + VB), the entire zip archive will be scanned and searched for entries. + For large archives, this can take a very, long time. The much more + efficient default behavior is to read the zip directory, which is + stored at the end of the zip file. But, in some cases the directory is + corrupted and you need to perform a full scan of the zip file to + determine the contents of the zip file. This property lets you do + that, when necessary. + + + + This flag is effective only when calling . Normally you would read a ZipFile with the + static ZipFile.Read + method. But you can't set the FullScan property on the + ZipFile instance when you use a static factory method like + ZipFile.Read. + + + + + + + This example shows how to read a zip file using the full scan approach, + and then save it, thereby producing a corrected zip file. + + + using (var zip = new ZipFile()) + { + zip.FullScan = true; + zip.Initialize(zipFileName); + zip.Save(newName); + } + + + + Using zip As New ZipFile + zip.FullScan = True + zip.Initialize(zipFileName) + zip.Save(newName) + End Using + + + + + + + Whether to sort the ZipEntries before saving the file. + + + + The default is false. If you have a large number of zip entries, the sort + alone can consume significant time. + + + + + using (var zip = new ZipFile()) + { + zip.AddFiles(filesToAdd); + zip.SortEntriesBeforeSaving = true; + zip.Save(name); + } + + + + Using zip As New ZipFile + zip.AddFiles(filesToAdd) + zip.SortEntriesBeforeSaving = True + zip.Save(name) + End Using + + + + + + + Indicates whether NTFS Reparse Points, like junctions, should be + traversed during calls to AddDirectory(). + + + + By default, calls to AddDirectory() will traverse NTFS reparse + points, like mounted volumes, and directory junctions. An example + of a junction is the "My Music" directory in Windows Vista. In some + cases you may not want DotNetZip to traverse those directories. In + that case, set this property to false. + + + + + using (var zip = new ZipFile()) + { + zip.AddDirectoryWillTraverseReparsePoints = false; + zip.AddDirectory(dirToZip,"fodder"); + zip.Save(zipFileToCreate); + } + + + + + + Size of the IO buffer used while saving. + + + + + + First, let me say that you really don't need to bother with this. It is + here to allow for optimizations that you probably won't make! It will work + fine if you don't set or get this property at all. Ok? + + + + Now that we have that out of the way, the fine print: This + property affects the size of the buffer that is used for I/O for each + entry contained in the zip file. When a file is read in to be compressed, + it uses a buffer given by the size here. When you update a zip file, the + data for unmodified entries is copied from the first zip file to the + other, through a buffer given by the size here. + + + + Changing the buffer size affects a few things: first, for larger buffer + sizes, the memory used by the ZipFile, obviously, will be larger + during I/O operations. This may make operations faster for very much + larger files. Last, for any given entry, when you use a larger buffer + there will be fewer progress events during I/O operations, because there's + one progress event generated for each time the buffer is filled and then + emptied. + + + + The default buffer size is 8k. Increasing the buffer size may speed + things up as you compress larger files. But there are no hard-and-fast + rules here, eh? You won't know til you test it. And there will be a + limit where ever larger buffers actually slow things down. So as I said + in the beginning, it's probably best if you don't set or get this property + at all. + + + + + + This example shows how you might set a large buffer size for efficiency when + dealing with zip entries that are larger than 1gb. + + using (ZipFile zip = new ZipFile()) + { + zip.SaveProgress += this.zip1_SaveProgress; + zip.AddDirectory(directoryToZip, ""); + zip.UseZip64WhenSaving = Zip64Option.Always; + zip.BufferSize = 65536*8; // 65536 * 8 = 512k + zip.Save(ZipFileToCreate); + } + + + + + + Size of the work buffer to use for the ZLIB codec during compression. + + + + + When doing ZLIB or Deflate compression, the library fills a buffer, + then passes it to the compressor for compression. Then the library + reads out the compressed bytes. This happens repeatedly until there + is no more uncompressed data to compress. This property sets the + size of the buffer that will be used for chunk-wise compression. In + order for the setting to take effect, your application needs to set + this property before calling one of the ZipFile.Save() + overloads. + + + Setting this affects the performance and memory efficiency of + compression and decompression. For larger files, setting this to a + larger size may improve compression performance, but the exact + numbers vary depending on available memory, the size of the streams + you are compressing, and a bunch of other variables. I don't have + good firm recommendations on how to set it. You'll have to test it + yourself. Or just leave it alone and accept the default. + + + + + + Indicates whether extracted files should keep their paths as + stored in the zip archive. + + + + + This property affects Extraction. It is not used when creating zip + archives. + + + + With this property set to false, the default, extracting entries + from a zip file will create files in the filesystem that have the full + path associated to the entry within the zip file. With this property set + to true, extracting entries from the zip file results in files + with no path: the folders are "flattened." + + + + An example: suppose the zip file contains entries /directory1/file1.txt and + /directory2/file2.txt. With FlattenFoldersOnExtract set to false, + the files created will be \directory1\file1.txt and \directory2\file2.txt. + With the property set to true, the files created are file1.txt and file2.txt. + + + + + + + The compression strategy to use for all entries. + + + + Set the Strategy used by the ZLIB-compatible compressor, when + compressing entries using the DEFLATE method. Different compression + strategies work better on different sorts of data. The strategy + parameter can affect the compression ratio and the speed of + compression but not the correctness of the compresssion. For more + information see Ionic.Zlib.CompressionStrategy. + + + + + The name of the ZipFile, on disk. + + + + + + When the ZipFile instance was created by reading an archive using + one of the ZipFile.Read methods, this property represents the name + of the zip file that was read. When the ZipFile instance was + created by using the no-argument constructor, this value is null + (Nothing in VB). + + + + If you use the no-argument constructor, and you then explicitly set this + property, when you call , this name will + specify the name of the zip file created. Doing so is equivalent to + calling . When instantiating a + ZipFile by reading from a stream or byte array, the Name + property remains null. When saving to a stream, the Name + property is implicitly set to null. + + + + + + Sets the compression level to be used for entries subsequently added to + the zip archive. + + + + + Varying the compression level used on entries can affect the + size-vs-speed tradeoff when compression and decompressing data streams + or files. + + + + As with some other properties on the ZipFile class, like , , and , setting this property on a ZipFile + instance will cause the specified CompressionLevel to be used on all + items that are subsequently added to the + ZipFile instance. If you set this property after you have added + items to the ZipFile, but before you have called Save(), + those items will not use the specified compression level. + + + + If you do not set this property, the default compression level is used, + which normally gives a good balance of compression efficiency and + compression speed. In some tests, using BestCompression can + double the time it takes to compress, while delivering just a small + increase in compression efficiency. This behavior will vary with the + type of data you compress. If you are in doubt, just leave this setting + alone, and accept the default. + + + + + + The compression method for the zipfile. + + + + By default, the compression method is CompressionMethod.Deflate. + + + + + + + A comment attached to the zip archive. + + + + + + This property is read/write. It allows the application to specify a + comment for the ZipFile, or read the comment for the + ZipFile. After setting this property, changes are only made + permanent when you call a Save() method. + + + + According to PKWARE's + zip specification, the comment is not encrypted, even if there is a + password set on the zip file. + + + + The specification does not describe how to indicate the encoding used + on a comment string. Many "compliant" zip tools and libraries use + IBM437 as the code page for comments; DotNetZip, too, follows that + practice. On the other hand, there are situations where you want a + Comment to be encoded with something else, for example using code page + 950 "Big-5 Chinese". To fill that need, DotNetZip will encode the + comment following the same procedure it follows for encoding + filenames: (a) if is + Never, it uses the default encoding (IBM437). (b) if is Always, it always uses the + alternate encoding (). (c) if is AsNecessary, it uses the + alternate encoding only if the default encoding is not sufficient for + encoding the comment - in other words if decoding the result does not + produce the original string. This decision is taken at the time of + the call to ZipFile.Save(). + + + + When creating a zip archive using this library, it is possible to change + the value of between each + entry you add, and between adding entries and the call to + Save(). Don't do this. It will likely result in a zip file that is + not readable by any tool or application. For best interoperability, leave + alone, or specify it only + once, before adding any entries to the ZipFile instance. + + + + + + + Specifies whether the Creation, Access, and Modified times for entries + added to the zip file will be emitted in “Windows format” + when the zip archive is saved. + + + + + An application creating a zip archive can use this flag to explicitly + specify that the file times for the entries should or should not be stored + in the zip archive in the format used by Windows. By default this flag is + true, meaning the Windows-format times are stored in the zip + archive. + + + + When adding an entry from a file or directory, the Creation (), Access (), and Modified () times for the given entry are + automatically set from the filesystem values. When adding an entry from a + stream or string, all three values are implicitly set to + DateTime.Now. Applications can also explicitly set those times by + calling . + + + + PKWARE's + zip specification describes multiple ways to format these times in a + zip file. One is the format Windows applications normally use: 100ns ticks + since January 1, 1601 UTC. The other is a format Unix applications typically + use: seconds since January 1, 1970 UTC. Each format can be stored in an + "extra field" in the zip entry when saving the zip archive. The former + uses an extra field with a Header Id of 0x000A, while the latter uses a + header ID of 0x5455, although you probably don't need to know that. + + + + Not all tools and libraries can interpret these fields. Windows + compressed folders is one that can read the Windows Format timestamps, + while I believe the Infozip + tools can read the Unix format timestamps. Some tools and libraries + may be able to read only one or the other. DotNetZip can read or write + times in either or both formats. + + + + The times stored are taken from , , and . + + + + The value set here applies to all entries subsequently added to the + ZipFile. + + + + This property is not mutually exclusive of the property. It is possible and + legal and valid to produce a zip file that contains timestamps encoded in + the Unix format as well as in the Windows format, in addition to the LastModified time attached to each + entry in the archive, a time that is always stored in "DOS format". And, + notwithstanding the names PKWare uses for these time formats, any of them + can be read and written by any computer, on any operating system. But, + there are no guarantees that a program running on Mac or Linux will + gracefully handle a zip file with "Windows" formatted times, or that an + application that does not use DotNetZip but runs on Windows will be able to + handle file times in Unix format. + + + + When in doubt, test. Sorry, I haven't got a complete list of tools and + which sort of timestamps they can use and will tolerate. If you get any + good information and would like to pass it on, please do so and I will + include that information in this documentation. + + + + + This example shows how to save a zip file that contains file timestamps + in a format normally used by Unix. + + using (var zip = new ZipFile()) + { + // produce a zip file the Mac will like + zip.EmitTimesInWindowsFormatWhenSaving = false; + zip.EmitTimesInUnixFormatWhenSaving = true; + zip.AddDirectory(directoryToZip, "files"); + zip.Save(outputFile); + } + + + + Using zip As New ZipFile + '' produce a zip file the Mac will like + zip.EmitTimesInWindowsFormatWhenSaving = False + zip.EmitTimesInUnixFormatWhenSaving = True + zip.AddDirectory(directoryToZip, "files") + zip.Save(outputFile) + End Using + + + + + + + + + Specifies whether the Creation, Access, and Modified times + for entries added to the zip file will be emitted in "Unix(tm) + format" when the zip archive is saved. + + + + + An application creating a zip archive can use this flag to explicitly + specify that the file times for the entries should or should not be stored + in the zip archive in the format used by Unix. By default this flag is + false, meaning the Unix-format times are not stored in the zip + archive. + + + + When adding an entry from a file or directory, the Creation (), Access (), and Modified () times for the given entry are + automatically set from the filesystem values. When adding an entry from a + stream or string, all three values are implicitly set to DateTime.Now. + Applications can also explicitly set those times by calling . + + + + PKWARE's + zip specification describes multiple ways to format these times in a + zip file. One is the format Windows applications normally use: 100ns ticks + since January 1, 1601 UTC. The other is a format Unix applications + typically use: seconds since January 1, 1970 UTC. Each format can be + stored in an "extra field" in the zip entry when saving the zip + archive. The former uses an extra field with a Header Id of 0x000A, while + the latter uses a header ID of 0x5455, although you probably don't need to + know that. + + + + Not all tools and libraries can interpret these fields. Windows + compressed folders is one that can read the Windows Format timestamps, + while I believe the Infozip + tools can read the Unix format timestamps. Some tools and libraries may be + able to read only one or the other. DotNetZip can read or write times in + either or both formats. + + + + The times stored are taken from , , and . + + + + This property is not mutually exclusive of the property. It is possible and + legal and valid to produce a zip file that contains timestamps encoded in + the Unix format as well as in the Windows format, in addition to the LastModified time attached to each + entry in the zip archive, a time that is always stored in "DOS + format". And, notwithstanding the names PKWare uses for these time + formats, any of them can be read and written by any computer, on any + operating system. But, there are no guarantees that a program running on + Mac or Linux will gracefully handle a zip file with "Windows" formatted + times, or that an application that does not use DotNetZip but runs on + Windows will be able to handle file times in Unix format. + + + + When in doubt, test. Sorry, I haven't got a complete list of tools and + which sort of timestamps they can use and will tolerate. If you get any + good information and would like to pass it on, please do so and I will + include that information in this documentation. + + + + + + + + + Indicates whether verbose output is sent to the during AddXxx() and + ReadXxx() operations. + + + + This is a synthetic property. It returns true if the is non-null. + + + + + Returns true if an entry by the given name exists in the ZipFile. + + + the name of the entry to find + true if an entry with the given name exists; otherwise false. + + + + + Indicates whether to perform case-sensitive matching on the filename when + retrieving entries in the zipfile via the string-based indexer. + + + + The default value is false, which means don't do case-sensitive + matching. In other words, retrieving zip["ReadMe.Txt"] is the same as + zip["readme.txt"]. It really makes sense to set this to true only + if you are not running on Windows, which has case-insensitive + filenames. But since this library is not built for non-Windows platforms, + in most cases you should just leave this property alone. + + + + + Indicates whether to ignore duplicate files (report only the first entry) + when loading a zipfile. + + + + The default value is false, which will try to make all files + available (duplicates will have a "copy" suffix appended to their name). + Setting this to true prior to using Initialize to read a + zipfile will prevent this and instead just ignore the duplicates. + + + + + Indicates whether to encode entry filenames and entry comments using Unicode + (UTF-8). + + + + + The + PKWare zip specification provides for encoding file names and file + comments in either the IBM437 code page, or in UTF-8. This flag selects + the encoding according to that specification. By default, this flag is + false, and filenames and comments are encoded into the zip file in the + IBM437 codepage. Setting this flag to true will specify that filenames + and comments that cannot be encoded with IBM437 will be encoded with + UTF-8. + + + + Zip files created with strict adherence to the PKWare specification with + respect to UTF-8 encoding can contain entries with filenames containing + any combination of Unicode characters, including the full range of + characters from Chinese, Latin, Hebrew, Greek, Cyrillic, and many other + alphabets. However, because at this time, the UTF-8 portion of the PKWare + specification is not broadly supported by other zip libraries and + utilities, such zip files may not be readable by your favorite zip tool or + archiver. In other words, interoperability will decrease if you set this + flag to true. + + + + In particular, Zip files created with strict adherence to the PKWare + specification with respect to UTF-8 encoding will not work well with + Explorer in Windows XP or Windows Vista, because Windows compressed + folders, as far as I know, do not support UTF-8 in zip files. Vista can + read the zip files, but shows the filenames incorrectly. Unpacking from + Windows Vista Explorer will result in filenames that have rubbish + characters in place of the high-order UTF-8 bytes. + + + + Also, zip files that use UTF-8 encoding will not work well with Java + applications that use the java.util.zip classes, as of v5.0 of the Java + runtime. The Java runtime does not correctly implement the PKWare + specification in this regard. + + + + As a result, we have the unfortunate situation that "correct" behavior by + the DotNetZip library with regard to Unicode encoding of filenames during + zip creation will result in zip files that are readable by strictly + compliant and current tools (for example the most recent release of the + commercial WinZip tool); but these zip files will not be readable by + various other tools or libraries, including Windows Explorer. + + + + The DotNetZip library can read and write zip files with UTF8-encoded + entries, according to the PKware spec. If you use DotNetZip for both + creating and reading the zip file, and you use UTF-8, there will be no + loss of information in the filenames. For example, using a self-extractor + created by this library will allow you to unpack files correctly with no + loss of information in the filenames. + + + + If you do not set this flag, it will remain false. If this flag is false, + your ZipFile will encode all filenames and comments using the + IBM437 codepage. This can cause "loss of information" on some filenames, + but the resulting zipfile will be more interoperable with other + utilities. As an example of the loss of information, diacritics can be + lost. The o-tilde character will be down-coded to plain o. The c with a + cedilla (Unicode 0xE7) used in Portugese will be downcoded to a c. + Likewise, the O-stroke character (Unicode 248), used in Danish and + Norwegian, will be down-coded to plain o. Chinese characters cannot be + represented in codepage IBM437; when using the default encoding, Chinese + characters in filenames will be represented as ?. These are all examples + of "information loss". + + + + The loss of information associated to the use of the IBM437 encoding is + inconvenient, and can also lead to runtime errors. For example, using + IBM437, any sequence of 4 Chinese characters will be encoded as ????. If + your application creates a ZipFile, then adds two files, each with + names of four Chinese characters each, this will result in a duplicate + filename exception. In the case where you add a single file with a name + containing four Chinese characters, calling Extract() on the entry that + has question marks in the filename will result in an exception, because + the question mark is not legal for use within filenames on Windows. These + are just a few examples of the problems associated to loss of information. + + + + This flag is independent of the encoding of the content within the entries + in the zip file. Think of the zip file as a container - it supports an + encoding. Within the container are other "containers" - the file entries + themselves. The encoding within those entries is independent of the + encoding of the zip archive container for those entries. + + + + Rather than specify the encoding in a binary fashion using this flag, an + application can specify an arbitrary encoding via the property. Setting the encoding + explicitly when creating zip archives will result in non-compliant zip + files that, curiously, are fairly interoperable. The challenge is, the + PKWare specification does not provide for a way to specify that an entry + in a zip archive uses a code page that is neither IBM437 nor UTF-8. + Therefore if you set the encoding explicitly when creating a zip archive, + you must take care upon reading the zip archive to use the same code page. + If you get it wrong, the behavior is undefined and may result in incorrect + filenames, exceptions, stomach upset, hair loss, and acne. + + + + + + + Specify whether to use ZIP64 extensions when saving a zip archive. + + + + + + When creating a zip file, the default value for the property is . is + safest, in the sense that you will not get an Exception if a pre-ZIP64 + limit is exceeded. + + + + You may set the property at any time before calling Save(). + + + + When reading a zip file via the Zipfile.Read() method, DotNetZip + will properly read ZIP64-endowed zip archives, regardless of the value of + this property. DotNetZip will always read ZIP64 archives. This property + governs only whether DotNetZip will write them. Therefore, when updating + archives, be careful about setting this property after reading an archive + that may use ZIP64 extensions. + + + + An interesting question is, if you have set this property to + AsNecessary, and then successfully saved, does the resulting + archive use ZIP64 extensions or not? To learn this, check the property, after calling Save(). + + + + Have you thought about + donating? + + + + + + + + Indicates whether the archive requires ZIP64 extensions. + + + + + + This property is null (or Nothing in VB) if the archive has + not been saved, and there are fewer than 65334 ZipEntry items + contained in the archive. + + + + The Value is true if any of the following four conditions holds: + the uncompressed size of any entry is larger than 0xFFFFFFFF; the + compressed size of any entry is larger than 0xFFFFFFFF; the relative + offset of any entry within the zip archive is larger than 0xFFFFFFFF; or + there are more than 65534 entries in the archive. (0xFFFFFFFF = + 4,294,967,295). The result may not be known until a Save() is attempted + on the zip archive. The Value of this + property may be set only AFTER one of the Save() methods has been called. + + + + If none of the four conditions holds, and the archive has been saved, then + the Value is false. + + + + A Value of false does not indicate that the zip archive, as saved, + does not use ZIP64. It merely indicates that ZIP64 is not required. An + archive may use ZIP64 even when not required if the property is set to , or if the property is set to and the output stream was not + seekable. Use the property to determine if + the most recent Save() method resulted in an archive that utilized + the ZIP64 extensions. + + + + + + + + + Indicates whether the most recent Save() operation used ZIP64 extensions. + + + + + The use of ZIP64 extensions within an archive is not always necessary, and + for interoperability concerns, it may be desired to NOT use ZIP64 if + possible. The property can be + set to use ZIP64 extensions only when necessary. In those cases, + Sometimes applications want to know whether a Save() actually used ZIP64 + extensions. Applications can query this read-only property to learn + whether ZIP64 has been used in a just-saved ZipFile. + + + + The value is null (or Nothing in VB) if the archive has not + been saved. + + + + Non-null values (HasValue is true) indicate whether ZIP64 + extensions were used during the most recent Save() operation. The + ZIP64 extensions may have been used as required by any particular entry + because of its uncompressed or compressed size, or because the archive is + larger than 4294967295 bytes, or because there are more than 65534 entries + in the archive, or because the UseZip64WhenSaving property was set + to , or because the + UseZip64WhenSaving property was set to and the output stream was not seekable. + The value of this property does not indicate the reason the ZIP64 + extensions were used. + + + + + + + + + Indicates whether the most recent Read() operation read a zip file that uses + ZIP64 extensions. + + + + This property will return null (Nothing in VB) if you've added an entry after reading + the zip file. + + + + + The text encoding to use when writing new entries to the ZipFile, + for those entries that cannot be encoded with the default (IBM437) + encoding; or, the text encoding that was used when reading the entries + from the ZipFile. + + + + + In its + zip specification, PKWare describes two options for encoding + filenames and comments: using IBM437 or UTF-8. But, some archiving tools + or libraries do not follow the specification, and instead encode + characters using the system default code page. For example, WinRAR when + run on a machine in Shanghai may encode filenames with the Big-5 Chinese + (950) code page. This behavior is contrary to the Zip specification, but + it occurs anyway. + + + + When using DotNetZip to write zip archives that will be read by one of + these other archivers, set this property to specify the code page to use + when encoding the and for each ZipEntry in the zip file, for + values that cannot be encoded with the default codepage for zip files, + IBM437. This is why this property is "provisional". In all cases, IBM437 + is used where possible, in other words, where no loss of data would + result. It is possible, therefore, to have a given entry with a + Comment encoded in IBM437 and a FileName encoded with the + specified "provisional" codepage. + + + + Be aware that a zip file created after you've explicitly set the property to a value other than + IBM437 may not be compliant to the PKWare specification, and may not be + readable by compliant archivers. On the other hand, many (most?) + archivers are non-compliant and can read zip files created in arbitrary + code pages. The trick is to use or specify the proper codepage when + reading the zip. + + + + When creating a zip archive using this library, it is possible to change + the value of between each + entry you add, and between adding entries and the call to + Save(). Don't do this. It will likely result in a zipfile that is + not readable. For best interoperability, either leave alone, or specify it only once, + before adding any entries to the ZipFile instance. There is one + exception to this recommendation, described later. + + + + When using an arbitrary, non-UTF8 code page for encoding, there is no + standard way for the creator application - whether DotNetZip, WinZip, + WinRar, or something else - to formally specify in the zip file which + codepage has been used for the entries. As a result, readers of zip files + are not able to inspect the zip file and determine the codepage that was + used for the entries contained within it. It is left to the application + or user to determine the necessary codepage when reading zip files encoded + this way. In other words, if you explicitly specify the codepage when you + create the zipfile, you must explicitly specify the same codepage when + reading the zipfile. + + + + The way you specify the code page to use when reading a zip file varies + depending on the tool or library you use to read the zip. In DotNetZip, + you use a ZipFile.Read() method that accepts an encoding parameter. It + isn't possible with Windows Explorer, as far as I know, to specify an + explicit codepage to use when reading a zip. If you use an incorrect + codepage when reading a zipfile, you will get entries with filenames that + are incorrect, and the incorrect filenames may even contain characters + that are not legal for use within filenames in Windows. Extracting entries + with illegal characters in the filenames will lead to exceptions. It's too + bad, but this is just the way things are with code pages in zip + files. Caveat Emptor. + + + + Example: Suppose you create a zipfile that contains entries with + filenames that have Danish characters. If you use equal to "iso-8859-1" (cp 28591), + the filenames will be correctly encoded in the zip. But, to read that + zipfile correctly, you have to specify the same codepage at the time you + read it. If try to read that zip file with Windows Explorer or another + application that is not flexible with respect to the codepage used to + decode filenames in zipfiles, you will get a filename like "Inf�.txt". + + + + When using DotNetZip to read a zip archive, and the zip archive uses an + arbitrary code page, you must specify the encoding to use before or when + the Zipfile is READ. This means you must use a ZipFile.Read() + method that allows you to specify a System.Text.Encoding parameter. Setting + the ProvisionalAlternateEncoding property after your application has read in + the zip archive will not affect the entry names of entries that have already + been read in. + + + + And now, the exception to the rule described above. One strategy for + specifying the code page for a given zip file is to describe the code page + in a human-readable form in the Zip comment. For example, the comment may + read "Entries in this archive are encoded in the Big5 code page". For + maximum interoperability, the zip comment in this case should be encoded + in the default, IBM437 code page. In this case, the zip comment is + encoded using a different page than the filenames. To do this, Specify + ProvisionalAlternateEncoding to your desired region-specific code + page, once before adding any entries, and then reset + ProvisionalAlternateEncoding to IBM437 before setting the property and calling Save(). + + + + + This example shows how to read a zip file using the Big-5 Chinese code page + (950), and extract each entry in the zip file. For this code to work as + desired, the Zipfile must have been created using the big5 code page + (CP950). This is typical, for example, when using WinRar on a machine with + CP950 set as the default code page. In that case, the names of entries + within the Zip archive will be stored in that code page, and reading the zip + archive must be done using that code page. If the application did not use + the correct code page in ZipFile.Read(), then names of entries within the + zip archive would not be correctly retrieved. + + using (var zip = ZipFile.Read(zipFileName, System.Text.Encoding.GetEncoding("big5"))) + { + // retrieve and extract an entry using a name encoded with CP950 + zip[MyDesiredEntry].Extract("unpack"); + } + + + + Using zip As ZipFile = ZipFile.Read(ZipToExtract, System.Text.Encoding.GetEncoding("big5")) + ' retrieve and extract an entry using a name encoded with CP950 + zip(MyDesiredEntry).Extract("unpack") + End Using + + + + DefaultEncoding + + + + A Text Encoding to use when encoding the filenames and comments for + all the ZipEntry items, during a ZipFile.Save() operation. + + + + Whether the encoding specified here is used during the save depends + on . + + + + + + A flag that tells if and when this instance should apply + AlternateEncoding to encode the filenames and comments associated to + of ZipEntry objects contained within this instance. + + + + + Gets or sets the TextWriter to which status messages are delivered + for the instance. + + + + If the TextWriter is set to a non-null value, then verbose output is sent + to the TextWriter during Add, Read, Save and + Extract operations. Typically, console applications might use + Console.Out and graphical or headless applications might use a + System.IO.StringWriter. The output of this is suitable for viewing + by humans. + + + + + In this example, a console application instantiates a ZipFile, then + sets the StatusMessageTextWriter to Console.Out. At that + point, all verbose status messages for that ZipFile are sent to the + console. + + + + using (ZipFile zip= ZipFile.Read(FilePath)) + { + zip.StatusMessageTextWriter= System.Console.Out; + // messages are sent to the console during extraction + zip.ExtractAll(); + } + + + + Using zip As ZipFile = ZipFile.Read(FilePath) + zip.StatusMessageTextWriter= System.Console.Out + 'Status Messages will be sent to the console during extraction + zip.ExtractAll() + End Using + + + + In this example, a Windows Forms application instantiates a + ZipFile, then sets the StatusMessageTextWriter to a + StringWriter. At that point, all verbose status messages for that + ZipFile are sent to the StringWriter. + + + + var sw = new System.IO.StringWriter(); + using (ZipFile zip= ZipFile.Read(FilePath)) + { + zip.StatusMessageTextWriter= sw; + zip.ExtractAll(); + } + Console.WriteLine("{0}", sw.ToString()); + + + + Dim sw as New System.IO.StringWriter + Using zip As ZipFile = ZipFile.Read(FilePath) + zip.StatusMessageTextWriter= sw + zip.ExtractAll() + End Using + 'Status Messages are now available in sw + + + + + + + Gets or sets the name for the folder to store the temporary file + this library writes when saving a zip archive. + + + + + This library will create a temporary file when saving a Zip archive to a + file. This file is written when calling one of the Save() methods + that does not save to a stream, or one of the SaveSelfExtractor() + methods. + + + + By default, the library will create the temporary file in the directory + specified for the file itself, via the property or via + the method. + + + + Setting this property allows applications to override this default + behavior, so that the library will create the temporary file in the + specified folder. For example, to have the library create the temporary + file in the current working directory, regardless where the ZipFile + is saved, specfy ".". To revert to the default behavior, set this + property to null (Nothing in VB). + + + + When setting the property to a non-null value, the folder specified must + exist; if it does not an exception is thrown. The application should have + write and delete permissions on the folder. The permissions are not + explicitly checked ahead of time; if the application does not have the + appropriate rights, an exception will be thrown at the time Save() + is called. + + + + There is no temporary file created when reading a zip archive. When + saving to a Stream, there is no temporary file created. For example, if + the application is an ASP.NET application and calls Save() + specifying the Response.OutputStream as the output stream, there is + no temporary file created. + + + + + Thrown when setting the property if the directory does not exist. + + + + + + Sets the password to be used on the ZipFile instance. + + + + + + When writing a zip archive, this password is applied to the entries, not + to the zip archive itself. It applies to any ZipEntry subsequently + added to the ZipFile, using one of the AddFile, + AddDirectory, AddEntry, or AddItem methods, etc. + When reading a zip archive, this property applies to any entry + subsequently extracted from the ZipFile using one of the Extract + methods on the ZipFile class. + + + + When writing a zip archive, keep this in mind: though the password is set + on the ZipFile object, according to the Zip spec, the "directory" of the + archive - in other words the list of entries or files contained in the archive - is + not encrypted with the password, or protected in any way. If you set the + Password property, the password actually applies to individual entries + that are added to the archive, subsequent to the setting of this property. + The list of filenames in the archive that is eventually created will + appear in clear text, but the contents of the individual files are + encrypted. This is how Zip encryption works. + + + + One simple way around this limitation is to simply double-wrap sensitive + filenames: Store the files in a zip file, and then store that zip file + within a second, "outer" zip file. If you apply a password to the outer + zip file, then readers will be able to see that the outer zip file + contains an inner zip file. But readers will not be able to read the + directory or file list of the inner zip file. + + + + If you set the password on the ZipFile, and then add a set of files + to the archive, then each entry is encrypted with that password. You may + also want to change the password between adding different entries. If you + set the password, add an entry, then set the password to null + (Nothing in VB), and add another entry, the first entry is + encrypted and the second is not. If you call AddFile(), then set + the Password property, then call ZipFile.Save, the file + added will not be password-protected, and no warning will be generated. + + + + When setting the Password, you may also want to explicitly set the property, to specify how to encrypt the entries added + to the ZipFile. If you set the Password to a non-null value and do not + set , then PKZip 2.0 ("Weak") encryption is used. + This encryption is relatively weak but is very interoperable. If you set + the password to a null value (Nothing in VB), Encryption is + reset to None. + + + + All of the preceding applies to writing zip archives, in other words when + you use one of the Save methods. To use this property when reading or an + existing ZipFile, do the following: set the Password property on the + ZipFile, then call one of the Extract() overloads on the . In this case, the entry is extracted using the + Password that is specified on the ZipFile instance. If you + have not set the Password property, then the password is + null, and the entry is extracted with no password. + + + + If you set the Password property on the ZipFile, then call + Extract() an entry that has not been encrypted with a password, the + password is not used for that entry, and the ZipEntry is extracted + as normal. In other words, the password is used only if necessary. + + + + The class also has a Password property. It takes precedence + over this property on the ZipFile. Typically, you would use the + per-entry Password when most entries in the zip archive use one password, + and a few entries use a different password. If all entries in the zip + file use the same password, then it is simpler to just set this property + on the ZipFile itself, whether creating a zip archive or extracting + a zip archive. + + + + + + + This example creates a zip file, using password protection for the + entries, and then extracts the entries from the zip file. When creating + the zip file, the Readme.txt file is not protected with a password, but + the other two are password-protected as they are saved. During extraction, + each file is extracted with the appropriate password. + + + // create a file with encryption + using (ZipFile zip = new ZipFile()) + { + zip.AddFile("ReadMe.txt"); + zip.Password= "!Secret1"; + zip.AddFile("MapToTheSite-7440-N49th.png"); + zip.AddFile("2008-Regional-Sales-Report.pdf"); + zip.Save("EncryptedArchive.zip"); + } + + // extract entries that use encryption + using (ZipFile zip = ZipFile.Read("EncryptedArchive.zip")) + { + zip.Password= "!Secret1"; + zip.ExtractAll("extractDir"); + } + + + + + Using zip As New ZipFile + zip.AddFile("ReadMe.txt") + zip.Password = "123456!" + zip.AddFile("MapToTheSite-7440-N49th.png") + zip.Password= "!Secret1"; + zip.AddFile("2008-Regional-Sales-Report.pdf") + zip.Save("EncryptedArchive.zip") + End Using + + + ' extract entries that use encryption + Using (zip as ZipFile = ZipFile.Read("EncryptedArchive.zip")) + zip.Password= "!Secret1" + zip.ExtractAll("extractDir") + End Using + + + + + + ZipFile.Encryption + ZipEntry.Password + + + + The action the library should take when extracting a file that already + exists. + + + + + This property affects the behavior of the Extract methods (one of the + Extract() or ExtractWithPassword() overloads), when + extraction would would overwrite an existing filesystem file. If you do + not set this property, the library throws an exception when extracting an + entry would overwrite an existing file. + + + + This property has no effect when extracting to a stream, or when the file + to be extracted does not already exist. + + + + + + + The action the library should take when an error is encountered while + opening or reading files as they are saved into a zip archive. + + + + + Errors can occur as a file is being saved to the zip archive. For + example, the File.Open may fail, or a File.Read may fail, because of + lock conflicts or other reasons. + + + + The first problem might occur after having called AddDirectory() on a + directory that contains a Clipper .dbf file; the file is locked by + Clipper and cannot be opened for read by another process. An example of + the second problem might occur when trying to zip a .pst file that is in + use by Microsoft Outlook. Outlook locks a range on the file, which allows + other processes to open the file, but not read it in its entirety. + + + + This property tells DotNetZip what you would like to do in the case of + these errors. The primary options are: ZipErrorAction.Throw to + throw an exception (this is the default behavior if you don't set this + property); ZipErrorAction.Skip to Skip the file for which there + was an error and continue saving; ZipErrorAction.Retry to Retry + the entry that caused the problem; or + ZipErrorAction.InvokeErrorEvent to invoke an event handler. + + + + This property is implicitly set to ZipErrorAction.InvokeErrorEvent + if you add a handler to the event. If you set + this property to something other than + ZipErrorAction.InvokeErrorEvent, then the ZipError + event is implicitly cleared. What it means is you can set one or the + other (or neither), depending on what you want, but you never need to set + both. + + + + As with some other properties on the ZipFile class, like , , and , setting this property on a ZipFile + instance will cause the specified ZipErrorAction to be used on all + items that are subsequently added to the + ZipFile instance. If you set this property after you have added + items to the ZipFile, but before you have called Save(), + those items will not use the specified error handling action. + + + + If you want to handle any errors that occur with any entry in the zip + file in the same way, then set this property once, before adding any + entries to the zip archive. + + + + If you set this property to ZipErrorAction.Skip and you'd like to + learn which files may have been skipped after a Save(), you can + set the on the ZipFile before + calling Save(). A message will be emitted into that writer for + each skipped file, if any. + + + + + + This example shows how to tell DotNetZip to skip any files for which an + error is generated during the Save(). + + Public Sub SaveZipFile() + Dim SourceFolder As String = "fodder" + Dim DestFile As String = "eHandler.zip" + Dim sw as New StringWriter + Using zipArchive As ZipFile = New ZipFile + ' Tell DotNetZip to skip any files for which it encounters an error + zipArchive.ZipErrorAction = ZipErrorAction.Skip + zipArchive.StatusMessageTextWriter = sw + zipArchive.AddDirectory(SourceFolder) + zipArchive.Save(DestFile) + End Using + ' examine sw here to see any messages + End Sub + + + + + + + + + + The Encryption to use for entries added to the ZipFile. + + + + + Set this when creating a zip archive, or when updating a zip archive. The + specified Encryption is applied to the entries subsequently added to the + ZipFile instance. Applications do not need to set the + Encryption property when reading or extracting a zip archive. + + + + If you set this to something other than EncryptionAlgorithm.None, you + will also need to set the . + + + + As with some other properties on the ZipFile class, like and , setting this + property on a ZipFile instance will cause the specified + EncryptionAlgorithm to be used on all items + that are subsequently added to the ZipFile instance. In other + words, if you set this property after you have added items to the + ZipFile, but before you have called Save(), those items will + not be encrypted or protected with a password in the resulting zip + archive. To get a zip archive with encrypted entries, set this property, + along with the property, before calling + AddFile, AddItem, or AddDirectory (etc.) on the + ZipFile instance. + + + + If you read a ZipFile, you can modify the Encryption on an + encrypted entry, only by setting the Encryption property on the + ZipEntry itself. Setting the Encryption property on the + ZipFile, once it has been created via a call to + ZipFile.Read(), does not affect entries that were previously read. + + + + For example, suppose you read a ZipFile, and there is an encrypted + entry. Setting the Encryption property on that ZipFile and + then calling Save() on the ZipFile does not update the + Encryption used for the entries in the archive. Neither is an + exception thrown. Instead, what happens during the Save() is that + all previously existing entries are copied through to the new zip archive, + with whatever encryption and password that was used when originally + creating the zip archive. Upon re-reading that archive, to extract + entries, applications should use the original password or passwords, if + any. + + + + Suppose an application reads a ZipFile, and there is an encrypted + entry. Setting the Encryption property on that ZipFile and + then adding new entries (via AddFile(), AddEntry(), etc) + and then calling Save() on the ZipFile does not update the + Encryption on any of the entries that had previously been in the + ZipFile. The Encryption property applies only to the + newly-added entries. + + + + + + + This example creates a zip archive that uses encryption, and then extracts + entries from the archive. When creating the zip archive, the ReadMe.txt + file is zipped without using a password or encryption. The other files + use encryption. + + + + // Create a zip archive with AES Encryption. + using (ZipFile zip = new ZipFile()) + { + zip.AddFile("ReadMe.txt"); + zip.Encryption= EncryptionAlgorithm.WinZipAes256; + zip.Password= "Top.Secret.No.Peeking!"; + zip.AddFile("7440-N49th.png"); + zip.AddFile("2008-Regional-Sales-Report.pdf"); + zip.Save("EncryptedArchive.zip"); + } + + // Extract a zip archive that uses AES Encryption. + // You do not need to specify the algorithm during extraction. + using (ZipFile zip = ZipFile.Read("EncryptedArchive.zip")) + { + zip.Password= "Top.Secret.No.Peeking!"; + zip.ExtractAll("extractDirectory"); + } + + + + ' Create a zip that uses Encryption. + Using zip As New ZipFile() + zip.Encryption= EncryptionAlgorithm.WinZipAes256 + zip.Password= "Top.Secret.No.Peeking!" + zip.AddFile("ReadMe.txt") + zip.AddFile("7440-N49th.png") + zip.AddFile("2008-Regional-Sales-Report.pdf") + zip.Save("EncryptedArchive.zip") + End Using + + ' Extract a zip archive that uses AES Encryption. + ' You do not need to specify the algorithm during extraction. + Using (zip as ZipFile = ZipFile.Read("EncryptedArchive.zip")) + zip.Password= "Top.Secret.No.Peeking!" + zip.ExtractAll("extractDirectory") + End Using + + + + + ZipFile.Password + ZipEntry.Encryption + + + + A callback that allows the application to specify the compression level + to use for entries subsequently added to the zip archive. + + + + + + With this callback, the DotNetZip library allows the application to + determine whether compression will be used, at the time of the + Save. This may be useful if the application wants to favor + speed over size, and wants to defer the decision until the time of + Save. + + + + Typically applications set the property on + the ZipFile or on each ZipEntry to determine the level of + compression used. This is done at the time the entry is added to the + ZipFile. Setting the property to + Ionic.Zlib.CompressionLevel.None means no compression will be used. + + + + This callback allows the application to defer the decision on the + CompressionLevel to use, until the time of the call to + ZipFile.Save(). The callback is invoked once per ZipEntry, + at the time the data for the entry is being written out as part of a + Save() operation. The application can use whatever criteria it + likes in determining the level to return. For example, an application may + wish that no .mp3 files should be compressed, because they are already + compressed and the extra compression is not worth the CPU time incurred, + and so can return None for all .mp3 entries. + + + + The library determines whether compression will be attempted for an entry + this way: If the entry is a zero length file, or a directory, no + compression is used. Otherwise, if this callback is set, it is invoked + and the CompressionLevel is set to the return value. If this + callback has not been set, then the previously set value for + CompressionLevel is used. + + + + + + + The maximum size of an output segment, when saving a split Zip file. + + + + Make sure you do not read from this field if you've set the value using + + + + Set this to a non-zero value before calling or to specify that the ZipFile should be saved as a + split archive, also sometimes called a spanned archive. Some also + call them multi-file archives. + + + + A split zip archive is saved in a set of discrete filesystem files, + rather than in a single file. This is handy when transmitting the + archive in email or some other mechanism that has a limit to the size of + each file. The first file in a split archive will be named + basename.z01, the second will be named basename.z02, and + so on. The final file is named basename.zip. According to the zip + specification from PKWare, the minimum value is 65536, for a 64k segment + size. The maximum number of segments allows in a split archive is 99. + + + + The value of this property determines the maximum size of a split + segment when writing a split archive. For example, suppose you have a + ZipFile that would save to a single file of 200k. If you set the + MaxOutputSegmentSize to 65536 before calling Save(), you + will get four distinct output files. On the other hand if you set this + property to 256k, then you will get a single-file archive for that + ZipFile. + + + + The size of each split output file will be as large as possible, up to + the maximum size set here. The zip specification requires that some data + fields in a zip archive may not span a split boundary, and an output + segment may be smaller than the maximum if necessary to avoid that + problem. Also, obviously the final segment of the archive may be smaller + than the maximum segment size. Segments will never be larger than the + value set with this property. + + + + You can save a split Zip file only when saving to a regular filesystem + file. It's not possible to save a split zip file as a self-extracting + archive, nor is it possible to save a split zip file to a stream. When + saving to a SFX or to a Stream, this property is ignored. + + + + About interoperability: Split or spanned zip files produced by DotNetZip + can be read by WinZip or PKZip, and vice-versa. Segmented zip files may + not be readable by other tools, if those other tools don't support zip + spanning or splitting. When in doubt, test. I don't believe Windows + Explorer can extract a split archive. + + + + This property has no effect when reading a split archive. You can read + a split archive in the normal way with DotNetZip. + + + + When saving a zip file, if you want a regular zip file rather than a + split zip file, don't set this property, or set it to Zero. + + + + If you read a split archive, with and + then subsequently call ZipFile.Save(), unless you set this + property before calling Save(), you will get a normal, + single-file archive. + + + + + + + + The maximum size of an output segment, when saving a split Zip file. + + + + If you set this value, make sure you do not accidently use in your code + + + + Set this to a non-zero value before calling or to specify that the ZipFile should be saved as a + split archive, also sometimes called a spanned archive. Some also + call them multi-file archives. + + + + A split zip archive is saved in a set of discrete filesystem files, + rather than in a single file. This is handy when transmitting the + archive in email or some other mechanism that has a limit to the size of + each file. The first file in a split archive will be named + basename.z01, the second will be named basename.z02, and + so on. The final file is named basename.zip. According to the zip + specification from PKWare, the minimum value is 65536, for a 64k segment + size. The maximum number of segments allows in a split archive is 99. + + + + The value of this property determines the maximum size of a split + segment when writing a split archive. For example, suppose you have a + ZipFile that would save to a single file of 200k. If you set the + MaxOutputSegmentSize to 65536 before calling Save(), you + will get four distinct output files. On the other hand if you set this + property to 256k, then you will get a single-file archive for that + ZipFile. + + + + The size of each split output file will be as large as possible, up to + the maximum size set here. The zip specification requires that some data + fields in a zip archive may not span a split boundary, and an output + segment may be smaller than the maximum if necessary to avoid that + problem. Also, obviously the final segment of the archive may be smaller + than the maximum segment size. Segments will never be larger than the + value set with this property. + + + + You can save a split Zip file only when saving to a regular filesystem + file. It's not possible to save a split zip file as a self-extracting + archive, nor is it possible to save a split zip file to a stream. When + saving to a SFX or to a Stream, this property is ignored. + + + + About interoperability: Split or spanned zip files produced by DotNetZip + can be read by WinZip or PKZip, and vice-versa. Segmented zip files may + not be readable by other tools, if those other tools don't support zip + spanning or splitting. When in doubt, test. I don't believe Windows + Explorer can extract a split archive. + + + + This property has no effect when reading a split archive. You can read + a split archive in the normal way with DotNetZip. + + + + When saving a zip file, if you want a regular zip file rather than a + split zip file, don't set this property, or set it to Zero. + + + + If you read a split archive, with and + then subsequently call ZipFile.Save(), unless you set this + property before calling Save(), you will get a normal, + single-file archive. + + + + + + + + Returns the number of segments used in the most recent Save() operation. + + + + This is normally zero, unless you have set the property. If you have set , and then you save a file, after the call to + Save() completes, you can read this value to learn the number of segments that + were created. + + + If you call Save("Archive.zip"), and it creates 5 segments, then you + will have filesystem files named Archive.z01, Archive.z02, Archive.z03, + Archive.z04, and Archive.zip, and the value of this property will be 5. + + + + + + + The size threshold for an entry, above which a parallel deflate is used. + + + + + + DotNetZip will use multiple threads to compress any ZipEntry, + if the entry is larger than the given size. Zero means "always + use parallel deflate", while -1 means "never use parallel + deflate". The default value for this property is 512k. Aside + from the special values of 0 and 1, the minimum value is 65536. + + + + If the entry size cannot be known before compression, as with a + read-forward stream, then Parallel deflate will never be + performed, unless the value of this property is zero. + + + + A parallel deflate operations will speed up the compression of + large files, on computers with multiple CPUs or multiple CPU + cores. For files above 1mb, on a dual core or dual-cpu (2p) + machine, the time required to compress the file can be 70% of the + single-threaded deflate. For very large files on 4p machines the + compression can be done in 30% of the normal time. The downside + is that parallel deflate consumes extra memory during the deflate, + and the deflation is not as effective. + + + + Parallel deflate tends to yield slightly less compression when + compared to as single-threaded deflate; this is because the original + data stream is split into multiple independent buffers, each of which + is compressed in parallel. But because they are treated + independently, there is no opportunity to share compression + dictionaries. For that reason, a deflated stream may be slightly + larger when compressed using parallel deflate, as compared to a + traditional single-threaded deflate. Sometimes the increase over the + normal deflate is as much as 5% of the total compressed size. For + larger files it can be as small as 0.1%. + + + + Multi-threaded compression does not give as much an advantage when + using Encryption. This is primarily because encryption tends to slow + down the entire pipeline. Also, multi-threaded compression gives less + of an advantage when using lower compression levels, for example . You may have to + perform some tests to determine the best approach for your situation. + + + + + + + + + + The maximum number of buffer pairs to use when performing + parallel compression. + + + + + This property sets an upper limit on the number of memory + buffer pairs to create when performing parallel + compression. The implementation of the parallel + compression stream allocates multiple buffers to + facilitate parallel compression. As each buffer fills up, + the stream uses + ThreadPool.QueueUserWorkItem() to compress those + buffers in a background threadpool thread. After a buffer + is compressed, it is re-ordered and written to the output + stream. + + + + A higher number of buffer pairs enables a higher degree of + parallelism, which tends to increase the speed of compression on + multi-cpu computers. On the other hand, a higher number of buffer + pairs also implies a larger memory consumption, more active worker + threads, and a higher cpu utilization for any compression. This + property enables the application to limit its memory consumption and + CPU utilization behavior depending on requirements. + + + + For each compression "task" that occurs in parallel, there are 2 + buffers allocated: one for input and one for output. This property + sets a limit for the number of pairs. The total amount of storage + space allocated for buffering will then be (N*S*2), where N is the + number of buffer pairs, S is the size of each buffer (). By default, DotNetZip allocates 4 buffer + pairs per CPU core, so if your machine has 4 cores, and you retain + the default buffer size of 128k, then the + ParallelDeflateOutputStream will use 4 * 4 * 2 * 128kb of buffer + memory in total, or 4mb, in blocks of 128kb. If you then set this + property to 8, then the number will be 8 * 2 * 128kb of buffer + memory, or 2mb. + + + + CPU utilization will also go up with additional buffers, because a + larger number of buffer pairs allows a larger number of background + threads to compress in parallel. If you find that parallel + compression is consuming too much memory or CPU, you can adjust this + value downward. + + + + The default value is 16. Different values may deliver better or + worse results, depending on your priorities and the dynamic + performance characteristics of your storage and compute resources. + + + + This property is not the number of buffer pairs to use; it is an + upper limit. An illustration: Suppose you have an application that + uses the default value of this property (which is 16), and it runs + on a machine with 2 CPU cores. In that case, DotNetZip will allocate + 4 buffer pairs per CPU core, for a total of 8 pairs. The upper + limit specified by this property has no effect. + + + + The application can set this value at any time + before calling ZipFile.Save(). + + + + + + + + Provides a string representation of the instance. + a string representation of the instance. + + + + Returns the version number on the DotNetZip assembly. + + + + + This property is exposed as a convenience. Callers could also get the + version value by retrieving GetName().Version on the + System.Reflection.Assembly object pointing to the DotNetZip + assembly. But sometimes it is not clear which assembly is being loaded. + This property makes it clear. + + + This static property is primarily useful for diagnostic purposes. + + + + + + Creates a new ZipFile instance, using the specified filename. + + + + + Applications can use this constructor to create a new ZipFile for writing, + or to slurp in an existing zip archive for read and update purposes. + + + + To create a new zip archive, an application can call this constructor, + passing the name of a file that does not exist. The name may be a fully + qualified path. Then the application can add directories or files to the + ZipFile via AddDirectory(), AddFile(), AddItem() + and then write the zip archive to the disk by calling Save(). The + zip file is not actually opened and written to the disk until the + application calls ZipFile.Save(). At that point the new zip file + with the given name is created. + + + + If you won't know the name of the Zipfile until the time you call + ZipFile.Save(), or if you plan to save to a stream (which has no + name), then you should use the no-argument constructor. + + + + The application can also call this constructor to read an existing zip + archive. passing the name of a valid zip file that does exist. But, it's + better form to use the static method, + passing the name of the zip file, because using ZipFile.Read() in + your code communicates very clearly what you are doing. In either case, + the file is then read into the ZipFile instance. The app can then + enumerate the entries or can modify the zip file, for example adding + entries, removing entries, changing comments, and so on. + + + + One advantage to this parameterized constructor: it allows applications to + use the same code to add items to a zip archive, regardless of whether the + zip file exists. + + + + Instances of the ZipFile class are not multi-thread safe. You may + not party on a single instance with multiple threads. You may have + multiple threads that each use a distinct ZipFile instance, or you + can synchronize multi-thread access to a single instance. + + + + By the way, since DotNetZip is so easy to use, don't you think you should + donate $5 or $10? + + + + + + Thrown if name refers to an existing file that is not a valid zip file. + + + + This example shows how to create a zipfile, and add a few files into it. + + String ZipFileToCreate = "archive1.zip"; + String DirectoryToZip = "c:\\reports"; + using (ZipFile zip = new ZipFile()) + { + // Store all files found in the top level directory, into the zip archive. + String[] filenames = System.IO.Directory.GetFiles(DirectoryToZip); + zip.AddFiles(filenames, "files"); + zip.Save(ZipFileToCreate); + } + + + + Dim ZipFileToCreate As String = "archive1.zip" + Dim DirectoryToZip As String = "c:\reports" + Using zip As ZipFile = New ZipFile() + Dim filenames As String() = System.IO.Directory.GetFiles(DirectoryToZip) + zip.AddFiles(filenames, "files") + zip.Save(ZipFileToCreate) + End Using + + + + The filename to use for the new zip archive. + + + + + Creates a new ZipFile instance, using the specified name for the + filename, and the specified Encoding. + + + + + See the documentation on the ZipFile + constructor that accepts a single string argument for basic + information on all the ZipFile constructors. + + + + The Encoding is used as the default alternate encoding for entries with + filenames or comments that cannot be encoded with the IBM437 code page. + This is equivalent to setting the property on the ZipFile + instance after construction. + + + + Instances of the ZipFile class are not multi-thread safe. You may + not party on a single instance with multiple threads. You may have + multiple threads that each use a distinct ZipFile instance, or you + can synchronize multi-thread access to a single instance. + + + + + + Thrown if name refers to an existing file that is not a valid zip file. + + + The filename to use for the new zip archive. + The Encoding is used as the default alternate + encoding for entries with filenames or comments that cannot be encoded + with the IBM437 code page. + + + + Create a zip file, without specifying a target filename or stream to save to. + + + + + See the documentation on the ZipFile + constructor that accepts a single string argument for basic + information on all the ZipFile constructors. + + + + After instantiating with this constructor and adding entries to the + archive, the application should call or + to save to a file or a + stream, respectively. The application can also set the + property and then call the no-argument method. (This + is the preferred approach for applications that use the library through + COM interop.) If you call the no-argument method + without having set the Name of the ZipFile, either through + the parameterized constructor or through the explicit property , the + Save() will throw, because there is no place to save the file. + + + Instances of the ZipFile class are not multi-thread safe. You may + have multiple threads that each use a distinct ZipFile instance, or + you can synchronize multi-thread access to a single instance. + + + + + This example creates a Zip archive called Backup.zip, containing all the files + in the directory DirectoryToZip. Files within subdirectories are not zipped up. + + using (ZipFile zip = new ZipFile()) + { + // Store all files found in the top level directory, into the zip archive. + // note: this code does not recurse subdirectories! + String[] filenames = System.IO.Directory.GetFiles(DirectoryToZip); + zip.AddFiles(filenames, "files"); + zip.Save("Backup.zip"); + } + + + + Using zip As New ZipFile + ' Store all files found in the top level directory, into the zip archive. + ' note: this code does not recurse subdirectories! + Dim filenames As String() = System.IO.Directory.GetFiles(DirectoryToZip) + zip.AddFiles(filenames, "files") + zip.Save("Backup.zip") + End Using + + + + + + Create a zip file, specifying a text Encoding, but without specifying a + target filename or stream to save to. + + + + + See the documentation on the ZipFile + constructor that accepts a single string argument for basic + information on all the ZipFile constructors. + + + + + + The Encoding is used as the default alternate encoding for entries with + filenames or comments that cannot be encoded with the IBM437 code page. + + + + + Creates a new ZipFile instance, using the specified name for the + filename, and the specified status message writer. + + + + + See the documentation on the ZipFile + constructor that accepts a single string argument for basic + information on all the ZipFile constructors. + + + + This version of the constructor allows the caller to pass in a TextWriter, + to which verbose messages will be written during extraction or creation of + the zip archive. A console application may wish to pass + System.Console.Out to get messages on the Console. A graphical or headless + application may wish to capture the messages in a different + TextWriter, for example, a StringWriter, and then display + the messages in a TextBox, or generate an audit log of ZipFile operations. + + + + To encrypt the data for the files added to the ZipFile instance, + set the Password property after creating the ZipFile instance. + + + + Instances of the ZipFile class are not multi-thread safe. You may + not party on a single instance with multiple threads. You may have + multiple threads that each use a distinct ZipFile instance, or you + can synchronize multi-thread access to a single instance. + + + + + + Thrown if name refers to an existing file that is not a valid zip file. + + + + + using (ZipFile zip = new ZipFile("Backup.zip", Console.Out)) + { + // Store all files found in the top level directory, into the zip archive. + // note: this code does not recurse subdirectories! + // Status messages will be written to Console.Out + String[] filenames = System.IO.Directory.GetFiles(DirectoryToZip); + zip.AddFiles(filenames); + zip.Save(); + } + + + + Using zip As New ZipFile("Backup.zip", Console.Out) + ' Store all files found in the top level directory, into the zip archive. + ' note: this code does not recurse subdirectories! + ' Status messages will be written to Console.Out + Dim filenames As String() = System.IO.Directory.GetFiles(DirectoryToZip) + zip.AddFiles(filenames) + zip.Save() + End Using + + + + The filename to use for the new zip archive. + A TextWriter to use for writing + verbose status messages. + + + + Creates a new ZipFile instance, using the specified name for the + filename, the specified status message writer, and the specified Encoding. + + + + + This constructor works like the ZipFile + constructor that accepts a single string argument. See that + reference for detail on what this constructor does. + + + + This version of the constructor allows the caller to pass in a + TextWriter, and an Encoding. The TextWriter will collect + verbose messages that are generated by the library during extraction or + creation of the zip archive. A console application may wish to pass + System.Console.Out to get messages on the Console. A graphical or + headless application may wish to capture the messages in a different + TextWriter, for example, a StringWriter, and then display + the messages in a TextBox, or generate an audit log of + ZipFile operations. + + + + The Encoding is used as the default alternate encoding for entries + with filenames or comments that cannot be encoded with the IBM437 code + page. This is a equivalent to setting the property on the ZipFile + instance after construction. + + + + To encrypt the data for the files added to the ZipFile instance, + set the Password property after creating the ZipFile + instance. + + + + Instances of the ZipFile class are not multi-thread safe. You may + not party on a single instance with multiple threads. You may have + multiple threads that each use a distinct ZipFile instance, or you + can synchronize multi-thread access to a single instance. + + + + + + Thrown if fileName refers to an existing file that is not a valid zip file. + + + The filename to use for the new zip archive. + A TextWriter to use for writing verbose + status messages. + + The Encoding is used as the default alternate encoding for entries with + filenames or comments that cannot be encoded with the IBM437 code page. + + + + + Initialize a ZipFile instance by reading in a zip file. + + + + + + This method is primarily useful from COM Automation environments, when + reading or extracting zip files. In COM, it is not possible to invoke + parameterized constructors for a class. A COM Automation application can + update a zip file by using the default (no argument) + constructor, then calling Initialize() to read the contents + of an on-disk zip archive into the ZipFile instance. + + + + .NET applications are encouraged to use the ZipFile.Read() methods + for better clarity. + + + + the name of the existing zip file to read in. + + + + This is an integer indexer into the Zip archive. + + + + + This property is read-only. + + + + Internally, the ZipEntry instances that belong to the + ZipFile are stored in a Dictionary. When you use this + indexer the first time, it creates a read-only + List<ZipEntry> from the Dictionary.Values Collection. + If at any time you modify the set of entries in the ZipFile, + either by adding an entry, removing an entry, or renaming an + entry, a new List will be created, and the numeric indexes for the + remaining entries may be different. + + + + This means you cannot rename any ZipEntry from + inside an enumeration of the zip file. + + + + The index value. + + + + + + The ZipEntry within the Zip archive at the specified index. If the + entry does not exist in the archive, this indexer throws. + + + + + + This is a name-based indexer into the Zip archive. + + + + + This property is read-only. + + + + The property on the ZipFile + determines whether retrieval via this indexer is done via case-sensitive + comparisons. By default, retrieval is not case sensitive. This makes + sense on Windows, in which filesystems are not case sensitive. + + + + Regardless of case-sensitivity, it is not always the case that + this[value].FileName == value. In other words, the FileName + property of the ZipEntry retrieved with this indexer, may or may + not be equal to the index value. + + + + This is because DotNetZip performs a normalization of filenames passed to + this indexer, before attempting to retrieve the item. That normalization + includes: removal of a volume letter and colon, swapping backward slashes + for forward slashes. So, zip["dir1\\entry1.txt"].FileName == + "dir1/entry.txt". + + + + Directory entries in the zip file may be retrieved via this indexer only + with names that have a trailing slash. DotNetZip automatically appends a + trailing slash to the names of any directory entries added to a zip. + + + + + + This example extracts only the entries in a zip file that are .txt files. + + using (ZipFile zip = ZipFile.Read("PackedDocuments.zip")) + { + foreach (string s1 in zip.EntryFilenames) + { + if (s1.EndsWith(".txt")) + zip[s1].Extract("textfiles"); + } + } + + + Using zip As ZipFile = ZipFile.Read("PackedDocuments.zip") + Dim s1 As String + For Each s1 In zip.EntryFilenames + If s1.EndsWith(".txt") Then + zip(s1).Extract("textfiles") + End If + Next + End Using + + + + + + Thrown if the caller attempts to assign a non-null value to the indexer. + + + + The name of the file, including any directory path, to retrieve from the + zip. The filename match is not case-sensitive by default; you can use the + property to change this behavior. The + pathname can use forward-slashes or backward slashes. + + + + The ZipEntry within the Zip archive, given by the specified + filename. If the named entry does not exist in the archive, this indexer + returns null (Nothing in VB). + + + + + + The list of filenames for the entries contained within the zip archive. + + + + According to the ZIP specification, the names of the entries use forward + slashes in pathnames. If you are scanning through the list, you may have + to swap forward slashes for backslashes. + + + + + + This example shows one way to test if a filename is already contained + within a zip archive. + + String zipFileToRead= "PackedDocuments.zip"; + string candidate = "DatedMaterial.xps"; + using (ZipFile zip = new ZipFile(zipFileToRead)) + { + if (zip.EntryFilenames.Contains(candidate)) + Console.WriteLine("The file '{0}' exists in the zip archive '{1}'", + candidate, + zipFileName); + else + Console.WriteLine("The file, '{0}', does not exist in the zip archive '{1}'", + candidate, + zipFileName); + Console.WriteLine(); + } + + + Dim zipFileToRead As String = "PackedDocuments.zip" + Dim candidate As String = "DatedMaterial.xps" + Using zip As ZipFile.Read(ZipFileToRead) + If zip.EntryFilenames.Contains(candidate) Then + Console.WriteLine("The file '{0}' exists in the zip archive '{1}'", _ + candidate, _ + zipFileName) + Else + Console.WriteLine("The file, '{0}', does not exist in the zip archive '{1}'", _ + candidate, _ + zipFileName) + End If + Console.WriteLine + End Using + + + + + The list of strings for the filenames contained within the Zip archive. + + + + + + Returns the readonly collection of entries in the Zip archive. + + + + + + If there are no entries in the current ZipFile, the value returned is a + non-null zero-element collection. If there are entries in the zip file, + the elements are returned in no particular order. + + + This is the implied enumerator on the ZipFile class. If you use a + ZipFile instance in a context that expects an enumerator, you will + get this collection. + + + + + + + Returns a readonly collection of entries in the Zip archive, sorted by FileName. + + + + If there are no entries in the current ZipFile, the value returned + is a non-null zero-element collection. If there are entries in the zip + file, the elements are returned sorted by the name of the entry. + + + + + This example fills a Windows Forms ListView with the entries in a zip file. + + + using (ZipFile zip = ZipFile.Read(zipFile)) + { + foreach (ZipEntry entry in zip.EntriesSorted) + { + ListViewItem item = new ListViewItem(n.ToString()); + n++; + string[] subitems = new string[] { + entry.FileName.Replace("/","\\"), + entry.LastModified.ToString("yyyy-MM-dd HH:mm:ss"), + entry.UncompressedSize.ToString(), + String.Format("{0,5:F0}%", entry.CompressionRatio), + entry.CompressedSize.ToString(), + (entry.UsesEncryption) ? "Y" : "N", + String.Format("{0:X8}", entry.Crc)}; + + foreach (String s in subitems) + { + ListViewItem.ListViewSubItem subitem = new ListViewItem.ListViewSubItem(); + subitem.Text = s; + item.SubItems.Add(subitem); + } + + this.listView1.Items.Add(item); + } + } + + + + + + + + Returns the number of entries in the Zip archive. + + + + + Removes the given ZipEntry from the zip archive. + + + + + After calling RemoveEntry, the application must call Save to + make the changes permanent. + + + + + Thrown if the specified ZipEntry does not exist in the ZipFile. + + + + In this example, all entries in the zip archive dating from before + December 31st, 2007, are removed from the archive. This is actually much + easier if you use the RemoveSelectedEntries method. But I needed an + example for RemoveEntry, so here it is. + + String ZipFileToRead = "ArchiveToModify.zip"; + System.DateTime Threshold = new System.DateTime(2007,12,31); + using (ZipFile zip = ZipFile.Read(ZipFileToRead)) + { + var EntriesToRemove = new System.Collections.Generic.List<ZipEntry>(); + foreach (ZipEntry e in zip) + { + if (e.LastModified < Threshold) + { + // We cannot remove the entry from the list, within the context of + // an enumeration of said list. + // So we add the doomed entry to a list to be removed later. + EntriesToRemove.Add(e); + } + } + + // actually remove the doomed entries. + foreach (ZipEntry zombie in EntriesToRemove) + zip.RemoveEntry(zombie); + + zip.Comment= String.Format("This zip archive was updated at {0}.", + System.DateTime.Now.ToString("G")); + + // save with a different name + zip.Save("Archive-Updated.zip"); + } + + + + Dim ZipFileToRead As String = "ArchiveToModify.zip" + Dim Threshold As New DateTime(2007, 12, 31) + Using zip As ZipFile = ZipFile.Read(ZipFileToRead) + Dim EntriesToRemove As New System.Collections.Generic.List(Of ZipEntry) + Dim e As ZipEntry + For Each e In zip + If (e.LastModified < Threshold) Then + ' We cannot remove the entry from the list, within the context of + ' an enumeration of said list. + ' So we add the doomed entry to a list to be removed later. + EntriesToRemove.Add(e) + End If + Next + + ' actually remove the doomed entries. + Dim zombie As ZipEntry + For Each zombie In EntriesToRemove + zip.RemoveEntry(zombie) + Next + zip.Comment = String.Format("This zip archive was updated at {0}.", DateTime.Now.ToString("G")) + 'save as a different name + zip.Save("Archive-Updated.zip") + End Using + + + + + The ZipEntry to remove from the zip. + + + + + + + + Removes the ZipEntry with the given filename from the zip archive. + + + + + After calling RemoveEntry, the application must call Save to + make the changes permanent. + + + + + + Thrown if the ZipFile is not updatable. + + + + Thrown if a ZipEntry with the specified filename does not exist in + the ZipFile. + + + + + This example shows one way to remove an entry with a given filename from + an existing zip archive. + + + String zipFileToRead= "PackedDocuments.zip"; + string candidate = "DatedMaterial.xps"; + using (ZipFile zip = ZipFile.Read(zipFileToRead)) + { + if (zip.EntryFilenames.Contains(candidate)) + { + zip.RemoveEntry(candidate); + zip.Comment= String.Format("The file '{0}' has been removed from this archive.", + Candidate); + zip.Save(); + } + } + + + Dim zipFileToRead As String = "PackedDocuments.zip" + Dim candidate As String = "DatedMaterial.xps" + Using zip As ZipFile = ZipFile.Read(zipFileToRead) + If zip.EntryFilenames.Contains(candidate) Then + zip.RemoveEntry(candidate) + zip.Comment = String.Format("The file '{0}' has been removed from this archive.", Candidate) + zip.Save + End If + End Using + + + + + The name of the file, including any directory path, to remove from the zip. + The filename match is not case-sensitive by default; you can use the + CaseSensitiveRetrieval property to change this behavior. The + pathname can use forward-slashes or backward slashes. + + + + + + Closes the read and write streams associated + to the ZipFile, if necessary. + + + + The Dispose() method is generally employed implicitly, via a using(..) {..} + statement. (Using...End Using in VB) If you do not employ a using + statement, insure that your application calls Dispose() explicitly. For + example, in a Powershell application, or an application that uses the COM + interop interface, you must call Dispose() explicitly. + + + + This example extracts an entry selected by name, from the Zip file to the + Console. + + using (ZipFile zip = ZipFile.Read(zipfile)) + { + foreach (ZipEntry e in zip) + { + if (WantThisEntry(e.FileName)) + zip.Extract(e.FileName, Console.OpenStandardOutput()); + } + } // Dispose() is called implicitly here. + + + + Using zip As ZipFile = ZipFile.Read(zipfile) + Dim e As ZipEntry + For Each e In zip + If WantThisEntry(e.FileName) Then + zip.Extract(e.FileName, Console.OpenStandardOutput()) + End If + Next + End Using ' Dispose is implicity called here + + + + + + Disposes any managed resources, if the flag is set, then marks the + instance disposed. This method is typically not called explicitly from + application code. + + + + Applications should call the no-arg Dispose method. + + + + indicates whether the method should dispose streams or not. + + + + + Default size of the buffer used for IO. + + + + + An event handler invoked when a Save() starts, before and after each + entry has been written to the archive, when a Save() completes, and + during other Save events. + + + + + Depending on the particular event, different properties on the parameter are set. The following + table summarizes the available EventTypes and the conditions under + which this event handler is invoked with a + SaveProgressEventArgs with the given EventType. + + + + + value of EntryType + Meaning and conditions + + + + ZipProgressEventType.Saving_Started + Fired when ZipFile.Save() begins. + + + + + ZipProgressEventType.Saving_BeforeSaveEntry + + Fired within ZipFile.Save(), just before writing data for each + particular entry. + + + + + ZipProgressEventType.Saving_AfterSaveEntry + + Fired within ZipFile.Save(), just after having finished writing data + for each particular entry. + + + + + ZipProgressEventType.Saving_Completed + Fired when ZipFile.Save() has completed. + + + + + ZipProgressEventType.Saving_AfterSaveTempArchive + + Fired after the temporary file has been created. This happens only + when saving to a disk file. This event will not be invoked when + saving to a stream. + + + + + ZipProgressEventType.Saving_BeforeRenameTempArchive + + Fired just before renaming the temporary file to the permanent + location. This happens only when saving to a disk file. This event + will not be invoked when saving to a stream. + + + + + ZipProgressEventType.Saving_AfterRenameTempArchive + + Fired just after renaming the temporary file to the permanent + location. This happens only when saving to a disk file. This event + will not be invoked when saving to a stream. + + + + + ZipProgressEventType.Saving_AfterCompileSelfExtractor + + Fired after a self-extracting archive has finished compiling. This + EventType is used only within SaveSelfExtractor(). + + + + + ZipProgressEventType.Saving_BytesRead + + Set during the save of a particular entry, to update progress of the + Save(). When this EventType is set, the BytesTransferred is the + number of bytes that have been read from the source stream. The + TotalBytesToTransfer is the number of bytes in the uncompressed + file. + + + + + + + + + This example uses an anonymous method to handle the + SaveProgress event, by updating a progress bar. + + + progressBar1.Value = 0; + progressBar1.Max = listbox1.Items.Count; + using (ZipFile zip = new ZipFile()) + { + // listbox1 contains a list of filenames + zip.AddFiles(listbox1.Items); + + // do the progress bar: + zip.SaveProgress += (sender, e) => { + if (e.EventType == ZipProgressEventType.Saving_BeforeWriteEntry) { + progressBar1.PerformStep(); + } + }; + + zip.Save(fs); + } + + + + + This example uses a named method as the + SaveProgress event handler, to update the user, in a + console-based application. + + + static bool justHadByteUpdate= false; + public static void SaveProgress(object sender, SaveProgressEventArgs e) + { + if (e.EventType == ZipProgressEventType.Saving_Started) + Console.WriteLine("Saving: {0}", e.ArchiveName); + + else if (e.EventType == ZipProgressEventType.Saving_Completed) + { + justHadByteUpdate= false; + Console.WriteLine(); + Console.WriteLine("Done: {0}", e.ArchiveName); + } + + else if (e.EventType == ZipProgressEventType.Saving_BeforeWriteEntry) + { + if (justHadByteUpdate) + Console.WriteLine(); + Console.WriteLine(" Writing: {0} ({1}/{2})", + e.CurrentEntry.FileName, e.EntriesSaved, e.EntriesTotal); + justHadByteUpdate= false; + } + + else if (e.EventType == ZipProgressEventType.Saving_EntryBytesRead) + { + if (justHadByteUpdate) + Console.SetCursorPosition(0, Console.CursorTop); + Console.Write(" {0}/{1} ({2:N0}%)", e.BytesTransferred, e.TotalBytesToTransfer, + e.BytesTransferred / (0.01 * e.TotalBytesToTransfer )); + justHadByteUpdate= true; + } + } + + public static ZipUp(string targetZip, string directory) + { + using (var zip = new ZipFile()) { + zip.SaveProgress += SaveProgress; + zip.AddDirectory(directory); + zip.Save(targetZip); + } + } + + + + + Public Sub ZipUp(ByVal targetZip As String, ByVal directory As String) + Using zip As ZipFile = New ZipFile + AddHandler zip.SaveProgress, AddressOf MySaveProgress + zip.AddDirectory(directory) + zip.Save(targetZip) + End Using + End Sub + + Private Shared justHadByteUpdate As Boolean = False + + Public Shared Sub MySaveProgress(ByVal sender As Object, ByVal e As SaveProgressEventArgs) + If (e.EventType Is ZipProgressEventType.Saving_Started) Then + Console.WriteLine("Saving: {0}", e.ArchiveName) + + ElseIf (e.EventType Is ZipProgressEventType.Saving_Completed) Then + justHadByteUpdate = False + Console.WriteLine + Console.WriteLine("Done: {0}", e.ArchiveName) + + ElseIf (e.EventType Is ZipProgressEventType.Saving_BeforeWriteEntry) Then + If justHadByteUpdate Then + Console.WriteLine + End If + Console.WriteLine(" Writing: {0} ({1}/{2})", e.CurrentEntry.FileName, e.EntriesSaved, e.EntriesTotal) + justHadByteUpdate = False + + ElseIf (e.EventType Is ZipProgressEventType.Saving_EntryBytesRead) Then + If justHadByteUpdate Then + Console.SetCursorPosition(0, Console.CursorTop) + End If + Console.Write(" {0}/{1} ({2:N0}%)", e.BytesTransferred, _ + e.TotalBytesToTransfer, _ + (CDbl(e.BytesTransferred) / (0.01 * e.TotalBytesToTransfer))) + justHadByteUpdate = True + End If + End Sub + + + + + + This is a more complete example of using the SaveProgress + events in a Windows Forms application, with a + Thread object. + + + delegate void SaveEntryProgress(SaveProgressEventArgs e); + delegate void ButtonClick(object sender, EventArgs e); + + public class WorkerOptions + { + public string ZipName; + public string Folder; + public string Encoding; + public string Comment; + public int ZipFlavor; + public Zip64Option Zip64; + } + + private int _progress2MaxFactor; + private bool _saveCanceled; + private long _totalBytesBeforeCompress; + private long _totalBytesAfterCompress; + private Thread _workerThread; + + + private void btnZipup_Click(object sender, EventArgs e) + { + KickoffZipup(); + } + + private void btnCancel_Click(object sender, EventArgs e) + { + if (this.lblStatus.InvokeRequired) + { + this.lblStatus.Invoke(new ButtonClick(this.btnCancel_Click), new object[] { sender, e }); + } + else + { + _saveCanceled = true; + lblStatus.Text = "Canceled..."; + ResetState(); + } + } + + private void KickoffZipup() + { + _folderName = tbDirName.Text; + + if (_folderName == null || _folderName == "") return; + if (this.tbZipName.Text == null || this.tbZipName.Text == "") return; + + // check for existence of the zip file: + if (System.IO.File.Exists(this.tbZipName.Text)) + { + var dlgResult = MessageBox.Show(String.Format("The file you have specified ({0}) already exists." + + " Do you want to overwrite this file?", this.tbZipName.Text), + "Confirmation is Required", MessageBoxButtons.YesNo, MessageBoxIcon.Question); + if (dlgResult != DialogResult.Yes) return; + System.IO.File.Delete(this.tbZipName.Text); + } + + _saveCanceled = false; + _nFilesCompleted = 0; + _totalBytesAfterCompress = 0; + _totalBytesBeforeCompress = 0; + this.btnOk.Enabled = false; + this.btnOk.Text = "Zipping..."; + this.btnCancel.Enabled = true; + lblStatus.Text = "Zipping..."; + + var options = new WorkerOptions + { + ZipName = this.tbZipName.Text, + Folder = _folderName, + Encoding = "ibm437" + }; + + if (this.comboBox1.SelectedIndex != 0) + { + options.Encoding = this.comboBox1.SelectedItem.ToString(); + } + + if (this.radioFlavorSfxCmd.Checked) + options.ZipFlavor = 2; + else if (this.radioFlavorSfxGui.Checked) + options.ZipFlavor = 1; + else options.ZipFlavor = 0; + + if (this.radioZip64AsNecessary.Checked) + options.Zip64 = Zip64Option.AsNecessary; + else if (this.radioZip64Always.Checked) + options.Zip64 = Zip64Option.Always; + else options.Zip64 = Zip64Option.Never; + + options.Comment = String.Format("Encoding:{0} || Flavor:{1} || ZIP64:{2}\r\nCreated at {3} || {4}\r\n", + options.Encoding, + FlavorToString(options.ZipFlavor), + options.Zip64.ToString(), + System.DateTime.Now.ToString("yyyy-MMM-dd HH:mm:ss"), + this.Text); + + if (this.tbComment.Text != TB_COMMENT_NOTE) + options.Comment += this.tbComment.Text; + + _workerThread = new Thread(this.DoSave); + _workerThread.Name = "Zip Saver thread"; + _workerThread.Start(options); + this.Cursor = Cursors.WaitCursor; + } + + + private void DoSave(Object p) + { + WorkerOptions options = p as WorkerOptions; + try + { + using (var zip1 = new ZipFile()) + { + zip1.ProvisionalAlternateEncoding = System.Text.Encoding.GetEncoding(options.Encoding); + zip1.Comment = options.Comment; + zip1.AddDirectory(options.Folder); + _entriesToZip = zip1.EntryFileNames.Count; + SetProgressBars(); + zip1.SaveProgress += this.zip1_SaveProgress; + + zip1.UseZip64WhenSaving = options.Zip64; + + if (options.ZipFlavor == 1) + zip1.SaveSelfExtractor(options.ZipName, SelfExtractorFlavor.WinFormsApplication); + else if (options.ZipFlavor == 2) + zip1.SaveSelfExtractor(options.ZipName, SelfExtractorFlavor.ConsoleApplication); + else + zip1.Save(options.ZipName); + } + } + catch (System.Exception exc1) + { + MessageBox.Show(String.Format("Exception while zipping: {0}", exc1.Message)); + btnCancel_Click(null, null); + } + } + + + + void zip1_SaveProgress(object sender, SaveProgressEventArgs e) + { + switch (e.EventType) + { + case ZipProgressEventType.Saving_AfterWriteEntry: + StepArchiveProgress(e); + break; + case ZipProgressEventType.Saving_EntryBytesRead: + StepEntryProgress(e); + break; + case ZipProgressEventType.Saving_Completed: + SaveCompleted(); + break; + case ZipProgressEventType.Saving_AfterSaveTempArchive: + // this event only occurs when saving an SFX file + TempArchiveSaved(); + break; + } + if (_saveCanceled) + e.Cancel = true; + } + + + + private void StepArchiveProgress(SaveProgressEventArgs e) + { + if (this.progressBar1.InvokeRequired) + { + this.progressBar1.Invoke(new SaveEntryProgress(this.StepArchiveProgress), new object[] { e }); + } + else + { + if (!_saveCanceled) + { + _nFilesCompleted++; + this.progressBar1.PerformStep(); + _totalBytesAfterCompress += e.CurrentEntry.CompressedSize; + _totalBytesBeforeCompress += e.CurrentEntry.UncompressedSize; + + // reset the progress bar for the entry: + this.progressBar2.Value = this.progressBar2.Maximum = 1; + + this.Update(); + } + } + } + + + private void StepEntryProgress(SaveProgressEventArgs e) + { + if (this.progressBar2.InvokeRequired) + { + this.progressBar2.Invoke(new SaveEntryProgress(this.StepEntryProgress), new object[] { e }); + } + else + { + if (!_saveCanceled) + { + if (this.progressBar2.Maximum == 1) + { + // reset + Int64 max = e.TotalBytesToTransfer; + _progress2MaxFactor = 0; + while (max > System.Int32.MaxValue) + { + max /= 2; + _progress2MaxFactor++; + } + this.progressBar2.Maximum = (int)max; + lblStatus.Text = String.Format("{0} of {1} files...({2})", + _nFilesCompleted + 1, _entriesToZip, e.CurrentEntry.FileName); + } + + int xferred = e.BytesTransferred >> _progress2MaxFactor; + + this.progressBar2.Value = (xferred >= this.progressBar2.Maximum) + ? this.progressBar2.Maximum + : xferred; + + this.Update(); + } + } + } + + private void SaveCompleted() + { + if (this.lblStatus.InvokeRequired) + { + this.lblStatus.Invoke(new MethodInvoker(this.SaveCompleted)); + } + else + { + lblStatus.Text = String.Format("Done, Compressed {0} files, {1:N0}% of original.", + _nFilesCompleted, (100.00 * _totalBytesAfterCompress) / _totalBytesBeforeCompress); + ResetState(); + } + } + + private void ResetState() + { + this.btnCancel.Enabled = false; + this.btnOk.Enabled = true; + this.btnOk.Text = "Zip it!"; + this.progressBar1.Value = 0; + this.progressBar2.Value = 0; + this.Cursor = Cursors.Default; + if (!_workerThread.IsAlive) + _workerThread.Join(); + } + + + + + + + + + + + An event handler invoked before, during, and after the reading of a zip archive. + + + + + Depending on the particular event being signaled, different properties on the + parameter are set. The following table + summarizes the available EventTypes and the conditions under which this + event handler is invoked with a ReadProgressEventArgs with the given EventType. + + + + + value of EntryType + Meaning and conditions + + + + ZipProgressEventType.Reading_Started + Fired just as ZipFile.Read() begins. Meaningful properties: ArchiveName. + + + + + ZipProgressEventType.Reading_Completed + Fired when ZipFile.Read() has completed. Meaningful properties: ArchiveName. + + + + + ZipProgressEventType.Reading_ArchiveBytesRead + Fired while reading, updates the number of bytes read for the entire archive. + Meaningful properties: ArchiveName, CurrentEntry, BytesTransferred, TotalBytesToTransfer. + + + + + ZipProgressEventType.Reading_BeforeReadEntry + Indicates an entry is about to be read from the archive. + Meaningful properties: ArchiveName, EntriesTotal. + + + + + ZipProgressEventType.Reading_AfterReadEntry + Indicates an entry has just been read from the archive. + Meaningful properties: ArchiveName, EntriesTotal, CurrentEntry. + + + + + + + + + + + + + An event handler invoked before, during, and after extraction of + entries in the zip archive. + + + + + Depending on the particular event, different properties on the parameter are set. The following + table summarizes the available EventTypes and the conditions under + which this event handler is invoked with a + ExtractProgressEventArgs with the given EventType. + + + + + value of EntryType + Meaning and conditions + + + + ZipProgressEventType.Extracting_BeforeExtractAll + + Set when ExtractAll() begins. The ArchiveName, Overwrite, and + ExtractLocation properties are meaningful. + + + + ZipProgressEventType.Extracting_AfterExtractAll + + Set when ExtractAll() has completed. The ArchiveName, Overwrite, + and ExtractLocation properties are meaningful. + + + + + ZipProgressEventType.Extracting_BeforeExtractEntry + + Set when an Extract() on an entry in the ZipFile has begun. + Properties that are meaningful: ArchiveName, EntriesTotal, + CurrentEntry, Overwrite, ExtractLocation, EntriesExtracted. + + + + + ZipProgressEventType.Extracting_AfterExtractEntry + + Set when an Extract() on an entry in the ZipFile has completed. + Properties that are meaningful: ArchiveName, EntriesTotal, + CurrentEntry, Overwrite, ExtractLocation, EntriesExtracted. + + + + + ZipProgressEventType.Extracting_EntryBytesWritten + + Set within a call to Extract() on an entry in the ZipFile, as data + is extracted for the entry. Properties that are meaningful: + ArchiveName, CurrentEntry, BytesTransferred, TotalBytesToTransfer. + + + + + ZipProgressEventType.Extracting_ExtractEntryWouldOverwrite + + Set within a call to Extract() on an entry in the ZipFile, when the + extraction would overwrite an existing file. This event type is used + only when ExtractExistingFileAction on the ZipFile or + ZipEntry is set to InvokeExtractProgressEvent. + + + + + + + + + + private static bool justHadByteUpdate = false; + public static void ExtractProgress(object sender, ExtractProgressEventArgs e) + { + if(e.EventType == ZipProgressEventType.Extracting_EntryBytesWritten) + { + if (justHadByteUpdate) + Console.SetCursorPosition(0, Console.CursorTop); + + Console.Write(" {0}/{1} ({2:N0}%)", e.BytesTransferred, e.TotalBytesToTransfer, + e.BytesTransferred / (0.01 * e.TotalBytesToTransfer )); + justHadByteUpdate = true; + } + else if(e.EventType == ZipProgressEventType.Extracting_BeforeExtractEntry) + { + if (justHadByteUpdate) + Console.WriteLine(); + Console.WriteLine("Extracting: {0}", e.CurrentEntry.FileName); + justHadByteUpdate= false; + } + } + + public static ExtractZip(string zipToExtract, string directory) + { + string TargetDirectory= "extract"; + using (var zip = ZipFile.Read(zipToExtract)) { + zip.ExtractProgress += ExtractProgress; + foreach (var e in zip1) + { + e.Extract(TargetDirectory, true); + } + } + } + + + + Public Shared Sub Main(ByVal args As String()) + Dim ZipToUnpack As String = "C1P3SML.zip" + Dim TargetDir As String = "ExtractTest_Extract" + Console.WriteLine("Extracting file {0} to {1}", ZipToUnpack, TargetDir) + Using zip1 As ZipFile = ZipFile.Read(ZipToUnpack) + AddHandler zip1.ExtractProgress, AddressOf MyExtractProgress + Dim e As ZipEntry + For Each e In zip1 + e.Extract(TargetDir, True) + Next + End Using + End Sub + + Private Shared justHadByteUpdate As Boolean = False + + Public Shared Sub MyExtractProgress(ByVal sender As Object, ByVal e As ExtractProgressEventArgs) + If (e.EventType = ZipProgressEventType.Extracting_EntryBytesWritten) Then + If ExtractTest.justHadByteUpdate Then + Console.SetCursorPosition(0, Console.CursorTop) + End If + Console.Write(" {0}/{1} ({2:N0}%)", e.BytesTransferred, e.TotalBytesToTransfer, (CDbl(e.BytesTransferred) / (0.01 * e.TotalBytesToTransfer))) + ExtractTest.justHadByteUpdate = True + ElseIf (e.EventType = ZipProgressEventType.Extracting_BeforeExtractEntry) Then + If ExtractTest.justHadByteUpdate Then + Console.WriteLine + End If + Console.WriteLine("Extracting: {0}", e.CurrentEntry.FileName) + ExtractTest.justHadByteUpdate = False + End If + End Sub + + + + + + + + + + An event handler invoked before, during, and after Adding entries to a zip archive. + + + + Adding a large number of entries to a zip file can take a long + time. For example, when calling on a + directory that contains 50,000 files, it could take 3 minutes or so. + This event handler allws an application to track the progress of the Add + operation, and to optionally cancel a lengthy Add operation. + + + + + + int _numEntriesToAdd= 0; + int _numEntriesAdded= 0; + void AddProgressHandler(object sender, AddProgressEventArgs e) + { + switch (e.EventType) + { + case ZipProgressEventType.Adding_Started: + Console.WriteLine("Adding files to the zip..."); + break; + case ZipProgressEventType.Adding_AfterAddEntry: + _numEntriesAdded++; + Console.WriteLine(String.Format("Adding file {0}/{1} :: {2}", + _numEntriesAdded, _numEntriesToAdd, e.CurrentEntry.FileName)); + break; + case ZipProgressEventType.Adding_Completed: + Console.WriteLine("Added all files"); + break; + } + } + + void CreateTheZip() + { + using (ZipFile zip = new ZipFile()) + { + zip.AddProgress += AddProgressHandler; + zip.AddDirectory(System.IO.Path.GetFileName(DirToZip)); + zip.Save(ZipFileToCreate); + } + } + + + + + + Private Sub AddProgressHandler(ByVal sender As Object, ByVal e As AddProgressEventArgs) + Select Case e.EventType + Case ZipProgressEventType.Adding_Started + Console.WriteLine("Adding files to the zip...") + Exit Select + Case ZipProgressEventType.Adding_AfterAddEntry + Console.WriteLine(String.Format("Adding file {0}", e.CurrentEntry.FileName)) + Exit Select + Case ZipProgressEventType.Adding_Completed + Console.WriteLine("Added all files") + Exit Select + End Select + End Sub + + Sub CreateTheZip() + Using zip as ZipFile = New ZipFile + AddHandler zip.AddProgress, AddressOf AddProgressHandler + zip.AddDirectory(System.IO.Path.GetFileName(DirToZip)) + zip.Save(ZipFileToCreate); + End Using + End Sub + + + + + + + + + + + + An event that is raised when an error occurs during open or read of files + while saving a zip archive. + + + + + Errors can occur as a file is being saved to the zip archive. For + example, the File.Open may fail, or a File.Read may fail, because of + lock conflicts or other reasons. If you add a handler to this event, + you can handle such errors in your own code. If you don't add a + handler, the library will throw an exception if it encounters an I/O + error during a call to Save(). + + + + Setting a handler implicitly sets to + ZipErrorAction.InvokeErrorEvent. + + + + The handler you add applies to all items that are + subsequently added to the ZipFile instance. If you set this + property after you have added items to the ZipFile, but before you + have called Save(), errors that occur while saving those items + will not cause the error handler to be invoked. + + + + If you want to handle any errors that occur with any entry in the zip + file using the same error handler, then add your error handler once, + before adding any entries to the zip archive. + + + + In the error handler method, you need to set the property on the + ZipErrorEventArgs.CurrentEntry. This communicates back to + DotNetZip what you would like to do with this particular error. Within + an error handler, if you set the ZipEntry.ZipErrorAction property + on the ZipEntry to ZipErrorAction.InvokeErrorEvent or if + you don't set it at all, the library will throw the exception. (It is the + same as if you had set the ZipEntry.ZipErrorAction property on the + ZipEntry to ZipErrorAction.Throw.) If you set the + ZipErrorEventArgs.Cancel to true, the entire Save() will be + canceled. + + + + In the case that you use ZipErrorAction.Skip, implying that + you want to skip the entry for which there's been an error, DotNetZip + tries to seek backwards in the output stream, and truncate all bytes + written on behalf of that particular entry. This works only if the + output stream is seekable. It will not work, for example, when using + ASPNET's Response.OutputStream. + + + + + + + This example shows how to use an event handler to handle + errors during save of the zip file. + + + public static void MyZipError(object sender, ZipErrorEventArgs e) + { + Console.WriteLine("Error saving {0}...", e.FileName); + Console.WriteLine(" Exception: {0}", e.exception); + ZipEntry entry = e.CurrentEntry; + string response = null; + // Ask the user whether he wants to skip this error or not + do + { + Console.Write("Retry, Skip, Throw, or Cancel ? (R/S/T/C) "); + response = Console.ReadLine(); + Console.WriteLine(); + + } while (response != null && + response[0]!='S' && response[0]!='s' && + response[0]!='R' && response[0]!='r' && + response[0]!='T' && response[0]!='t' && + response[0]!='C' && response[0]!='c'); + + e.Cancel = (response[0]=='C' || response[0]=='c'); + + if (response[0]=='S' || response[0]=='s') + entry.ZipErrorAction = ZipErrorAction.Skip; + else if (response[0]=='R' || response[0]=='r') + entry.ZipErrorAction = ZipErrorAction.Retry; + else if (response[0]=='T' || response[0]=='t') + entry.ZipErrorAction = ZipErrorAction.Throw; + } + + public void SaveTheFile() + { + string directoryToZip = "fodder"; + string directoryInArchive = "files"; + string zipFileToCreate = "Archive.zip"; + using (var zip = new ZipFile()) + { + // set the event handler before adding any entries + zip.ZipError += MyZipError; + zip.AddDirectory(directoryToZip, directoryInArchive); + zip.Save(zipFileToCreate); + } + } + + + + Private Sub MyZipError(ByVal sender As Object, ByVal e As Ionic.Zip.ZipErrorEventArgs) + ' At this point, the application could prompt the user for an action to take. + ' But in this case, this application will simply automatically skip the file, in case of error. + Console.WriteLine("Zip Error, entry {0}", e.CurrentEntry.FileName) + Console.WriteLine(" Exception: {0}", e.exception) + ' set the desired ZipErrorAction on the CurrentEntry to communicate that to DotNetZip + e.CurrentEntry.ZipErrorAction = Zip.ZipErrorAction.Skip + End Sub + + Public Sub SaveTheFile() + Dim directoryToZip As String = "fodder" + Dim directoryInArchive As String = "files" + Dim zipFileToCreate as String = "Archive.zip" + Using zipArchive As ZipFile = New ZipFile + ' set the event handler before adding any entries + AddHandler zipArchive.ZipError, AddressOf MyZipError + zipArchive.AddDirectory(directoryToZip, directoryInArchive) + zipArchive.Save(zipFileToCreate) + End Using + End Sub + + + + + + + + + Extracts all of the items in the zip archive, to the specified path in the + filesystem. The path can be relative or fully-qualified. + + + + + This method will extract all entries in the ZipFile to the + specified path. + + + + If an extraction of a file from the zip archive would overwrite an + existing file in the filesystem, the action taken is dictated by the + ExtractExistingFile property, which overrides any setting you may have + made on individual ZipEntry instances. By default, if you have not + set that property on the ZipFile instance, the entry will not + be extracted, the existing file will not be overwritten and an + exception will be thrown. To change this, set the property, or use the + overload that allows you to + specify an ExtractExistingFileAction parameter. + + + + The action to take when an extract would overwrite an existing file + applies to all entries. If you want to set this on a per-entry basis, + then you must use one of the ZipEntry.Extract methods. + + + + This method will send verbose output messages to the , if it is set on the ZipFile + instance. + + + + You may wish to take advantage of the ExtractProgress event. + + + + About timestamps: When extracting a file entry from a zip archive, the + extracted file gets the last modified time of the entry as stored in + the archive. The archive may also store extended file timestamp + information, including last accessed and created times. If these are + present in the ZipEntry, then the extracted file will also get + these times. + + + + A Directory entry is somewhat different. It will get the times as + described for a file entry, but, if there are file entries in the zip + archive that, when extracted, appear in the just-created directory, + then when those file entries are extracted, the last modified and last + accessed times of the directory will change, as a side effect. The + result is that after an extraction of a directory and a number of + files within the directory, the last modified and last accessed + timestamps on the directory will reflect the time that the last file + was extracted into the directory, rather than the time stored in the + zip archive for the directory. + + + + To compensate, when extracting an archive with ExtractAll, + DotNetZip will extract all the file and directory entries as described + above, but it will then make a second pass on the directories, and + reset the times on the directories to reflect what is stored in the + zip archive. + + + + This compensation is performed only within the context of an + ExtractAll. If you call ZipEntry.Extract on a directory + entry, the timestamps on directory in the filesystem will reflect the + times stored in the zip. If you then call ZipEntry.Extract on + a file entry, which is extracted into the directory, the timestamps on + the directory will be updated to the current time. + + + + + This example extracts all the entries in a zip archive file, to the + specified target directory. The extraction will overwrite any + existing files silently. + + + String TargetDirectory= "unpack"; + using(ZipFile zip= ZipFile.Read(ZipFileToExtract)) + { + zip.ExtractExistingFile= ExtractExistingFileAction.OverwriteSilently; + zip.ExtractAll(TargetDirectory); + } + + + + Dim TargetDirectory As String = "unpack" + Using zip As ZipFile = ZipFile.Read(ZipFileToExtract) + zip.ExtractExistingFile= ExtractExistingFileAction.OverwriteSilently + zip.ExtractAll(TargetDirectory) + End Using + + + + + + + + The path to which the contents of the zipfile will be extracted. + The path can be relative or fully-qualified. + + + + + + Extracts all of the items in the zip archive, to the specified path in the + filesystem, using the specified behavior when extraction would overwrite an + existing file. + + + + + + This method will extract all entries in the ZipFile to the specified + path. For an extraction that would overwrite an existing file, the behavior + is dictated by , which overrides any + setting you may have made on individual ZipEntry instances. + + + + The action to take when an extract would overwrite an existing file + applies to all entries. If you want to set this on a per-entry basis, + then you must use or one of the similar methods. + + + + Calling this method is equivalent to setting the property and then calling . + + + + This method will send verbose output messages to the + , if it is set on the ZipFile instance. + + + + + This example extracts all the entries in a zip archive file, to the + specified target directory. It does not overwrite any existing files. + + String TargetDirectory= "c:\\unpack"; + using(ZipFile zip= ZipFile.Read(ZipFileToExtract)) + { + zip.ExtractAll(TargetDirectory, ExtractExistingFileAction.DontOverwrite); + } + + + + Dim TargetDirectory As String = "c:\unpack" + Using zip As ZipFile = ZipFile.Read(ZipFileToExtract) + zip.ExtractAll(TargetDirectory, ExtractExistingFileAction.DontOverwrite) + End Using + + + + + The path to which the contents of the zipfile will be extracted. + The path can be relative or fully-qualified. + + + + The action to take if extraction would overwrite an existing file. + + + + + + Reads a zip file archive and returns the instance. + + + + + The stream is read using the default System.Text.Encoding, which is the + IBM437 codepage. + + + + + Thrown if the ZipFile cannot be read. The implementation of this method + relies on System.IO.File.OpenRead, which can throw a variety of exceptions, + including specific exceptions if a file is not found, an unauthorized access + exception, exceptions for poorly formatted filenames, and so on. + + + + The name of the zip archive to open. This can be a fully-qualified or relative + pathname. + + + . + + The instance read from the zip archive. + + + + + Reads a zip file archive from the named filesystem file using the + specified options. + + + + + This version of the Read() method allows the caller to pass + in a TextWriter an Encoding, via an instance of the + ReadOptions class. The ZipFile is read in using the + specified encoding for entries where UTF-8 encoding is not + explicitly specified. + + + + + + + This example shows how to read a zip file using the Big-5 Chinese + code page (950), and extract each entry in the zip file, while + sending status messages out to the Console. + + + + For this code to work as intended, the zipfile must have been + created using the big5 code page (CP950). This is typical, for + example, when using WinRar on a machine with CP950 set as the + default code page. In that case, the names of entries within the + Zip archive will be stored in that code page, and reading the zip + archive must be done using that code page. If the application did + not use the correct code page in ZipFile.Read(), then names of + entries within the zip archive would not be correctly retrieved. + + + + string zipToExtract = "MyArchive.zip"; + string extractDirectory = "extract"; + var options = new ReadOptions + { + StatusMessageWriter = System.Console.Out, + Encoding = System.Text.Encoding.GetEncoding(950) + }; + using (ZipFile zip = ZipFile.Read(zipToExtract, options)) + { + foreach (ZipEntry e in zip) + { + e.Extract(extractDirectory); + } + } + + + + + Dim zipToExtract as String = "MyArchive.zip" + Dim extractDirectory as String = "extract" + Dim options as New ReadOptions + options.Encoding = System.Text.Encoding.GetEncoding(950) + options.StatusMessageWriter = System.Console.Out + Using zip As ZipFile = ZipFile.Read(zipToExtract, options) + Dim e As ZipEntry + For Each e In zip + e.Extract(extractDirectory) + Next + End Using + + + + + + + + This example shows how to read a zip file using the default + code page, to remove entries that have a modified date before a given threshold, + sending status messages out to a StringWriter. + + + + var options = new ReadOptions + { + StatusMessageWriter = new System.IO.StringWriter() + }; + using (ZipFile zip = ZipFile.Read("PackedDocuments.zip", options)) + { + var Threshold = new DateTime(2007,7,4); + // We cannot remove the entry from the list, within the context of + // an enumeration of said list. + // So we add the doomed entry to a list to be removed later. + // pass 1: mark the entries for removal + var MarkedEntries = new System.Collections.Generic.List<ZipEntry>(); + foreach (ZipEntry e in zip) + { + if (e.LastModified < Threshold) + MarkedEntries.Add(e); + } + // pass 2: actually remove the entry. + foreach (ZipEntry zombie in MarkedEntries) + zip.RemoveEntry(zombie); + zip.Comment = "This archive has been updated."; + zip.Save(); + } + // can now use contents of sw, eg store in an audit log + + + + Dim options as New ReadOptions + options.StatusMessageWriter = New System.IO.StringWriter + Using zip As ZipFile = ZipFile.Read("PackedDocuments.zip", options) + Dim Threshold As New DateTime(2007, 7, 4) + ' We cannot remove the entry from the list, within the context of + ' an enumeration of said list. + ' So we add the doomed entry to a list to be removed later. + ' pass 1: mark the entries for removal + Dim MarkedEntries As New System.Collections.Generic.List(Of ZipEntry) + Dim e As ZipEntry + For Each e In zip + If (e.LastModified < Threshold) Then + MarkedEntries.Add(e) + End If + Next + ' pass 2: actually remove the entry. + Dim zombie As ZipEntry + For Each zombie In MarkedEntries + zip.RemoveEntry(zombie) + Next + zip.Comment = "This archive has been updated." + zip.Save + End Using + ' can now use contents of sw, eg store in an audit log + + + + + Thrown if the zipfile cannot be read. The implementation of + this method relies on System.IO.File.OpenRead, which + can throw a variety of exceptions, including specific + exceptions if a file is not found, an unauthorized access + exception, exceptions for poorly formatted filenames, and so + on. + + + + The name of the zip archive to open. + This can be a fully-qualified or relative pathname. + + + + The set of options to use when reading the zip file. + + + The ZipFile instance read from the zip archive. + + + + + + + Reads a zip file archive using the specified text encoding, the specified + TextWriter for status messages, and the specified ReadProgress event handler, + and returns the instance. + + + + The name of the zip archive to open. + This can be a fully-qualified or relative pathname. + + + + An event handler for Read operations. + + + + The System.IO.TextWriter to use for writing verbose status messages + during operations on the zip archive. A console application may wish to + pass System.Console.Out to get messages on the Console. A graphical + or headless application may wish to capture the messages in a different + TextWriter, such as a System.IO.StringWriter. + + + + The System.Text.Encoding to use when reading in the zip archive. Be + careful specifying the encoding. If the value you use here is not the same + as the Encoding used when the zip archive was created (possibly by a + different archiver) you will get unexpected results and possibly exceptions. + + + The instance read from the zip archive. + + + + + Reads a zip archive from a stream. + + + + + + When reading from a file, it's probably easier to just use + ZipFile.Read(String, ReadOptions). This + overload is useful when when the zip archive content is + available from an already-open stream. The stream must be + open and readable and seekable when calling this method. The + stream is left open when the reading is completed. + + + + Using this overload, the stream is read using the default + System.Text.Encoding, which is the IBM437 + codepage. If you want to specify the encoding to use when + reading the zipfile content, see + ZipFile.Read(Stream, ReadOptions). This + + + + Reading of zip content begins at the current position in the + stream. This means if you have a stream that concatenates + regular data and zip data, if you position the open, readable + stream at the start of the zip data, you will be able to read + the zip archive using this constructor, or any of the ZipFile + constructors that accept a as + input. Some examples of where this might be useful: the zip + content is concatenated at the end of a regular EXE file, as + some self-extracting archives do. (Note: SFX files produced + by DotNetZip do not work this way; they can be read as normal + ZIP files). Another example might be a stream being read from + a database, where the zip content is embedded within an + aggregate stream of data. + + + + + + + This example shows how to Read zip content from a stream, and + extract one entry into a different stream. In this example, + the filename "NameOfEntryInArchive.doc", refers only to the + name of the entry within the zip archive. A file by that + name is not created in the filesystem. The I/O is done + strictly with the given streams. + + + + using (ZipFile zip = ZipFile.Read(InputStream)) + { + zip.Extract("NameOfEntryInArchive.doc", OutputStream); + } + + + + Using zip as ZipFile = ZipFile.Read(InputStream) + zip.Extract("NameOfEntryInArchive.doc", OutputStream) + End Using + + + + the stream containing the zip data. + + The ZipFile instance read from the stream + + + + + Reads a zip file archive from the given stream using the + specified options. + + + + + + When reading from a file, it's probably easier to just use + ZipFile.Read(String, ReadOptions). This + overload is useful when when the zip archive content is + available from an already-open stream. The stream must be + open and readable and seekable when calling this method. The + stream is left open when the reading is completed. + + + + Reading of zip content begins at the current position in the + stream. This means if you have a stream that concatenates + regular data and zip data, if you position the open, readable + stream at the start of the zip data, you will be able to read + the zip archive using this constructor, or any of the ZipFile + constructors that accept a as + input. Some examples of where this might be useful: the zip + content is concatenated at the end of a regular EXE file, as + some self-extracting archives do. (Note: SFX files produced + by DotNetZip do not work this way; they can be read as normal + ZIP files). Another example might be a stream being read from + a database, where the zip content is embedded within an + aggregate stream of data. + + + + the stream containing the zip data. + + + The set of options to use when reading the zip file. + + + + Thrown if the zip archive cannot be read. + + + The ZipFile instance read from the stream. + + + + + + + Reads a zip archive from a stream, using the specified text Encoding, the + specified TextWriter for status messages, + and the specified ReadProgress event handler. + + + + + Reading of zip content begins at the current position in the stream. This + means if you have a stream that concatenates regular data and zip data, if + you position the open, readable stream at the start of the zip data, you + will be able to read the zip archive using this constructor, or any of the + ZipFile constructors that accept a as + input. Some examples of where this might be useful: the zip content is + concatenated at the end of a regular EXE file, as some self-extracting + archives do. (Note: SFX files produced by DotNetZip do not work this + way). Another example might be a stream being read from a database, where + the zip content is embedded within an aggregate stream of data. + + + + the stream containing the zip data. + + + The System.IO.TextWriter to which verbose status messages are written + during operations on the ZipFile. For example, in a console + application, System.Console.Out works, and will get a message for each entry + added to the ZipFile. If the TextWriter is null, no verbose messages + are written. + + + + The text encoding to use when reading entries that do not have the UTF-8 + encoding bit set. Be careful specifying the encoding. If the value you use + here is not the same as the Encoding used when the zip archive was created + (possibly by a different archiver) you will get unexpected results and + possibly exceptions. See the + property for more information. + + + + An event handler for Read operations. + + + an instance of ZipFile + + + + Checks the given file to see if it appears to be a valid zip file. + + + + + Calling this method is equivalent to calling with the testExtract parameter set to false. + + + + The file to check. + true if the file appears to be a zip file. + + + + Checks a file to see if it is a valid zip file. + + + + + This method opens the specified zip file, reads in the zip archive, + verifying the ZIP metadata as it reads. + + + + If everything succeeds, then the method returns true. If anything fails - + for example if an incorrect signature or CRC is found, indicating a + corrupt file, the the method returns false. This method also returns + false for a file that does not exist. + + + + If is true, as part of its check, this + method reads in the content for each entry, expands it, and checks CRCs. + This provides an additional check beyond verifying the zip header and + directory data. + + + + If is true, and if any of the zip entries + are protected with a password, this method will return false. If you want + to verify a ZipFile that has entries which are protected with a + password, you will need to do that manually. + + + + + The zip file to check. + true if the caller wants to extract each entry. + true if the file contains a valid zip file. + + + + Checks a stream to see if it contains a valid zip archive. + + + + + This method reads the zip archive contained in the specified stream, verifying + the ZIP metadata as it reads. If testExtract is true, this method also extracts + each entry in the archive, dumping all the bits into . + + + + If everything succeeds, then the method returns true. If anything fails - + for example if an incorrect signature or CRC is found, indicating a corrupt + file, the the method returns false. This method also returns false for a + file that does not exist. + + + + If testExtract is true, this method reads in the content for each + entry, expands it, and checks CRCs. This provides an additional check + beyond verifying the zip header data. + + + + If testExtract is true, and if any of the zip entries are protected + with a password, this method will return false. If you want to verify a + ZipFile that has entries which are protected with a password, you will need + to do that manually. + + + + + + The stream to check. + true if the caller wants to extract each entry. + true if the stream contains a valid zip archive. + + + + Delete file with retry on UnauthorizedAccessException. + + + + + When calling File.Delete() on a file that has been "recently" + created, the call sometimes fails with + UnauthorizedAccessException. This method simply retries the Delete 3 + times with a sleep between tries. + + + + the name of the file to be deleted + + + + Saves the Zip archive to a file, specified by the Name property of the + ZipFile. + + + + + The ZipFile instance is written to storage, typically a zip file + in a filesystem, only when the caller calls Save. In the typical + case, the Save operation writes the zip content to a temporary file, and + then renames the temporary file to the desired name. If necessary, this + method will delete a pre-existing file before the rename. + + + + The property is specified either explicitly, + or implicitly using one of the parameterized ZipFile constructors. For + COM Automation clients, the Name property must be set explicitly, + because COM Automation clients cannot call parameterized constructors. + + + + When using a filesystem file for the Zip output, it is possible to call + Save multiple times on the ZipFile instance. With each + call the zip content is re-written to the same output file. + + + + Data for entries that have been added to the ZipFile instance is + written to the output when the Save method is called. This means + that the input streams for those entries must be available at the time + the application calls Save. If, for example, the application + adds entries with AddEntry using a dynamically-allocated + MemoryStream, the memory stream must not have been disposed + before the call to Save. See the property for more discussion of the + availability requirements of the input stream for an entry, and an + approach for providing just-in-time stream lifecycle management. + + + + + + + + Thrown if you haven't specified a location or stream for saving the zip, + either in the constructor or by setting the Name property, or if you try + to save a regular zip archive to a filename with a .exe extension. + + + + Thrown if or is non-zero, and the number + of segments that would be generated for the spanned zip file during the + save operation exceeds 99. If this happens, you need to increase the + segment size. + + + + + + Save the file to a new zipfile, with the given name. + + + + + This method allows the application to explicitly specify the name of the zip + file when saving. Use this when creating a new zip file, or when + updating a zip archive. + + + + An application can also save a zip archive in several places by calling this + method multiple times in succession, with different filenames. + + + + The ZipFile instance is written to storage, typically a zip file in a + filesystem, only when the caller calls Save. The Save operation writes + the zip content to a temporary file, and then renames the temporary file + to the desired name. If necessary, this method will delete a pre-existing file + before the rename. + + + + + + Thrown if you specify a directory for the filename. + + + + The name of the zip archive to save to. Existing files will + be overwritten with great prejudice. + + + + This example shows how to create and Save a zip file. + + using (ZipFile zip = new ZipFile()) + { + zip.AddDirectory(@"c:\reports\January"); + zip.Save("January.zip"); + } + + + + Using zip As New ZipFile() + zip.AddDirectory("c:\reports\January") + zip.Save("January.zip") + End Using + + + + + + This example shows how to update a zip file. + + using (ZipFile zip = ZipFile.Read("ExistingArchive.zip")) + { + zip.AddFile("NewData.csv"); + zip.Save("UpdatedArchive.zip"); + } + + + + Using zip As ZipFile = ZipFile.Read("ExistingArchive.zip") + zip.AddFile("NewData.csv") + zip.Save("UpdatedArchive.zip") + End Using + + + + + + + Save the zip archive to the specified stream. + + + + + The ZipFile instance is written to storage - typically a zip file + in a filesystem, but using this overload, the storage can be anything + accessible via a writable stream - only when the caller calls Save. + + + + Use this method to save the zip content to a stream directly. A common + scenario is an ASP.NET application that dynamically generates a zip file + and allows the browser to download it. The application can call + Save(Response.OutputStream) to write a zipfile directly to the + output stream, without creating a zip file on the disk on the ASP.NET + server. + + + + Be careful when saving a file to a non-seekable stream, including + Response.OutputStream. When DotNetZip writes to a non-seekable + stream, the zip archive is formatted in such a way that may not be + compatible with all zip tools on all platforms. It's a perfectly legal + and compliant zip file, but some people have reported problems opening + files produced this way using the Mac OS archive utility. + + + + + + + This example saves the zipfile content into a MemoryStream, and + then gets the array of bytes from that MemoryStream. + + + using (var zip = new Ionic.Zip.ZipFile()) + { + zip.CompressionLevel= Ionic.Zlib.CompressionLevel.BestCompression; + zip.Password = "VerySecret."; + zip.Encryption = EncryptionAlgorithm.WinZipAes128; + zip.AddFile(sourceFileName); + MemoryStream output = new MemoryStream(); + zip.Save(output); + + byte[] zipbytes = output.ToArray(); + } + + + + + + This example shows a pitfall you should avoid. DO NOT read + from a stream, then try to save to the same stream. DO + NOT DO THIS: + + + + using (var fs = new FileStream(filename, FileMode.Open)) + { + using (var zip = Ionic.Zip.ZipFile.Read(inputStream)) + { + zip.AddEntry("Name1.txt", "this is the content"); + zip.Save(inputStream); // NO NO NO!! + } + } + + + + Better like this: + + + + using (var zip = Ionic.Zip.ZipFile.Read(filename)) + { + zip.AddEntry("Name1.txt", "this is the content"); + zip.Save(); // YES! + } + + + + + + The System.IO.Stream to write to. It must be + writable. If you created the ZipFile instance by calling + ZipFile.Read(), this stream must not be the same stream + you passed to ZipFile.Read(). + + + + + Adds to the ZipFile a set of files from the current working directory on + disk, that conform to the specified criteria. + + + + + This method selects files from the the current working directory matching + the specified criteria, and adds them to the ZipFile. + + + + Specify the criteria in statements of 3 elements: a noun, an operator, and + a value. Consider the string "name != *.doc" . The noun is "name". The + operator is "!=", implying "Not Equal". The value is "*.doc". That + criterion, in English, says "all files with a name that does not end in + the .doc extension." + + + + Supported nouns include "name" (or "filename") for the filename; "atime", + "mtime", and "ctime" for last access time, last modfied time, and created + time of the file, respectively; "attributes" (or "attrs") for the file + attributes; "size" (or "length") for the file length (uncompressed), and + "type" for the type of object, either a file or a directory. The + "attributes", "name" and "type" nouns both support = and != as operators. + The "size", "atime", "mtime", and "ctime" nouns support = and !=, and + >, >=, <, <= as well. The times are taken to be expressed in + local time. + + + + Specify values for the file attributes as a string with one or more of the + characters H,R,S,A,I,L in any order, implying file attributes of Hidden, + ReadOnly, System, Archive, NotContextIndexed, and ReparsePoint (symbolic + link) respectively. + + + + To specify a time, use YYYY-MM-DD-HH:mm:ss or YYYY/MM/DD-HH:mm:ss as the + format. If you omit the HH:mm:ss portion, it is assumed to be 00:00:00 + (midnight). + + + + The value for a size criterion is expressed in integer quantities of bytes, + kilobytes (use k or kb after the number), megabytes (m or mb), or gigabytes + (g or gb). + + + + The value for a name is a pattern to match against the filename, potentially + including wildcards. The pattern follows CMD.exe glob rules: * implies one + or more of any character, while ? implies one character. If the name + pattern contains any slashes, it is matched to the entire filename, + including the path; otherwise, it is matched against only the filename + without the path. This means a pattern of "*\*.*" matches all files one + directory level deep, while a pattern of "*.*" matches all files in all + directories. + + + + To specify a name pattern that includes spaces, use single quotes around the + pattern. A pattern of "'* *.*'" will match all files that have spaces in + the filename. The full criteria string for that would be "name = '* *.*'" . + + + + The value for a type criterion is either F (implying a file) or D (implying + a directory). + + + + Some examples: + + + + + criteria + Files retrieved + + + + name != *.xls + any file with an extension that is not .xls + + + + + name = *.mp3 + any file with a .mp3 extension. + + + + + *.mp3 + (same as above) any file with a .mp3 extension. + + + + + attributes = A + all files whose attributes include the Archive bit. + + + + + attributes != H + all files whose attributes do not include the Hidden bit. + + + + + mtime > 2009-01-01 + all files with a last modified time after January 1st, 2009. + + + + + size > 2gb + all files whose uncompressed size is greater than 2gb. + + + + + type = D + all directories in the filesystem. + + + + + + You can combine criteria with the conjunctions AND or OR. Using a string + like "name = *.txt AND size >= 100k" for the selectionCriteria retrieves + entries whose names end in .txt, and whose uncompressed size is greater than + or equal to 100 kilobytes. + + + + For more complex combinations of criteria, you can use parenthesis to group + clauses in the boolean logic. Without parenthesis, the precedence of the + criterion atoms is determined by order of appearance. Unlike the C# + language, the AND conjunction does not take precendence over the logical OR. + This is important only in strings that contain 3 or more criterion atoms. + In other words, "name = *.txt and size > 1000 or attributes = H" implies + "((name = *.txt AND size > 1000) OR attributes = H)" while "attributes = + H OR name = *.txt and size > 1000" evaluates to "((attributes = H OR name + = *.txt) AND size > 1000)". When in doubt, use parenthesis. + + + + Using time properties requires some extra care. If you want to retrieve all + entries that were last updated on 2009 February 14, specify a time range + like so:"mtime >= 2009-02-14 AND mtime < 2009-02-15". Read this to + say: all files updated after 12:00am on February 14th, until 12:00am on + February 15th. You can use the same bracketing approach to specify any time + period - a year, a month, a week, and so on. + + + + The syntax allows one special case: if you provide a string with no spaces, it is + treated as a pattern to match for the filename. Therefore a string like "*.xls" + will be equivalent to specifying "name = *.xls". + + + + There is no logic in this method that insures that the file inclusion + criteria are internally consistent. For example, it's possible to specify + criteria that says the file must have a size of less than 100 bytes, as well + as a size that is greater than 1000 bytes. Obviously no file will ever + satisfy such criteria, but this method does not detect such logical + inconsistencies. The caller is responsible for insuring the criteria are + sensible. + + + + Using this method, the file selection does not recurse into + subdirectories, and the full path of the selected files is included in the + entries added into the zip archive. If you don't like these behaviors, + see the other overloads of this method. + + + + + This example zips up all *.csv files in the current working directory. + + using (ZipFile zip = new ZipFile()) + { + // To just match on filename wildcards, + // use the shorthand form of the selectionCriteria string. + zip.AddSelectedFiles("*.csv"); + zip.Save(PathToZipArchive); + } + + + Using zip As ZipFile = New ZipFile() + zip.AddSelectedFiles("*.csv") + zip.Save(PathToZipArchive) + End Using + + + + The criteria for file selection + + + + Adds to the ZipFile a set of files from the disk that conform to the + specified criteria, optionally recursing into subdirectories. + + + + + This method selects files from the the current working directory matching + the specified criteria, and adds them to the ZipFile. If + recurseDirectories is true, files are also selected from + subdirectories, and the directory structure in the filesystem is + reproduced in the zip archive, rooted at the current working directory. + + + + Using this method, the full path of the selected files is included in the + entries added into the zip archive. If you don't want this behavior, use + one of the overloads of this method that allows the specification of a + directoryInArchive. + + + + For details on the syntax for the selectionCriteria parameter, see . + + + + + + + This example zips up all *.xml files in the current working directory, or any + subdirectory, that are larger than 1mb. + + + using (ZipFile zip = new ZipFile()) + { + // Use a compound expression in the selectionCriteria string. + zip.AddSelectedFiles("name = *.xml and size > 1024kb", true); + zip.Save(PathToZipArchive); + } + + + Using zip As ZipFile = New ZipFile() + ' Use a compound expression in the selectionCriteria string. + zip.AddSelectedFiles("name = *.xml and size > 1024kb", true) + zip.Save(PathToZipArchive) + End Using + + + + The criteria for file selection + + + If true, the file selection will recurse into subdirectories. + + + + + Adds to the ZipFile a set of files from a specified directory in the + filesystem, that conform to the specified criteria. + + + + + This method selects files that conform to the specified criteria, from the + the specified directory on disk, and adds them to the ZipFile. The search + does not recurse into subdirectores. + + + + Using this method, the full filesystem path of the files on disk is + reproduced on the entries added to the zip file. If you don't want this + behavior, use one of the other overloads of this method. + + + + For details on the syntax for the selectionCriteria parameter, see . + + + + + + + This example zips up all *.xml files larger than 1mb in the directory + given by "d:\rawdata". + + + using (ZipFile zip = new ZipFile()) + { + // Use a compound expression in the selectionCriteria string. + zip.AddSelectedFiles("name = *.xml and size > 1024kb", "d:\\rawdata"); + zip.Save(PathToZipArchive); + } + + + + Using zip As ZipFile = New ZipFile() + ' Use a compound expression in the selectionCriteria string. + zip.AddSelectedFiles("name = *.xml and size > 1024kb", "d:\rawdata) + zip.Save(PathToZipArchive) + End Using + + + + The criteria for file selection + + + The name of the directory on the disk from which to select files. + + + + + Adds to the ZipFile a set of files from the specified directory on disk, + that conform to the specified criteria. + + + + + + This method selects files from the the specified disk directory matching + the specified selection criteria, and adds them to the ZipFile. If + recurseDirectories is true, files are also selected from + subdirectories. + + + + The full directory structure in the filesystem is reproduced on the + entries added to the zip archive. If you don't want this behavior, use + one of the overloads of this method that allows the specification of a + directoryInArchive. + + + + For details on the syntax for the selectionCriteria parameter, see . + + + + + + This example zips up all *.csv files in the "files" directory, or any + subdirectory, that have been saved since 2009 February 14th. + + + using (ZipFile zip = new ZipFile()) + { + // Use a compound expression in the selectionCriteria string. + zip.AddSelectedFiles("name = *.csv and mtime > 2009-02-14", "files", true); + zip.Save(PathToZipArchive); + } + + + Using zip As ZipFile = New ZipFile() + ' Use a compound expression in the selectionCriteria string. + zip.AddSelectedFiles("name = *.csv and mtime > 2009-02-14", "files", true) + zip.Save(PathToZipArchive) + End Using + + + + + This example zips up all files in the current working + directory, and all its child directories, except those in + the excludethis subdirectory. + + Using Zip As ZipFile = New ZipFile(zipfile) + Zip.AddSelectedFfiles("name != 'excludethis\*.*'", datapath, True) + Zip.Save() + End Using + + + + The criteria for file selection + + + The filesystem path from which to select files. + + + + If true, the file selection will recurse into subdirectories. + + + + + Adds to the ZipFile a selection of files from the specified directory on + disk, that conform to the specified criteria, and using a specified root + path for entries added to the zip archive. + + + + + This method selects files from the specified disk directory matching the + specified selection criteria, and adds those files to the ZipFile, using + the specified directory path in the archive. The search does not recurse + into subdirectories. For details on the syntax for the selectionCriteria + parameter, see . + + + + + + + This example zips up all *.psd files in the "photos" directory that have + been saved since 2009 February 14th, and puts them all in a zip file, + using the directory name of "content" in the zip archive itself. When the + zip archive is unzipped, the folder containing the .psd files will be + named "content". + + + using (ZipFile zip = new ZipFile()) + { + // Use a compound expression in the selectionCriteria string. + zip.AddSelectedFiles("name = *.psd and mtime > 2009-02-14", "photos", "content"); + zip.Save(PathToZipArchive); + } + + + Using zip As ZipFile = New ZipFile + zip.AddSelectedFiles("name = *.psd and mtime > 2009-02-14", "photos", "content") + zip.Save(PathToZipArchive) + End Using + + + + + The criteria for selection of files to add to the ZipFile. + + + + The path to the directory in the filesystem from which to select files. + + + + Specifies a directory path to use to in place of the + directoryOnDisk. This path may, or may not, correspond to a real + directory in the current filesystem. If the files within the zip are + later extracted, this is the path used for the extracted file. Passing + null (nothing in VB) will use the path on the file name, if any; in other + words it would use directoryOnDisk, plus any subdirectory. Passing + the empty string ("") will insert the item at the root path within the + archive. + + + + + Adds to the ZipFile a selection of files from the specified directory on + disk, that conform to the specified criteria, optionally recursing through + subdirectories, and using a specified root path for entries added to the + zip archive. + + + + This method selects files from the specified disk directory that match the + specified selection criteria, and adds those files to the ZipFile, using + the specified directory path in the archive. If recurseDirectories + is true, files are also selected from subdirectories, and the directory + structure in the filesystem is reproduced in the zip archive, rooted at + the directory specified by directoryOnDisk. For details on the + syntax for the selectionCriteria parameter, see . + + + + + This example zips up all files that are NOT *.pst files, in the current + working directory and any subdirectories. + + + using (ZipFile zip = new ZipFile()) + { + zip.AddSelectedFiles("name != *.pst", SourceDirectory, "backup", true); + zip.Save(PathToZipArchive); + } + + + Using zip As ZipFile = New ZipFile + zip.AddSelectedFiles("name != *.pst", SourceDirectory, "backup", true) + zip.Save(PathToZipArchive) + End Using + + + + + The criteria for selection of files to add to the ZipFile. + + + + The path to the directory in the filesystem from which to select files. + + + + Specifies a directory path to use to in place of the + directoryOnDisk. This path may, or may not, correspond to a real + directory in the current filesystem. If the files within the zip are + later extracted, this is the path used for the extracted file. Passing + null (nothing in VB) will use the path on the file name, if any; in other + words it would use directoryOnDisk, plus any subdirectory. Passing + the empty string ("") will insert the item at the root path within the + archive. + + + + If true, the method also scans subdirectories for files matching the + criteria. + + + + + Updates the ZipFile with a selection of files from the disk that conform + to the specified criteria. + + + + This method selects files from the specified disk directory that match the + specified selection criteria, and Updates the ZipFile with those + files, using the specified directory path in the archive. If + recurseDirectories is true, files are also selected from + subdirectories, and the directory structure in the filesystem is + reproduced in the zip archive, rooted at the directory specified by + directoryOnDisk. For details on the syntax for the + selectionCriteria parameter, see . + + + + The criteria for selection of files to add to the ZipFile. + + + + The path to the directory in the filesystem from which to select files. + + + + Specifies a directory path to use to in place of the + directoryOnDisk. This path may, or may not, correspond to a + real directory in the current filesystem. If the files within the zip + are later extracted, this is the path used for the extracted file. + Passing null (nothing in VB) will use the path on the file name, if + any; in other words it would use directoryOnDisk, plus any + subdirectory. Passing the empty string ("") will insert the item at + the root path within the archive. + + + + If true, the method also scans subdirectories for files matching the criteria. + + + + + + + Retrieve entries from the zipfile by specified criteria. + + + + + This method allows callers to retrieve the collection of entries from the zipfile + that fit the specified criteria. The criteria are described in a string format, and + can include patterns for the filename; constraints on the size of the entry; + constraints on the last modified, created, or last accessed time for the file + described by the entry; or the attributes of the entry. + + + + For details on the syntax for the selectionCriteria parameter, see . + + + + This method is intended for use with a ZipFile that has been read from storage. + When creating a new ZipFile, this method will work only after the ZipArchive has + been Saved to the disk (the ZipFile class subsequently and implicitly reads the Zip + archive from storage.) Calling SelectEntries on a ZipFile that has not yet been + saved will deliver undefined results. + + + + + Thrown if selectionCriteria has an invalid syntax. + + + + This example selects all the PhotoShop files from within an archive, and extracts them + to the current working directory. + + using (ZipFile zip1 = ZipFile.Read(ZipFileName)) + { + var PhotoShopFiles = zip1.SelectEntries("*.psd"); + foreach (ZipEntry psd in PhotoShopFiles) + { + psd.Extract(); + } + } + + + Using zip1 As ZipFile = ZipFile.Read(ZipFileName) + Dim PhotoShopFiles as ICollection(Of ZipEntry) + PhotoShopFiles = zip1.SelectEntries("*.psd") + Dim psd As ZipEntry + For Each psd In PhotoShopFiles + psd.Extract + Next + End Using + + + the string that specifies which entries to select + a collection of ZipEntry objects that conform to the inclusion spec + + + + Retrieve entries from the zipfile by specified criteria. + + + + + This method allows callers to retrieve the collection of entries from the zipfile + that fit the specified criteria. The criteria are described in a string format, and + can include patterns for the filename; constraints on the size of the entry; + constraints on the last modified, created, or last accessed time for the file + described by the entry; or the attributes of the entry. + + + + For details on the syntax for the selectionCriteria parameter, see . + + + + This method is intended for use with a ZipFile that has been read from storage. + When creating a new ZipFile, this method will work only after the ZipArchive has + been Saved to the disk (the ZipFile class subsequently and implicitly reads the Zip + archive from storage.) Calling SelectEntries on a ZipFile that has not yet been + saved will deliver undefined results. + + + + + Thrown if selectionCriteria has an invalid syntax. + + + + + using (ZipFile zip1 = ZipFile.Read(ZipFileName)) + { + var UpdatedPhotoShopFiles = zip1.SelectEntries("*.psd", "UpdatedFiles"); + foreach (ZipEntry e in UpdatedPhotoShopFiles) + { + // prompt for extract here + if (WantExtract(e.FileName)) + e.Extract(); + } + } + + + Using zip1 As ZipFile = ZipFile.Read(ZipFileName) + Dim UpdatedPhotoShopFiles As ICollection(Of ZipEntry) = zip1.SelectEntries("*.psd", "UpdatedFiles") + Dim e As ZipEntry + For Each e In UpdatedPhotoShopFiles + ' prompt for extract here + If Me.WantExtract(e.FileName) Then + e.Extract + End If + Next + End Using + + + the string that specifies which entries to select + + + the directory in the archive from which to select entries. If null, then + all directories in the archive are used. + + + a collection of ZipEntry objects that conform to the inclusion spec + + + + Remove entries from the zipfile by specified criteria. + + + + + This method allows callers to remove the collection of entries from the zipfile + that fit the specified criteria. The criteria are described in a string format, and + can include patterns for the filename; constraints on the size of the entry; + constraints on the last modified, created, or last accessed time for the file + described by the entry; or the attributes of the entry. + + + + For details on the syntax for the selectionCriteria parameter, see . + + + + This method is intended for use with a ZipFile that has been read from storage. + When creating a new ZipFile, this method will work only after the ZipArchive has + been Saved to the disk (the ZipFile class subsequently and implicitly reads the Zip + archive from storage.) Calling SelectEntries on a ZipFile that has not yet been + saved will deliver undefined results. + + + + + Thrown if selectionCriteria has an invalid syntax. + + + + This example removes all entries in a zip file that were modified prior to January 1st, 2008. + + using (ZipFile zip1 = ZipFile.Read(ZipFileName)) + { + // remove all entries from prior to Jan 1, 2008 + zip1.RemoveEntries("mtime < 2008-01-01"); + // don't forget to save the archive! + zip1.Save(); + } + + + Using zip As ZipFile = ZipFile.Read(ZipFileName) + ' remove all entries from prior to Jan 1, 2008 + zip1.RemoveEntries("mtime < 2008-01-01") + ' do not forget to save the archive! + zip1.Save + End Using + + + the string that specifies which entries to select + the number of entries removed + + + + Remove entries from the zipfile by specified criteria, and within the specified + path in the archive. + + + + + This method allows callers to remove the collection of entries from the zipfile + that fit the specified criteria. The criteria are described in a string format, and + can include patterns for the filename; constraints on the size of the entry; + constraints on the last modified, created, or last accessed time for the file + described by the entry; or the attributes of the entry. + + + + For details on the syntax for the selectionCriteria parameter, see . + + + + This method is intended for use with a ZipFile that has been read from storage. + When creating a new ZipFile, this method will work only after the ZipArchive has + been Saved to the disk (the ZipFile class subsequently and implicitly reads the Zip + archive from storage.) Calling SelectEntries on a ZipFile that has not yet been + saved will deliver undefined results. + + + + + Thrown if selectionCriteria has an invalid syntax. + + + + + using (ZipFile zip1 = ZipFile.Read(ZipFileName)) + { + // remove all entries from prior to Jan 1, 2008 + zip1.RemoveEntries("mtime < 2008-01-01", "documents"); + // a call to ZipFile.Save will make the modifications permanent + zip1.Save(); + } + + + Using zip As ZipFile = ZipFile.Read(ZipFileName) + ' remove all entries from prior to Jan 1, 2008 + zip1.RemoveEntries("mtime < 2008-01-01", "documents") + ' a call to ZipFile.Save will make the modifications permanent + zip1.Save + End Using + + + + the string that specifies which entries to select + + the directory in the archive from which to select entries. If null, then + all directories in the archive are used. + + the number of entries removed + + + + Selects and Extracts a set of Entries from the ZipFile. + + + + + The entries are extracted into the current working directory. + + + + If any of the files to be extracted already exist, then the action taken is as + specified in the property on the + corresponding ZipEntry instance. By default, the action taken in this case is to + throw an exception. + + + + For information on the syntax of the selectionCriteria string, + see . + + + + + This example shows how extract all XML files modified after 15 January 2009. + + using (ZipFile zip = ZipFile.Read(zipArchiveName)) + { + zip.ExtractSelectedEntries("name = *.xml and mtime > 2009-01-15"); + } + + + the selection criteria for entries to extract. + + + + + + Selects and Extracts a set of Entries from the ZipFile. + + + + + The entries are extracted into the current working directory. When extraction would would + overwrite an existing filesystem file, the action taken is as specified in the + parameter. + + + + For information on the syntax of the string describing the entry selection criteria, + see . + + + + + This example shows how extract all XML files modified after 15 January 2009, + overwriting any existing files. + + using (ZipFile zip = ZipFile.Read(zipArchiveName)) + { + zip.ExtractSelectedEntries("name = *.xml and mtime > 2009-01-15", + ExtractExistingFileAction.OverwriteSilently); + } + + + + the selection criteria for entries to extract. + + + The action to take if extraction would overwrite an existing file. + + + + + Selects and Extracts a set of Entries from the ZipFile. + + + + + The entries are selected from the specified directory within the archive, and then + extracted into the current working directory. + + + + If any of the files to be extracted already exist, then the action taken is as + specified in the property on the + corresponding ZipEntry instance. By default, the action taken in this case is to + throw an exception. + + + + For information on the syntax of the string describing the entry selection criteria, + see . + + + + + This example shows how extract all XML files modified after 15 January 2009, + and writes them to the "unpack" directory. + + using (ZipFile zip = ZipFile.Read(zipArchiveName)) + { + zip.ExtractSelectedEntries("name = *.xml and mtime > 2009-01-15","unpack"); + } + + + + the selection criteria for entries to extract. + + + the directory in the archive from which to select entries. If null, then + all directories in the archive are used. + + + + + + + Selects and Extracts a set of Entries from the ZipFile. + + + + + The entries are extracted into the specified directory. If any of the files to be + extracted already exist, an exception will be thrown. + + + For information on the syntax of the string describing the entry selection criteria, + see . + + + + the selection criteria for entries to extract. + + + the directory in the archive from which to select entries. If null, then + all directories in the archive are used. + + + + the directory on the disk into which to extract. It will be created + if it does not exist. + + + + + Selects and Extracts a set of Entries from the ZipFile. + + + + + The entries are extracted into the specified directory. When extraction would would + overwrite an existing filesystem file, the action taken is as specified in the + parameter. + + + + For information on the syntax of the string describing the entry selection criteria, + see . + + + + + This example shows how extract all files with an XML extension or with a size larger than 100,000 bytes, + and puts them in the unpack directory. For any files that already exist in + that destination directory, they will not be overwritten. + + using (ZipFile zip = ZipFile.Read(zipArchiveName)) + { + zip.ExtractSelectedEntries("name = *.xml or size > 100000", + null, + "unpack", + ExtractExistingFileAction.DontOverwrite); + } + + + + the selection criteria for entries to extract. + + + The directory on the disk into which to extract. It will be created if it does not exist. + + + + The directory in the archive from which to select entries. If null, then + all directories in the archive are used. + + + + The action to take if extraction would overwrite an existing file. + + + + + + + + Static constructor for ZipFile + + + Code Pages 437 and 1252 for English are same + Code Page 1252 Windows Latin 1 (ANSI) - + Code Page 437 MS-DOS Latin US - + + + + + The default text encoding used in zip archives. It is numeric 437, also + known as IBM437. + + + + + + Generic IEnumerator support, for use of a ZipFile in an enumeration. + + + + You probably do not want to call GetEnumerator explicitly. Instead + it is implicitly called when you use a loop in C#, or a + For Each loop in VB.NET. + + + + This example reads a zipfile of a given name, then enumerates the + entries in that zip file, and displays the information about each + entry on the Console. + + using (ZipFile zip = ZipFile.Read(zipfile)) + { + bool header = true; + foreach (ZipEntry e in zip) + { + if (header) + { + System.Console.WriteLine("Zipfile: {0}", zip.Name); + System.Console.WriteLine("Version Needed: 0x{0:X2}", e.VersionNeeded); + System.Console.WriteLine("BitField: 0x{0:X2}", e.BitField); + System.Console.WriteLine("Compression Method: 0x{0:X2}", e.CompressionMethod); + System.Console.WriteLine("\n{1,-22} {2,-6} {3,4} {4,-8} {0}", + "Filename", "Modified", "Size", "Ratio", "Packed"); + System.Console.WriteLine(new System.String('-', 72)); + header = false; + } + + System.Console.WriteLine("{1,-22} {2,-6} {3,4:F0}% {4,-8} {0}", + e.FileName, + e.LastModified.ToString("yyyy-MM-dd HH:mm:ss"), + e.UncompressedSize, + e.CompressionRatio, + e.CompressedSize); + + e.Extract(); + } + } + + + + Dim ZipFileToExtract As String = "c:\foo.zip" + Using zip As ZipFile = ZipFile.Read(ZipFileToExtract) + Dim header As Boolean = True + Dim e As ZipEntry + For Each e In zip + If header Then + Console.WriteLine("Zipfile: {0}", zip.Name) + Console.WriteLine("Version Needed: 0x{0:X2}", e.VersionNeeded) + Console.WriteLine("BitField: 0x{0:X2}", e.BitField) + Console.WriteLine("Compression Method: 0x{0:X2}", e.CompressionMethod) + Console.WriteLine(ChrW(10) & "{1,-22} {2,-6} {3,4} {4,-8} {0}", _ + "Filename", "Modified", "Size", "Ratio", "Packed" ) + Console.WriteLine(New String("-"c, 72)) + header = False + End If + Console.WriteLine("{1,-22} {2,-6} {3,4:F0}% {4,-8} {0}", _ + e.FileName, _ + e.LastModified.ToString("yyyy-MM-dd HH:mm:ss"), _ + e.UncompressedSize, _ + e.CompressionRatio, _ + e.CompressedSize ) + e.Extract + Next + End Using + + + + A generic enumerator suitable for use within a foreach loop. + + + + An IEnumerator, for use of a ZipFile in a foreach construct. + + + + This method is included for COM support. An application generally does not call + this method directly. It is called implicitly by COM clients when enumerating + the entries in the ZipFile instance. In VBScript, this is done with a For Each + statement. In Javascript, this is done with new Enumerator(zipfile). + + + + The IEnumerator over the entries in the ZipFile. + + + + + This class exposes a set of COM-accessible wrappers for static + methods available on the ZipFile class. You don't need this + class unless you are using DotNetZip from a COM environment. + + + + + A wrapper for ZipFile.IsZipFile(string) + + The filename to of the zip file to check. + true if the file contains a valid zip file. + + + + A wrapper for ZipFile.IsZipFile(string, bool) + + + We cannot use "overloaded" Method names in COM interop. + So, here, we use a unique name. + + The filename to of the zip file to check. + true if the file contains a valid zip file. + + + + A wrapper for ZipFile.CheckZip(string) + + The filename to of the zip file to check. + + true if the named zip file checks OK. Otherwise, false. + + + + A COM-friendly wrapper for the static method . + + + The filename to of the zip file to check. + + The password to check. + + true if the named zip file checks OK. Otherwise, false. + + + + A wrapper for ZipFile.FixZipDirectory(string) + + The filename to of the zip file to fix. + + + + A wrapper for ZipFile.LibraryVersion + + + the version number on the DotNetZip assembly, formatted as a string. + + + + + An enum that provides the various encryption algorithms supported by this + library. + + + + + + PkzipWeak implies the use of Zip 2.0 encryption, which is known to be + weak and subvertible. + + + + A note on interoperability: Values of PkzipWeak and None are + specified in PKWARE's zip + specification, and are considered to be "standard". Zip archives + produced using these options will be interoperable with many other zip tools + and libraries, including Windows Explorer. + + + + Values of WinZipAes128 and WinZipAes256 are not part of the Zip + specification, but rather imply the use of a vendor-specific extension from + WinZip. If you want to produce interoperable Zip archives, do not use these + values. For example, if you produce a zip archive using WinZipAes256, you + will be able to open it in Windows Explorer on Windows XP and Vista, but you + will not be able to extract entries; trying this will lead to an "unspecified + error". For this reason, some people have said that a zip archive that uses + WinZip's AES encryption is not actually a zip archive at all. A zip archive + produced this way will be readable with the WinZip tool (Version 11 and + beyond). + + + + There are other third-party tools and libraries, both commercial and + otherwise, that support WinZip's AES encryption. These will be able to read + AES-encrypted zip archives produced by DotNetZip, and conversely applications + that use DotNetZip to read zip archives will be able to read AES-encrypted + archives produced by those tools or libraries. Consult the documentation for + those other tools and libraries to find out if WinZip's AES encryption is + supported. + + + + In case you care: According to the WinZip specification, the + actual AES key used is derived from the via an + algorithm that complies with RFC 2898, using an iteration + count of 1000. The algorithm is sometimes referred to as PBKDF2, which stands + for "Password Based Key Derivation Function #2". + + + + A word about password strength and length: The AES encryption technology is + very good, but any system is only as secure as the weakest link. If you want + to secure your data, be sure to use a password that is hard to guess. To make + it harder to guess (increase its "entropy"), you should make it longer. If + you use normal characters from an ASCII keyboard, a password of length 20 will + be strong enough that it will be impossible to guess. For more information on + that, I'd encourage you to read this + article. + + + + + + + No encryption at all. + + + + + Traditional or Classic pkzip encryption. + + + + + WinZip AES encryption (128 key bits). + + + + + WinZip AES encryption (256 key bits). + + + + + An encryption algorithm that is not supported by DotNetZip. + + + + + Delegate in which the application writes the ZipEntry content for the named entry. + + + The name of the entry that must be written. + The stream to which the entry data should be written. + + + When you add an entry and specify a WriteDelegate, via , the application + code provides the logic that writes the entry data directly into the zip file. + + + + + This example shows how to define a WriteDelegate that obtains a DataSet, and then + writes the XML for the DataSet into the zip archive. There's no need to + save the XML to a disk file first. + + + private void WriteEntry (String filename, Stream output) + { + DataSet ds1 = ObtainDataSet(); + ds1.WriteXml(output); + } + + private void Run() + { + using (var zip = new ZipFile()) + { + zip.AddEntry(zipEntryName, WriteEntry); + zip.Save(zipFileName); + } + } + + + + Private Sub WriteEntry (ByVal filename As String, ByVal output As Stream) + DataSet ds1 = ObtainDataSet() + ds1.WriteXml(stream) + End Sub + + Public Sub Run() + Using zip = New ZipFile + zip.AddEntry(zipEntryName, New WriteDelegate(AddressOf WriteEntry)) + zip.Save(zipFileName) + End Using + End Sub + + + + + + + Delegate in which the application opens the stream, just-in-time, for the named entry. + + + + The name of the ZipEntry that the application should open the stream for. + + + + When you add an entry via , the application code provides the logic that + opens and closes the stream for the given ZipEntry. + + + + + + + Delegate in which the application closes the stream, just-in-time, for the named entry. + + + + The name of the ZipEntry that the application should close the stream for. + + + The stream to be closed. + + + When you add an entry via , the application code provides the logic that + opens and closes the stream for the given ZipEntry. + + + + + + + Delegate for the callback by which the application tells the + library the CompressionLevel to use for a file. + + + + + Using this callback, the application can, for example, specify that + previously-compressed files (.mp3, .png, .docx, etc) should use a + CompressionLevel of None, or can set the compression level based + on any other factor. + + + + + + + In an EventArgs type, indicates which sort of progress event is being + reported. + + + There are events for reading, events for saving, and events for + extracting. This enumeration allows a single EventArgs type to be sued to + describe one of multiple subevents. For example, a SaveProgress event is + invoked before, after, and during the saving of a single entry. The value + of an enum with this type, specifies which event is being triggered. The + same applies to Extraction, Reading and Adding events. + + + + + Indicates that a Add() operation has started. + + + + + Indicates that an individual entry in the archive has been added. + + + + + Indicates that a Add() operation has completed. + + + + + Indicates that a Read() operation has started. + + + + + Indicates that an individual entry in the archive is about to be read. + + + + + Indicates that an individual entry in the archive has just been read. + + + + + Indicates that a Read() operation has completed. + + + + + The given event reports the number of bytes read so far + during a Read() operation. + + + + + Indicates that a Save() operation has started. + + + + + Indicates that an individual entry in the archive is about to be written. + + + + + Indicates that an individual entry in the archive has just been saved. + + + + + Indicates that a Save() operation has completed. + + + + + Indicates that the zip archive has been created in a + temporary location during a Save() operation. + + + + + Indicates that the temporary file is about to be renamed to the final archive + name during a Save() operation. + + + + + Indicates that the temporary file is has just been renamed to the final archive + name during a Save() operation. + + + + + Indicates that the self-extracting archive has been compiled + during a Save() operation. + + + + + The given event is reporting the number of source bytes that have run through the compressor so far + during a Save() operation. + + + + + Indicates that an entry is about to be extracted. + + + + + Indicates that an entry has just been extracted. + + + + + Indicates that extraction of an entry would overwrite an existing + filesystem file. You must use + + ExtractExistingFileAction.InvokeExtractProgressEvent in the call + to ZipEntry.Extract() in order to receive this event. + + + + + The given event is reporting the number of bytes written so far for + the current entry during an Extract() operation. + + + + + Indicates that an ExtractAll operation is about to begin. + + + + + Indicates that an ExtractAll operation has completed. + + + + + Indicates that an error has occurred while saving a zip file. + This generally means the file cannot be opened, because it has been + removed, or because it is locked by another process. It can also + mean that the file cannot be Read, because of a range lock conflict. + + + + + Provides information about the progress of a save, read, or extract operation. + This is a base class; you will probably use one of the classes derived from this one. + + + + + The total number of entries to be saved or extracted. + + + + + The name of the last entry saved or extracted. + + + + + In an event handler, set this to cancel the save or extract + operation that is in progress. + + + + + The type of event being reported. + + + + + Returns the archive name associated to this event. + + + + + The number of bytes read or written so far for this entry. + + + + + Total number of bytes that will be read or written for this entry. + This number will be -1 if the value cannot be determined. + + + + + Provides information about the progress of a Read operation. + + + + + Provides information about the progress of a Add operation. + + + + + Provides information about the progress of a save operation. + + + + + Constructor for the SaveProgressEventArgs. + + the name of the zip archive. + whether this is before saving the entry, or after + The total number of entries in the zip archive. + Number of entries that have been saved. + The entry involved in the event. + + + + Number of entries saved so far. + + + + + Provides information about the progress of the extract operation. + + + + + Constructor for the ExtractProgressEventArgs. + + the name of the zip archive. + whether this is before saving the entry, or after + The total number of entries in the zip archive. + Number of entries that have been extracted. + The entry involved in the event. + The location to which entries are extracted. + + + + Number of entries extracted so far. This is set only if the + EventType is Extracting_BeforeExtractEntry or Extracting_AfterExtractEntry, and + the Extract() is occurring witin the scope of a call to ExtractAll(). + + + + + Returns the extraction target location, a filesystem path. + + + + + Provides information about the an error that occurred while zipping. + + + + + Returns the exception that occurred, if any. + + + + + Returns the name of the file that caused the exception, if any. + + + + + Issued when an ZipEntry.ExtractWithPassword() method is invoked + with an incorrect password. + + + + + Default ctor. + + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The message in the exception. + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The message in the exception. + The innerException for this exception. + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The serialization info for the exception. + The streaming context from which to deserialize. + + + + Indicates that a read was attempted on a stream, and bad or incomplete data was + received. + + + + + Default ctor. + + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The message in the exception. + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The message in the exception. + The innerException for this exception. + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The serialization info for the exception. + The streaming context from which to deserialize. + + + + Issued when an CRC check fails upon extracting an entry from a zip archive. + + + + + Default ctor. + + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The message in the exception. + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The serialization info for the exception. + The streaming context from which to deserialize. + + + + Issued when errors occur saving a self-extracting archive. + + + + + Default ctor. + + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The message in the exception. + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The serialization info for the exception. + The streaming context from which to deserialize. + + + + Indicates that an operation was attempted on a ZipFile which was not possible + given the state of the instance. For example, if you call Save() on a ZipFile + which has no filename set, you can get this exception. + + + + + Default ctor. + + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The message in the exception. + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The message in the exception. + The innerException for this exception. + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The serialization info for the exception. + The streaming context from which to deserialize. + + + + Base class for all exceptions defined by and throw by the Zip library. + + + + + Default ctor. + + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The message in the exception. + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The message in the exception. + The innerException for this exception. + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The serialization info for the exception. + The streaming context from which to deserialize. + + + + An enum for the options when extracting an entry would overwrite an existing file. + + + + + This enum describes the actions that the library can take when an + Extract() or ExtractWithPassword() method is called to extract an + entry to a filesystem, and the extraction would overwrite an existing filesystem + file. + + + + + + + Throw an exception when extraction would overwrite an existing file. (For + COM clients, this is a 0 (zero).) + + + + + When extraction would overwrite an existing file, overwrite the file silently. + The overwrite will happen even if the target file is marked as read-only. + (For COM clients, this is a 1.) + + + + + When extraction would overwrite an existing file, don't overwrite the file, silently. + (For COM clients, this is a 2.) + + + + + When extraction would overwrite an existing file, invoke the ExtractProgress + event, using an event type of . In + this way, the application can decide, just-in-time, whether to overwrite the + file. For example, a GUI application may wish to pop up a dialog to allow + the user to choose. You may want to examine the property before making + the decision. If, after your processing in the Extract progress event, you + want to NOT extract the file, set + on the ZipProgressEventArgs.CurrentEntry to DoNotOverwrite. + If you do want to extract the file, set ZipEntry.ExtractExistingFile + to OverwriteSilently. If you want to cancel the Extraction, set + ZipProgressEventArgs.Cancel to true. Cancelling differs from using + DoNotOverwrite in that a cancel will not extract any further entries, if + there are any. (For COM clients, the value of this enum is a 3.) + + + + + Collects general purpose utility methods. + + + + private null constructor + + + + Utility routine for transforming path names from filesystem format (on Windows that means backslashes) to + a format suitable for use within zipfiles. This means trimming the volume letter and colon (if any) And + swapping backslashes for forward slashes. + + source path. + transformed path + + + + Sanitize paths in zip files. This means making sure that relative paths in a zip file don't go outside + the top directory. Entries like something/../../../../Temp/evil.txt get sanitized to Temp/evil.txt + when extracting + + A path with forward slashes as directory separator + sanitized path + + + + Finds a signature in the zip stream. This is useful for finding + the end of a zip entry, for example, or the beginning of the next ZipEntry. + + + + + Scans through 64k at a time. + + + + If the method fails to find the requested signature, the stream Position + after completion of this method is unchanged. If the method succeeds in + finding the requested signature, the stream position after completion is + direct AFTER the signature found in the stream. + + + + The stream to search + The 4-byte signature to find + The number of bytes read + + + + Create a pseudo-random filename, suitable for use as a temporary + file, and open it. + + + + This method produces a filename of the form + DotNetZip-xxxxxxxx.tmp, where xxxxxxxx is replaced by randomly + chosen characters, and creates that file. + + + + + + Workitem 7889: handle ERROR_LOCK_VIOLATION during read + + + This could be gracefully handled with an extension attribute, but + This assembly used to be built for .NET 2.0, so could not use + extension methods. + + + + + A decorator stream. It wraps another stream, and performs bookkeeping + to keep track of the stream Position. + + + + In some cases, it is not possible to get the Position of a stream, let's + say, on a write-only output stream like ASP.NET's + Response.OutputStream, or on a different write-only stream + provided as the destination for the zip by the application. In this + case, programmers can use this counting stream to count the bytes read + or written. + + + Consider the scenario of an application that saves a self-extracting + archive (SFX), that uses a custom SFX stub. + + + Saving to a filesystem file, the application would open the + filesystem file (getting a FileStream), save the custom sfx stub + into it, and then call ZipFile.Save(), specifying the same + FileStream. ZipFile.Save() does the right thing for the zipentry + offsets, by inquiring the Position of the FileStream before writing + any data, and then adding that initial offset into any ZipEntry + offsets in the zip directory. Everything works fine. + + + Now suppose the application is an ASPNET application and it saves + directly to Response.OutputStream. It's not possible for DotNetZip to + inquire the Position, so the offsets for the SFX will be wrong. + + + The workaround is for the application to use this class to wrap + HttpResponse.OutputStream, then write the SFX stub and the ZipFile + into that wrapper stream. Because ZipFile.Save() can inquire the + Position, it will then do the right thing with the offsets. + + + + + + The constructor. + + The underlying stream + + + + Gets the wrapped stream. + + + + + The count of bytes written out to the stream. + + + + + the count of bytes that have been read from the stream. + + + + + Adjust the byte count on the stream. + + + + the number of bytes to subtract from the count. + + + + + Subtract delta from the count of bytes written to the stream. + This is necessary when seeking back, and writing additional data, + as happens in some cases when saving Zip files. + + + + + + The read method. + + The buffer to hold the data read from the stream. + the offset within the buffer to copy the first byte read. + the number of bytes to read. + the number of bytes read, after decryption and decompression. + + + + Write data into the stream. + + The buffer holding data to write to the stream. + the offset within that data array to find the first byte to write. + the number of bytes to write. + + + + Whether the stream can be read. + + + + + Whether it is possible to call Seek() on the stream. + + + + + Whether it is possible to call Write() on the stream. + + + + + Flushes the underlying stream. + + + + + The length of the underlying stream. + + + + + Returns the sum of number of bytes written, plus the initial + offset before writing. + + + + + The Position of the stream. + + + + + Seek in the stream. + + the offset point to seek to + the reference point from which to seek + The new position + + + + Set the length of the underlying stream. Be careful with this! + + + the length to set on the underlying stream. + + + + This is a helper class supporting WinZip AES encryption. + This class is intended for use only by the DotNetZip library. + + + + Most uses of the DotNetZip library will not involve direct calls into + the WinZipAesCrypto class. Instead, the WinZipAesCrypto class is + instantiated and used by the ZipEntry() class when WinZip AES + encryption or decryption on an entry is employed. + + + + + A stream that encrypts as it writes, or decrypts as it reads. The + Crypto is AES in CTR (counter) mode, which is compatible with the AES + encryption employed by WinZip 12.0. + + + + The AES/CTR encryption protocol used by WinZip works like this: + + - start with a counter, initialized to zero. + + - to encrypt, take the data by 16-byte blocks. For each block: + - apply the transform to the counter + - increement the counter + - XOR the result of the transform with the plaintext to + get the ciphertext. + - compute the mac on the encrypted bytes + - when finished with all blocks, store the computed MAC. + + - to decrypt, take the data by 16-byte blocks. For each block: + - compute the mac on the encrypted bytes, + - apply the transform to the counter + - increement the counter + - XOR the result of the transform with the ciphertext to + get the plaintext. + - when finished with all blocks, compare the computed MAC against + the stored MAC + + + + + + + The constructor. + + The underlying stream + To either encrypt or decrypt. + The pre-initialized WinZipAesCrypto object. + The maximum number of bytes to read from the stream. + + + + Returns the final HMAC-SHA1-80 for the data that was encrypted. + + + + + Close the stream. + + + + + Returns true if the stream can be read. + + + + + Always returns false. + + + + + Returns true if the CryptoMode is Encrypt. + + + + + Flush the content in the stream. + + + + + Getting this property throws a NotImplementedException. + + + + + Getting or Setting this property throws a NotImplementedException. + + + + + This method throws a NotImplementedException. + + + + + This method throws a NotImplementedException. + + + + + This class implements the "traditional" or "classic" PKZip encryption, + which today is considered to be weak. On the other hand it is + ubiquitous. This class is intended for use only by the DotNetZip + library. + + + + Most uses of the DotNetZip library will not involve direct calls into + the ZipCrypto class. Instead, the ZipCrypto class is instantiated and + used by the ZipEntry() class when encryption or decryption on an entry + is employed. If for some reason you really wanted to use a weak + encryption algorithm in some other application, you might use this + library. But you would be much better off using one of the built-in + strong encryption libraries in the .NET Framework, like the AES + algorithm or SHA. + + + + + The default constructor for ZipCrypto. + + + + This class is intended for internal use by the library only. It's + probably not useful to you. Seriously. Stop reading this + documentation. It's a waste of your time. Go do something else. + Check the football scores. Go get an ice cream with a friend. + Seriously. + + + + + + From AppNote.txt: + unsigned char decrypt_byte() + local unsigned short temp + temp :=- Key(2) | 2 + decrypt_byte := (temp * (temp ^ 1)) bitshift-right 8 + end decrypt_byte + + + + + Call this method on a cipher text to render the plaintext. You must + first initialize the cipher with a call to InitCipher. + + + + + var cipher = new ZipCrypto(); + cipher.InitCipher(Password); + // Decrypt the header. This has a side effect of "further initializing the + // encryption keys" in the traditional zip encryption. + byte[] DecryptedMessage = cipher.DecryptMessage(EncryptedMessage); + + + + The encrypted buffer. + + The number of bytes to encrypt. + Should be less than or equal to CipherText.Length. + + + The plaintext. + + + + This is the converse of DecryptMessage. It encrypts the plaintext + and produces a ciphertext. + + + The plain text buffer. + + + The number of bytes to encrypt. + Should be less than or equal to plainText.Length. + + + The ciphertext. + + + + This initializes the cipher with the given password. + See AppNote.txt for details. + + + + The passphrase for encrypting or decrypting with this cipher. + + + + + Step 1 - Initializing the encryption keys + ----------------------------------------- + Start with these keys: + Key(0) := 305419896 (0x12345678) + Key(1) := 591751049 (0x23456789) + Key(2) := 878082192 (0x34567890) + + Then, initialize the keys with a password: + + loop for i from 0 to length(password)-1 + update_keys(password(i)) + end loop + + Where update_keys() is defined as: + + update_keys(char): + Key(0) := crc32(key(0),char) + Key(1) := Key(1) + (Key(0) bitwiseAND 000000ffH) + Key(1) := Key(1) * 134775813 + 1 + Key(2) := crc32(key(2),key(1) rightshift 24) + end update_keys + + Where crc32(old_crc,char) is a routine that given a CRC value and a + character, returns an updated CRC value after applying the CRC-32 + algorithm described elsewhere in this document. + + + + + After the keys are initialized, then you can use the cipher to + encrypt the plaintext. + + + + Essentially we encrypt the password with the keys, then discard the + ciphertext for the password. This initializes the keys for later use. + + + + + + + A Stream for reading and concurrently decrypting data from a zip file, + or for writing and concurrently encrypting data to a zip file. + + + + The constructor. + The underlying stream + To either encrypt or decrypt. + The pre-initialized ZipCrypto object. + + + + Represents a single entry in a ZipFile. Typically, applications get a ZipEntry + by enumerating the entries within a ZipFile, or by adding an entry to a ZipFile. + + + + + True if the referenced entry is a directory. + + + + + Provides a human-readable string with information about the ZipEntry. + + + + + Reads one entry from the zip directory structure in the zip file. + + + + The zipfile for which a directory entry will be read. From this param, the + method gets the ReadStream and the expected text encoding + (ProvisionalAlternateEncoding) which is used if the entry is not marked + UTF-8. + + + + a list of previously seen entry names; used to prevent duplicates. + + + the entry read from the archive. + + + + Returns true if the passed-in value is a valid signature for a ZipDirEntry. + + the candidate 4-byte signature value. + true, if the signature is valid according to the PKWare spec. + + + + Default constructor. + + + Applications should never need to call this directly. It is exposed to + support COM Automation environments. + + + + + The time and date at which the file indicated by the ZipEntry was + last modified. + + + + + The DotNetZip library sets the LastModified value for an entry, equal to + the Last Modified time of the file in the filesystem. If an entry is + added from a stream, the library uses System.DateTime.Now for this + value, for the given entry. + + + + This property allows the application to retrieve and possibly set the + LastModified value on an entry, to an arbitrary value. values with a + setting of DateTimeKind.Unspecified are taken to be expressed as + DateTimeKind.Local. + + + + Be aware that because of the way PKWare's + Zip specification describes how times are stored in the zip file, + the full precision of the System.DateTime datatype is not stored + for the last modified time when saving zip files. For more information on + how times are formatted, see the PKZip specification. + + + + The actual last modified time of a file can be stored in multiple ways in + the zip file, and they are not mutually exclusive: + + + + + In the so-called "DOS" format, which has a 2-second precision. Values + are rounded to the nearest even second. For example, if the time on the + file is 12:34:43, then it will be stored as 12:34:44. This first value + is accessible via the LastModified property. This value is always + present in the metadata for each zip entry. In some cases the value is + invalid, or zero. + + + + In the so-called "Windows" or "NTFS" format, as an 8-byte integer + quantity expressed as the number of 1/10 milliseconds (in other words + the number of 100 nanosecond units) since January 1, 1601 (UTC). This + format is how Windows represents file times. This time is accessible + via the ModifiedTime property. + + + + In the "Unix" format, a 4-byte quantity specifying the number of seconds since + January 1, 1970 UTC. + + + + In an older format, now deprecated but still used by some current + tools. This format is also a 4-byte quantity specifying the number of + seconds since January 1, 1970 UTC. + + + + + + Zip tools and libraries will always at least handle (read or write) the + DOS time, and may also handle the other time formats. Keep in mind that + while the names refer to particular operating systems, there is nothing in + the time formats themselves that prevents their use on other operating + systems. + + + + When reading ZIP files, the DotNetZip library reads the Windows-formatted + time, if it is stored in the entry, and sets both LastModified and + ModifiedTime to that value. When writing ZIP files, the DotNetZip + library by default will write both time quantities. It can also emit the + Unix-formatted time if desired (See .) + + + + The last modified time of the file created upon a call to + ZipEntry.Extract() may be adjusted during extraction to compensate + for differences in how the .NET Base Class Library deals with daylight + saving time (DST) versus how the Windows filesystem deals with daylight + saving time. Raymond Chen provides + some good context. + + + + In a nutshell: Daylight savings time rules change regularly. In 2007, for + example, the inception week of DST changed. In 1977, DST was in place all + year round. In 1945, likewise. And so on. Win32 does not attempt to + guess which time zone rules were in effect at the time in question. It + will render a time as "standard time" and allow the app to change to DST + as necessary. .NET makes a different choice. + + + + Compare the output of FileInfo.LastWriteTime.ToString("f") with what you + see in the Windows Explorer property sheet for a file that was last + written to on the other side of the DST transition. For example, suppose + the file was last modified on October 17, 2003, during DST but DST is not + currently in effect. Explorer's file properties reports Thursday, October + 17, 2003, 8:45:38 AM, but .NETs FileInfo reports Thursday, October 17, + 2003, 9:45 AM. + + + + Win32 says, "Thursday, October 17, 2002 8:45:38 AM PST". Note: Pacific + STANDARD Time. Even though October 17 of that year occurred during Pacific + Daylight Time, Win32 displays the time as standard time because that's + what time it is NOW. + + + + .NET BCL assumes that the current DST rules were in place at the time in + question. So, .NET says, "Well, if the rules in effect now were also in + effect on October 17, 2003, then that would be daylight time" so it + displays "Thursday, October 17, 2003, 9:45 AM PDT" - daylight time. + + + + So .NET gives a value which is more intuitively correct, but is also + potentially incorrect, and which is not invertible. Win32 gives a value + which is intuitively incorrect, but is strictly correct. + + + + Because of this funkiness, this library adds one hour to the LastModified + time on the extracted file, if necessary. That is to say, if the time in + question had occurred in what the .NET Base Class Library assumed to be + DST. This assumption may be wrong given the constantly changing DST rules, + but it is the best we can do. + + + + + + + + Ability to set Last Modified DOS time to zero + (for using with EmitTimesInWindowsFormatWhenSaving+EmitTimesInUnixFormatWhenSaving setted to false) + some flasher hardware use as marker of first binary + + + + + Last Modified time for the file represented by the entry. + + + + + + This value corresponds to the "last modified" time in the NTFS file times + as described in the Zip + specification. When getting this property, the value may be + different from . When setting the property, + the property also gets set, but with a lower + precision. + + + + Let me explain. It's going to take a while, so get + comfortable. Originally, waaaaay back in 1989 when the ZIP specification + was originally described by the esteemed Mr. Phil Katz, the dominant + operating system of the time was MS-DOS. MSDOS stored file times with a + 2-second precision, because, c'mon, who is ever going to need better + resolution than THAT? And so ZIP files, regardless of the platform on + which the zip file was created, store file times in exactly the same format that DOS used + in 1989. + + + + Since then, the ZIP spec has evolved, but the internal format for file + timestamps remains the same. Despite the fact that the way times are + stored in a zip file is rooted in DOS heritage, any program on any + operating system can format a time in this way, and most zip tools and + libraries DO - they round file times to the nearest even second and store + it just like DOS did 25+ years ago. + + + + PKWare extended the ZIP specification to allow a zip file to store what + are called "NTFS Times" and "Unix(tm) times" for a file. These are the + last write, last access, and file creation + times of a particular file. These metadata are not actually specific + to NTFS or Unix. They are tracked for each file by NTFS and by various + Unix filesystems, but they are also tracked by other filesystems, too. + The key point is that the times are formatted in the zip file + in the same way that NTFS formats the time (ticks since win32 epoch), + or in the same way that Unix formats the time (seconds since Unix + epoch). As with the DOS time, any tool or library running on any + operating system is capable of formatting a time in one of these ways + and embedding it into the zip file. + + + + These extended times are higher precision quantities than the DOS time. + As described above, the (DOS) LastModified has a precision of 2 seconds. + The Unix time is stored with a precision of 1 second. The NTFS time is + stored with a precision of 0.0000001 seconds. The quantities are easily + convertible, except for the loss of precision you may incur. + + + + A zip archive can store the {C,A,M} times in NTFS format, in Unix format, + or not at all. Often a tool running on Unix or Mac will embed the times + in Unix format (1 second precision), while WinZip running on Windows might + embed the times in NTFS format (precision of of 0.0000001 seconds). When + reading a zip file with these "extended" times, in either format, + DotNetZip represents the values with the + ModifiedTime, AccessedTime and CreationTime + properties on the ZipEntry. + + + + While any zip application or library, regardless of the platform it + runs on, could use any of the time formats allowed by the ZIP + specification, not all zip tools or libraries do support all these + formats. Storing the higher-precision times for each entry is + optional for zip files, and many tools and libraries don't use the + higher precision quantities at all. The old DOS time, represented by + , is guaranteed to be present, though it + sometimes unset. + + + + Ok, getting back to the question about how the LastModified + property relates to this ModifiedTime + property... LastModified is always set, while + ModifiedTime is not. (The other times stored in the NTFS + times extension, CreationTime and AccessedTime also + may not be set on an entry that is read from an existing zip file.) + When reading a zip file, then LastModified takes the DOS time + that is stored with the file. If the DOS time has been stored as zero + in the zipfile, then this library will use DateTime.Now for the + LastModified value. If the ZIP file was created by an evolved + tool, then there will also be higher precision NTFS or Unix times in + the zip file. In that case, this library will read those times, and + set LastModified and ModifiedTime to the same value, the + one corresponding to the last write time of the file. If there are no + higher precision times stored for the entry, then ModifiedTime + remains unset (likewise AccessedTime and CreationTime), + and LastModified keeps its DOS time. + + + + When creating zip files with this library, by default the extended time + properties (ModifiedTime, AccessedTime, and + CreationTime) are set on the ZipEntry instance, and these data are + stored in the zip archive for each entry, in NTFS format. If you add an + entry from an actual filesystem file, then the entry gets the actual file + times for that file, to NTFS-level precision. If you add an entry from a + stream, or a string, then the times get the value DateTime.Now. In + this case LastModified and ModifiedTime will be identical, + to 2 seconds of precision. You can explicitly set the + CreationTime, AccessedTime, and ModifiedTime of an + entry using the property setters. If you want to set all of those + quantities, it's more efficient to use the method. Those + changes are not made permanent in the zip file until you call or one of its cousins. + + + + When creating a zip file, you can override the default behavior of + this library for formatting times in the zip file, disabling the + embedding of file times in NTFS format or enabling the storage of file + times in Unix format, or both. You may want to do this, for example, + when creating a zip file on Windows, that will be consumed on a Mac, + by an application that is not hip to the "NTFS times" format. To do + this, use the and + properties. A valid zip + file may store the file times in both formats. But, there are no + guarantees that a program running on Mac or Linux will gracefully + handle the NTFS-formatted times when Unix times are present, or that a + non-DotNetZip-powered application running on Windows will be able to + handle file times in Unix format. DotNetZip will always do something + reasonable; other libraries or tools may not. When in doubt, test. + + + + I'll bet you didn't think one person could type so much about time, eh? + And reading it was so enjoyable, too! Well, in appreciation, maybe you + should donate? + + + + + + + + + + + Last Access time for the file represented by the entry. + + + This value may or may not be meaningful. If the ZipEntry was read from an existing + Zip archive, this information may not be available. For an explanation of why, see + . + + + + + + + + The file creation time for the file represented by the entry. + + + + This value may or may not be meaningful. If the ZipEntry was read + from an existing zip archive, and the creation time was not set on the entry + when the zip file was created, then this property may be meaningless. For an + explanation of why, see . + + + + + + + + Sets the NTFS Creation, Access, and Modified times for the given entry. + + + + + When adding an entry from a file or directory, the Creation, Access, and + Modified times for the given entry are automatically set from the + filesystem values. When adding an entry from a stream or string, the + values are implicitly set to DateTime.Now. The application may wish to + set these values to some arbitrary value, before saving the archive, and + can do so using the various setters. If you want to set all of the times, + this method is more efficient. + + + + The values you set here will be retrievable with the , and properties. + + + + When this method is called, if both and are false, then the + EmitTimesInWindowsFormatWhenSaving flag is automatically set. + + + + DateTime values provided here without a DateTimeKind are assumed to be Local Time. + + + + the creation time of the entry. + the last access time of the entry. + the last modified time of the entry. + + + + + + + + + + Specifies whether the Creation, Access, and Modified times for the given + entry will be emitted in "Windows format" when the zip archive is saved. + + + + + An application creating a zip archive can use this flag to explicitly + specify that the file times for the entry should or should not be stored + in the zip archive in the format used by Windows. The default value of + this property is true. + + + + When adding an entry from a file or directory, the Creation (), Access (), and Modified + () times for the given entry are automatically + set from the filesystem values. When adding an entry from a stream or + string, all three values are implicitly set to DateTime.Now. Applications + can also explicitly set those times by calling . + + + + PKWARE's + zip specification describes multiple ways to format these times in a + zip file. One is the format Windows applications normally use: 100ns ticks + since Jan 1, 1601 UTC. The other is a format Unix applications typically + use: seconds since January 1, 1970 UTC. Each format can be stored in an + "extra field" in the zip entry when saving the zip archive. The former + uses an extra field with a Header Id of 0x000A, while the latter uses a + header ID of 0x5455. + + + + Not all zip tools and libraries can interpret these fields. Windows + compressed folders is one that can read the Windows Format timestamps, + while I believe the Infozip + tools can read the Unix format timestamps. Although the time values are + easily convertible, subject to a loss of precision, some tools and + libraries may be able to read only one or the other. DotNetZip can read or + write times in either or both formats. + + + + The times stored are taken from , , and . + + + + This property is not mutually exclusive from the property. It is + possible that a zip entry can embed the timestamps in both forms, one + form, or neither. But, there are no guarantees that a program running on + Mac or Linux will gracefully handle NTFS Formatted times, or that a + non-DotNetZip-powered application running on Windows will be able to + handle file times in Unix format. When in doubt, test. + + + + Normally you will use the ZipFile.EmitTimesInWindowsFormatWhenSaving + property, to specify the behavior for all entries in a zip, rather than + the property on each individual entry. + + + + + + + + + + + + + Specifies whether the Creation, Access, and Modified times for the given + entry will be emitted in "Unix(tm) format" when the zip archive is saved. + + + + + An application creating a zip archive can use this flag to explicitly + specify that the file times for the entry should or should not be stored + in the zip archive in the format used by Unix. By default this flag is + false, meaning the Unix-format times are not stored in the zip + archive. + + + + When adding an entry from a file or directory, the Creation (), Access (), and Modified + () times for the given entry are automatically + set from the filesystem values. When adding an entry from a stream or + string, all three values are implicitly set to DateTime.Now. Applications + can also explicitly set those times by calling . + + + + PKWARE's + zip specification describes multiple ways to format these times in a + zip file. One is the format Windows applications normally use: 100ns ticks + since Jan 1, 1601 UTC. The other is a format Unix applications typically + use: seconds since Jan 1, 1970 UTC. Each format can be stored in an + "extra field" in the zip entry when saving the zip archive. The former + uses an extra field with a Header Id of 0x000A, while the latter uses a + header ID of 0x5455. + + + + Not all tools and libraries can interpret these fields. Windows + compressed folders is one that can read the Windows Format timestamps, + while I believe the Infozip + tools can read the Unix format timestamps. Although the time values are + easily convertible, subject to a loss of precision, some tools and + libraries may be able to read only one or the other. DotNetZip can read or + write times in either or both formats. + + + + The times stored are taken from , , and . + + + + This property is not mutually exclusive from the property. It is + possible that a zip entry can embed the timestamps in both forms, one + form, or neither. But, there are no guarantees that a program running on + Mac or Linux will gracefully handle NTFS Formatted times, or that a + non-DotNetZip-powered application running on Windows will be able to + handle file times in Unix format. When in doubt, test. + + + + Normally you will use the ZipFile.EmitTimesInUnixFormatWhenSaving + property, to specify the behavior for all entries, rather than the + property on each individual entry. + + + + + + + + + + + + + The type of timestamp attached to the ZipEntry. + + + + This property is valid only for a ZipEntry that was read from a zip archive. + It indicates the type of timestamp attached to the entry. + + + + + + + + The file attributes for the entry. + + + + + + The attributes in NTFS include + ReadOnly, Archive, Hidden, System, and Indexed. When adding a + ZipEntry to a ZipFile, these attributes are set implicitly when + adding an entry from the filesystem. When adding an entry from a stream + or string, the Attributes are not set implicitly. Regardless of the way + an entry was added to a ZipFile, you can set the attributes + explicitly if you like. + + + + When reading a ZipEntry from a ZipFile, the attributes are + set according to the data stored in the ZipFile. If you extract the + entry from the archive to a filesystem file, DotNetZip will set the + attributes on the resulting file accordingly. + + + + The attributes can be set explicitly by the application. For example the + application may wish to set the FileAttributes.ReadOnly bit for all + entries added to an archive, so that on unpack, this attribute will be set + on the extracted file. Any changes you make to this property are made + permanent only when you call a Save() method on the ZipFile + instance that contains the ZipEntry. + + + + For example, an application may wish to zip up a directory and set the + ReadOnly bit on every file in the archive, so that upon later extraction, + the resulting files will be marked as ReadOnly. Not every extraction tool + respects these attributes, but if you unpack with DotNetZip, as for + example in a self-extracting archive, then the attributes will be set as + they are stored in the ZipFile. + + + + These attributes may not be interesting or useful if the resulting archive + is extracted on a non-Windows platform. How these attributes get used + upon extraction depends on the platform and tool used. + + + + + + + The name of the filesystem file, referred to by the ZipEntry. + + + + + This property specifies the thing-to-be-zipped on disk, and is set only + when the ZipEntry is being created from a filesystem file. If the + ZipFile is instantiated by reading an existing .zip archive, then + the LocalFileName will be null (Nothing in VB). + + + + When it is set, the value of this property may be different than , which is the path used in the archive itself. If you + call Zip.AddFile("foop.txt", AlternativeDirectory), then the path + used for the ZipEntry within the zip archive will be different + than this path. + + + + If the entry is being added from a stream, then this is null (Nothing in VB). + + + + + + + + The name of the file contained in the ZipEntry. + + + + + + This is the name of the entry in the ZipFile itself. When creating + a zip archive, if the ZipEntry has been created from a filesystem + file, via a call to or , or a related overload, the value + of this property is derived from the name of that file. The + FileName property does not include drive letters, and may include a + different directory path, depending on the value of the + directoryPathInArchive parameter used when adding the entry into + the ZipFile. + + + + In some cases there is no related filesystem file - for example when a + ZipEntry is created using or one of the similar overloads. In this case, the value of + this property is derived from the fileName and the directory path passed + to that method. + + + + When reading a zip file, this property takes the value of the entry name + as stored in the zip file. If you extract such an entry, the extracted + file will take the name given by this property. + + + + Applications can set this property when creating new zip archives or when + reading existing archives. When setting this property, the actual value + that is set will replace backslashes with forward slashes, in accordance + with the Zip + specification, for compatibility with Unix(tm) and ... get + this.... Amiga! + + + + If an application reads a ZipFile via or a related overload, and then explicitly + sets the FileName on an entry contained within the ZipFile, and + then calls , the application will effectively + rename the entry within the zip archive. + + + + If an application sets the value of FileName, then calls + Extract() on the entry, the entry is extracted to a file using the + newly set value as the filename. The FileName value is made + permanent in the zip archive only after a call to one of the + ZipFile.Save() methods on the ZipFile that contains the + ZipEntry. + + + + If an application attempts to set the FileName to a value that + would result in a duplicate entry in the ZipFile, an exception is + thrown. + + + + When a ZipEntry is contained within a ZipFile, applications + cannot rename the entry within the context of a foreach (For + Each in VB) loop, because of the way the ZipFile stores + entries. If you need to enumerate through all the entries and rename one + or more of them, use ZipFile.EntriesSorted as the + collection. See also, ZipFile.GetEnumerator(). + + + + + + + The stream that provides content for the ZipEntry. + + + + + + The application can use this property to set the input stream for an + entry on a just-in-time basis. Imagine a scenario where the application + creates a ZipFile comprised of content obtained from hundreds of + files, via calls to AddFile(). The DotNetZip library opens streams + on these files on a just-in-time basis, only when writing the entry out to + an external store within the scope of a ZipFile.Save() call. Only + one input stream is opened at a time, as each entry is being written out. + + + + Now imagine a different application that creates a ZipFile + with content obtained from hundreds of streams, added through . Normally the + application would supply an open stream to that call. But when large + numbers of streams are being added, this can mean many open streams at one + time, unnecessarily. + + + + To avoid this, call and specify delegates that open and close the stream at + the time of Save. + + + + + Setting the value of this property when the entry was not added from a + stream (for example, when the ZipEntry was added with or , or when the entry was added by + reading an existing zip archive) will throw an exception. + + + + + + + + A flag indicating whether the InputStream was provided Just-in-time. + + + + + + When creating a zip archive, an application can obtain content for one or + more of the ZipEntry instances from streams, using the method. At the time + of calling that method, the application can supply null as the value of + the stream parameter. By doing so, the application indicates to the + library that it will provide a stream for the entry on a just-in-time + basis, at the time one of the ZipFile.Save() methods is called and + the data for the various entries are being compressed and written out. + + + + In this case, the application can set the + property, typically within the SaveProgress event (event type: ) for that entry. + + + + The application will later want to call Close() and Dispose() on that + stream. In the SaveProgress event, when the event type is , the application can + do so. This flag indicates that the stream has been provided by the + application on a just-in-time basis and that it is the application's + responsibility to call Close/Dispose on that stream. + + + + + + + + An enum indicating the source of the ZipEntry. + + + + + The version of the zip engine needed to read the ZipEntry. + + + + + This is a readonly property, indicating the version of the Zip + specification that the extracting tool or library must support to + extract the given entry. Generally higher versions indicate newer + features. Older zip engines obviously won't know about new features, and + won't be able to extract entries that depend on those newer features. + + + + + value + Features + + + + 20 + a basic Zip Entry, potentially using PKZIP encryption. + + + + + 45 + The ZIP64 extension is used on the entry. + + + + + 46 + File is compressed using BZIP2 compression* + + + + 50 + File is encrypted using PkWare's DES, 3DES, (broken) RC2 or RC4 + + + + 51 + File is encrypted using PKWare's AES encryption or corrected RC2 encryption. + + + + 52 + File is encrypted using corrected RC2-64 encryption** + + + + 61 + File is encrypted using non-OAEP key wrapping*** + + + + 63 + File is compressed using LZMA, PPMd+, Blowfish, or Twofish + + + + + + There are other values possible, not listed here. DotNetZip supports + regular PKZip encryption, and ZIP64 extensions. DotNetZip cannot extract + entries that require a zip engine higher than 45. + + + + This value is set upon reading an existing zip file, or after saving a zip + archive. + + + + + + The comment attached to the ZipEntry. + + + + + Each entry in a zip file can optionally have a comment associated to + it. The comment might be displayed by a zip tool during extraction, for + example. + + + + By default, the Comment is encoded in IBM437 code page. You can + specify an alternative with and + . + + + + + + + + Indicates whether the entry requires ZIP64 extensions. + + + + + + This property is null (Nothing in VB) until a Save() method on the + containing instance has been called. The property is + non-null (HasValue is true) only after a Save() method has + been called. + + + + After the containing ZipFile has been saved, the Value of this + property is true if any of the following three conditions holds: the + uncompressed size of the entry is larger than 0xFFFFFFFF; the compressed + size of the entry is larger than 0xFFFFFFFF; the relative offset of the + entry within the zip archive is larger than 0xFFFFFFFF. These quantities + are not known until a Save() is attempted on the zip archive and + the compression is applied. + + + + If none of the three conditions holds, then the Value is false. + + + + A Value of false does not indicate that the entry, as saved in the + zip archive, does not use ZIP64. It merely indicates that ZIP64 is + not required. An entry may use ZIP64 even when not required if + the property on the containing + ZipFile instance is set to , or if + the property on the containing + ZipFile instance is set to + and the output stream was not seekable. + + + + + + + + Indicates whether the entry actually used ZIP64 extensions, as it was most + recently written to the output file or stream. + + + + + + This Nullable property is null (Nothing in VB) until a Save() + method on the containing instance has been + called. HasValue is true only after a Save() method has been + called. + + + + The value of this property for a particular ZipEntry may change + over successive calls to Save() methods on the containing ZipFile, + even if the file that corresponds to the ZipEntry does not. This + may happen if other entries contained in the ZipFile expand, + causing the offset for this particular entry to exceed 0xFFFFFFFF. + + + + + + + The bitfield for the entry as defined in the zip spec. You probably + never need to look at this. + + + + + You probably do not need to concern yourself with the contents of this + property, but in case you do: + + + + + bit + meaning + + + + 0 + set if encryption is used. + + + + 1-2 + + set to determine whether normal, max, fast deflation. DotNetZip library + always leaves these bits unset when writing (indicating "normal" + deflation"), but can read an entry with any value here. + + + + + 3 + + Indicates that the Crc32, Compressed and Uncompressed sizes are zero in the + local header. This bit gets set on an entry during writing a zip file, when + it is saved to a non-seekable output stream. + + + + + + 4 + reserved for "enhanced deflating". This library doesn't do enhanced deflating. + + + + 5 + set to indicate the zip is compressed patched data. This library doesn't do that. + + + + 6 + + set if PKWare's strong encryption is used (must also set bit 1 if bit 6 is + set). This bit is not set if WinZip's AES encryption is set. + + + + 7 + not used + + + + 8 + not used + + + + 9 + not used + + + + 10 + not used + + + + 11 + + Language encoding flag (EFS). If this bit is set, the filename and comment + fields for this file must be encoded using UTF-8. This library currently + does not support UTF-8. + + + + + 12 + Reserved by PKWARE for enhanced compression. + + + + 13 + + Used when encrypting the Central Directory to indicate selected data + values in the Local Header are masked to hide their actual values. See + the section in the Zip + specification describing the Strong Encryption Specification for + details. + + + + + 14 + Reserved by PKWARE. + + + + 15 + Reserved by PKWARE. + + + + + + + + + The compression method employed for this ZipEntry. + + + + + + The + Zip specification allows a variety of compression methods. This + library supports just two: 0x08 = Deflate. 0x00 = Store (no compression), + for reading or writing. + + + + When reading an entry from an existing zipfile, the value you retrieve + here indicates the compression method used on the entry by the original + creator of the zip. When writing a zipfile, you can specify either 0x08 + (Deflate) or 0x00 (None). If you try setting something else, you will get + an exception. + + + + You may wish to set CompressionMethod to CompressionMethod.None (0) + when zipping already-compressed data like a jpg, png, or mp3 file. + This can save time and cpu cycles. + + + + When setting this property on a ZipEntry that is read from an + existing zip file, calling ZipFile.Save() will cause the new + CompressionMethod to be used on the entry in the newly saved zip file. + + + + Setting this property may have the side effect of modifying the + CompressionLevel property. If you set the CompressionMethod to a + value other than None, and CompressionLevel is previously + set to None, then CompressionLevel will be set to + Default. + + + + + + + In this example, the first entry added to the zip archive uses the default + behavior - compression is used where it makes sense. The second entry, + the MP3 file, is added to the archive without being compressed. + + using (ZipFile zip = new ZipFile(ZipFileToCreate)) + { + ZipEntry e1= zip.AddFile(@"notes\Readme.txt"); + ZipEntry e2= zip.AddFile(@"music\StopThisTrain.mp3"); + e2.CompressionMethod = CompressionMethod.None; + zip.Save(); + } + + + + Using zip As New ZipFile(ZipFileToCreate) + zip.AddFile("notes\Readme.txt") + Dim e2 as ZipEntry = zip.AddFile("music\StopThisTrain.mp3") + e2.CompressionMethod = CompressionMethod.None + zip.Save + End Using + + + + + + Sets the compression level to be used for the entry when saving the zip + archive. This applies only for CompressionMethod = DEFLATE. + + + + + When using the DEFLATE compression method, Varying the compression + level used on entries can affect the size-vs-speed tradeoff when + compression and decompressing data streams or files. + + + + If you do not set this property, the default compression level is used, + which normally gives a good balance of compression efficiency and + compression speed. In some tests, using BestCompression can + double the time it takes to compress, while delivering just a small + increase in compression efficiency. This behavior will vary with the + type of data you compress. If you are in doubt, just leave this setting + alone, and accept the default. + + + + When setting this property on a ZipEntry that is read from an + existing zip file, calling ZipFile.Save() will cause the new + CompressionLevel to be used on the entry in the newly saved zip file. + + + + Setting this property may have the side effect of modifying the + CompressionMethod property. If you set the CompressionLevel + to a value other than None, CompressionMethod will be set + to Deflate, if it was previously None. + + + + Setting this property has no effect if the CompressionMethod is something + other than Deflate or None. + + + + + + + + The compressed size of the file, in bytes, within the zip archive. + + + + When reading a ZipFile, this value is read in from the existing + zip file. When creating or updating a ZipFile, the compressed + size is computed during compression. Therefore the value on a + ZipEntry is valid after a call to Save() (or one of its + overloads) in that case. + + + + + + + The size of the file, in bytes, before compression, or after extraction. + + + + When reading a ZipFile, this value is read in from the existing + zip file. When creating or updating a ZipFile, the uncompressed + size is computed during compression. Therefore the value on a + ZipEntry is valid after a call to Save() (or one of its + overloads) in that case. + + + + + + + The ratio of compressed size to uncompressed size of the ZipEntry. + + + + + This is a ratio of the compressed size to the uncompressed size of the + entry, expressed as a double in the range of 0 to 100+. A value of 100 + indicates no compression at all. It could be higher than 100 when the + compression algorithm actually inflates the data, as may occur for small + files, or uncompressible data that is encrypted. + + + + You could format it for presentation to a user via a format string of + "{3,5:F0}%" to see it as a percentage. + + + + If the size of the original uncompressed file is 0, implying a + denominator of 0, the return value will be zero. + + + + This property is valid after reading in an existing zip file, or after + saving the ZipFile that contains the ZipEntry. You cannot know the + effect of a compression transform until you try it. + + + + + + + The 32-bit CRC (Cyclic Redundancy Check) on the contents of the ZipEntry. + + + + + You probably don't need to concern yourself with this. It is used + internally by DotNetZip to verify files or streams upon extraction. + + The value is a 32-bit + CRC using 0xEDB88320 for the polynomial. This is the same CRC-32 used in + PNG, MPEG-2, and other protocols and formats. It is a read-only property; when + creating a Zip archive, the CRC for each entry is set only after a call to + Save() on the containing ZipFile. When reading an existing zip file, the value + of this property reflects the stored CRC for the entry. + + + + + + True if the entry is a directory (not a file). + This is a readonly property on the entry. + + + + + A derived property that is true if the entry uses encryption. + + + + + This is a readonly property on the entry. When reading a zip file, + the value for the ZipEntry is determined by the data read + from the zip file. After saving a ZipFile, the value of this + property for each ZipEntry indicates whether encryption was + actually used (which will have been true if the was set and the property + was something other than . + + + + + + Set this to specify which encryption algorithm to use for the entry when + saving it to a zip archive. + + + + + + Set this property in order to encrypt the entry when the ZipFile is + saved. When setting this property, you must also set a on the entry. If you set a value other than on this property and do not set a + Password then the entry will not be encrypted. The ZipEntry + data is encrypted as the ZipFile is saved, when you call or one of its cousins on the containing + ZipFile instance. You do not need to specify the Encryption + when extracting entries from an archive. + + + + The Zip specification from PKWare defines a set of encryption algorithms, + and the data formats for the zip archive that support them, and PKWare + supports those algorithms in the tools it produces. Other vendors of tools + and libraries, such as WinZip or Xceed, typically support a + subset of the algorithms specified by PKWare. These tools can + sometimes support additional different encryption algorithms and data + formats, not specified by PKWare. The AES Encryption specified and + supported by WinZip is the most popular example. This library supports a + subset of the complete set of algorithms specified by PKWare and other + vendors. + + + + There is no common, ubiquitous multi-vendor standard for strong encryption + within zip files. There is broad support for so-called "traditional" Zip + encryption, sometimes called Zip 2.0 encryption, as specified + by PKWare, but this encryption is considered weak and + breakable. This library currently supports the Zip 2.0 "weak" encryption, + and also a stronger WinZip-compatible AES encryption, using either 128-bit + or 256-bit key strength. If you want DotNetZip to support an algorithm + that is not currently supported, call the author of this library and maybe + we can talk business. + + + + The class also has a property. In most cases you will use + that property when setting encryption. This property takes + precedence over any Encryption set on the ZipFile itself. + Typically, you would use the per-entry Encryption when most entries in the + zip archive use one encryption algorithm, and a few entries use a + different one. If all entries in the zip file use the same Encryption, + then it is simpler to just set this property on the ZipFile itself, when + creating a zip archive. + + + + Some comments on updating archives: If you read a ZipFile, you can + modify the Encryption on an encrypted entry: you can remove encryption + from an entry that was encrypted; you can encrypt an entry that was not + encrypted previously; or, you can change the encryption algorithm. The + changes in encryption are not made permanent until you call Save() on the + ZipFile. To effect changes in encryption, the entry content is + streamed through several transformations, depending on the modification + the application has requested. For example if the entry is not encrypted + and the application sets Encryption to PkzipWeak, then at + the time of Save(), the original entry is read and decompressed, + then re-compressed and encrypted. Conversely, if the original entry is + encrypted with PkzipWeak encryption, and the application sets the + Encryption property to WinZipAes128, then at the time of + Save(), the original entry is decrypted via PKZIP encryption and + decompressed, then re-compressed and re-encrypted with AES. This all + happens automatically within the library, but it can be time-consuming for + large entries. + + + + Additionally, when updating archives, it is not possible to change the + password when changing the encryption algorithm. To change both the + algorithm and the password, you need to Save() the zipfile twice. First + set the Encryption to None, then call Save(). Then set the + Encryption to the new value (not "None"), then call Save() + once again. + + + + The WinZip AES encryption algorithms are not supported on the .NET Compact + Framework. + + + + + + This example creates a zip archive that uses encryption, and then extracts + entries from the archive. When creating the zip archive, the ReadMe.txt + file is zipped without using a password or encryption. The other file + uses encryption. + + + // Create a zip archive with AES Encryption. + using (ZipFile zip = new ZipFile()) + { + zip.AddFile("ReadMe.txt") + ZipEntry e1= zip.AddFile("2008-Regional-Sales-Report.pdf"); + e1.Encryption= EncryptionAlgorithm.WinZipAes256; + e1.Password= "Top.Secret.No.Peeking!"; + zip.Save("EncryptedArchive.zip"); + } + + // Extract a zip archive that uses AES Encryption. + // You do not need to specify the algorithm during extraction. + using (ZipFile zip = ZipFile.Read("EncryptedArchive.zip")) + { + // Specify the password that is used during extraction, for + // all entries that require a password: + zip.Password= "Top.Secret.No.Peeking!"; + zip.ExtractAll("extractDirectory"); + } + + + + ' Create a zip that uses Encryption. + Using zip As New ZipFile() + zip.AddFile("ReadMe.txt") + Dim e1 as ZipEntry + e1= zip.AddFile("2008-Regional-Sales-Report.pdf") + e1.Encryption= EncryptionAlgorithm.WinZipAes256 + e1.Password= "Top.Secret.No.Peeking!" + zip.Save("EncryptedArchive.zip") + End Using + + ' Extract a zip archive that uses AES Encryption. + ' You do not need to specify the algorithm during extraction. + Using (zip as ZipFile = ZipFile.Read("EncryptedArchive.zip")) + ' Specify the password that is used during extraction, for + ' all entries that require a password: + zip.Password= "Top.Secret.No.Peeking!" + zip.ExtractAll("extractDirectory") + End Using + + + + + + Thrown in the setter if EncryptionAlgorithm.Unsupported is specified. + + + ZipEntry.Password + ZipFile.Encryption + + + + The Password to be used when encrypting a ZipEntry upon + ZipFile.Save(), or when decrypting an entry upon Extract(). + + + + + This is a write-only property on the entry. Set this to request that the + entry be encrypted when writing the zip archive, or set it to specify the + password to be used when extracting an existing entry that is encrypted. + + + + The password set here is implicitly used to encrypt the entry during the + operation, or to decrypt during the or operation. If you set + the Password on a ZipEntry after calling Save(), there is no + effect. + + + + Consider setting the property when using a + password. Answering concerns that the standard password protection + supported by all zip tools is weak, WinZip has extended the ZIP + specification with a way to use AES Encryption to protect entries in the + Zip file. Unlike the "PKZIP 2.0" encryption specified in the PKZIP + specification, AES + Encryption uses a standard, strong, tested, encryption + algorithm. DotNetZip can create zip archives that use WinZip-compatible + AES encryption, if you set the property. But, + archives created that use AES encryption may not be readable by all other + tools and libraries. For example, Windows Explorer cannot read a + "compressed folder" (a zip file) that uses AES encryption, though it can + read a zip file that uses "PKZIP encryption." + + + + The class also has a + property. This property takes precedence over any password set on the + ZipFile itself. Typically, you would use the per-entry Password when most + entries in the zip archive use one password, and a few entries use a + different password. If all entries in the zip file use the same password, + then it is simpler to just set this property on the ZipFile itself, + whether creating a zip archive or extracting a zip archive. + + + + Some comments on updating archives: If you read a ZipFile, you + cannot modify the password on any encrypted entry, except by extracting + the entry with the original password (if any), removing the original entry + via , and then adding a new + entry with a new Password. + + + + For example, suppose you read a ZipFile, and there is an encrypted + entry. Setting the Password property on that ZipEntry and then + calling Save() on the ZipFile does not update the password + on that entry in the archive. Neither is an exception thrown. Instead, + what happens during the Save() is the existing entry is copied + through to the new zip archive, in its original encrypted form. Upon + re-reading that archive, the entry can be decrypted with its original + password. + + + + If you read a ZipFile, and there is an un-encrypted entry, you can set the + Password on the entry and then call Save() on the ZipFile, and get + encryption on that entry. + + + + + + + This example creates a zip file with two entries, and then extracts the + entries from the zip file. When creating the zip file, the two files are + added to the zip file using password protection. Each entry uses a + different password. During extraction, each file is extracted with the + appropriate password. + + + // create a file with encryption + using (ZipFile zip = new ZipFile()) + { + ZipEntry entry; + entry= zip.AddFile("Declaration.txt"); + entry.Password= "123456!"; + entry = zip.AddFile("Report.xls"); + entry.Password= "1Secret!"; + zip.Save("EncryptedArchive.zip"); + } + + // extract entries that use encryption + using (ZipFile zip = ZipFile.Read("EncryptedArchive.zip")) + { + ZipEntry entry; + entry = zip["Declaration.txt"]; + entry.Password = "123456!"; + entry.Extract("extractDir"); + entry = zip["Report.xls"]; + entry.Password = "1Secret!"; + entry.Extract("extractDir"); + } + + + + + Using zip As New ZipFile + Dim entry as ZipEntry + entry= zip.AddFile("Declaration.txt") + entry.Password= "123456!" + entry = zip.AddFile("Report.xls") + entry.Password= "1Secret!" + zip.Save("EncryptedArchive.zip") + End Using + + + ' extract entries that use encryption + Using (zip as ZipFile = ZipFile.Read("EncryptedArchive.zip")) + Dim entry as ZipEntry + entry = zip("Declaration.txt") + entry.Password = "123456!" + entry.Extract("extractDir") + entry = zip("Report.xls") + entry.Password = "1Secret!" + entry.Extract("extractDir") + End Using + + + + + + + ZipFile.Password + + + + The action the library should take when extracting a file that already exists. + + + + + This property affects the behavior of the Extract methods (one of the + Extract() or ExtractWithPassword() overloads), when + extraction would would overwrite an existing filesystem file. If you do + not set this property, the library throws an exception when extracting + an entry would overwrite an existing file. + + + + This property has no effect when extracting to a stream, or when the file to be + extracted does not already exist. + + + + + + + This example shows how to set the ExtractExistingFile property in + an ExtractProgress event, in response to user input. The + ExtractProgress event is invoked if and only if the + ExtractExistingFile property was previously set to + ExtractExistingFileAction.InvokeExtractProgressEvent. + + public static void ExtractProgress(object sender, ExtractProgressEventArgs e) + { + if (e.EventType == ZipProgressEventType.Extracting_BeforeExtractEntry) + Console.WriteLine("extract {0} ", e.CurrentEntry.FileName); + + else if (e.EventType == ZipProgressEventType.Extracting_ExtractEntryWouldOverwrite) + { + ZipEntry entry = e.CurrentEntry; + string response = null; + // Ask the user if he wants overwrite the file + do + { + Console.Write("Overwrite {0} in {1} ? (y/n/C) ", entry.FileName, e.ExtractLocation); + response = Console.ReadLine(); + Console.WriteLine(); + + } while (response != null && response[0]!='Y' && + response[0]!='N' && response[0]!='C'); + + if (response[0]=='C') + e.Cancel = true; + else if (response[0]=='Y') + entry.ExtractExistingFile = ExtractExistingFileAction.OverwriteSilently; + else + entry.ExtractExistingFile= ExtractExistingFileAction.DoNotOverwrite; + } + } + + + + + + The action to take when an error is encountered while + opening or reading files as they are saved into a zip archive. + + + + + Errors can occur within a call to ZipFile.Save, as the various files contained + in a ZipFile are being saved into the zip archive. During the + Save, DotNetZip will perform a File.Open on the file + associated to the ZipEntry, and then will read the entire contents of + the file as it is zipped. Either the open or the Read may fail, because + of lock conflicts or other reasons. Using this property, you can + specify the action to take when such errors occur. + + + + Typically you will NOT set this property on individual ZipEntry + instances. Instead, you will set the ZipFile.ZipErrorAction property on + the ZipFile instance, before adding any entries to the + ZipFile. If you do this, errors encountered on behalf of any of + the entries in the ZipFile will be handled the same way. + + + + But, if you use a handler, you will want + to set this property on the ZipEntry within the handler, to + communicate back to DotNetZip what you would like to do with the + particular error. + + + + + + + + + Indicates whether the entry was included in the most recent save. + + + An entry can be excluded or skipped from a save if there is an error + opening or reading the entry. + + + + + + A callback that allows the application to specify the compression to use + for a given entry that is about to be added to the zip archive. + + + + + See + + + + + + Set to indicate whether to use UTF-8 encoding for filenames and comments. + + + + + + If this flag is set, the comment and filename for the entry will be + encoded with UTF-8, as described in the Zip + specification, if necessary. "Necessary" means, the filename or + entry comment (if any) cannot be reflexively encoded and decoded using the + default code page, IBM437. + + + + Setting this flag to true is equivalent to setting to System.Text.Encoding.UTF8. + + + + This flag has no effect or relation to the text encoding used within the + file itself. + + + + + + + The text encoding to use for the FileName and Comment on this ZipEntry, + when the default encoding is insufficient. + + + + + + Don't use this property. See . + + + + + + + Specifies the alternate text encoding used by this ZipEntry + + + + The default text encoding used in Zip files for encoding filenames and + comments is IBM437, which is something like a superset of ASCII. In + cases where this is insufficient, applications can specify an + alternate encoding. + + + When creating a zip file, the usage of the alternate encoding is + governed by the property. + Typically you would set both properties to tell DotNetZip to employ an + encoding that is not IBM437 in the zipfile you are creating. + + + Keep in mind that because the ZIP specification states that the only + valid encodings to use are IBM437 and UTF-8, if you use something + other than that, then zip tools and libraries may not be able to + successfully read the zip archive you generate. + + + The zip specification states that applications should presume that + IBM437 is in use, except when a special bit is set, which indicates + UTF-8. There is no way to specify an arbitrary code page, within the + zip file itself. When you create a zip file encoded with gb2312 or + ibm861 or anything other than IBM437 or UTF-8, then the application + that reads the zip file needs to "know" which code page to use. In + some cases, the code page used when reading is chosen implicitly. For + example, WinRar uses the ambient code page for the host desktop + operating system. The pitfall here is that if you create a zip in + Copenhagen and send it to Tokyo, the reader of the zipfile may not be + able to decode successfully. + + + + This example shows how to create a zipfile encoded with a + language-specific encoding: + + using (var zip = new ZipFile()) + { + zip.AlternateEnoding = System.Text.Encoding.GetEncoding("ibm861"); + zip.AlternateEnodingUsage = ZipOption.Always; + zip.AddFileS(arrayOfFiles); + zip.Save("Myarchive-Encoded-in-IBM861.zip"); + } + + + + + + + Describes if and when this instance should apply + AlternateEncoding to encode the FileName and Comment, when + saving. + + + + + + Indicates whether an entry is marked as a text file. Be careful when + using on this property. Unless you have a good reason, you should + probably ignore this property. + + + + + The ZIP format includes a provision for specifying whether an entry in + the zip archive is a text or binary file. This property exposes that + metadata item. Be careful when using this property: It's not clear + that this property as a firm meaning, across tools and libraries. + + + + To be clear, when reading a zip file, the property value may or may + not be set, and its value may or may not be valid. Not all entries + that you may think of as "text" entries will be so marked, and entries + marked as "text" are not guaranteed in any way to be text entries. + Whether the value is set and set correctly depends entirely on the + application that produced the zip file. + + + + There are many zip tools available, and when creating zip files, some + of them "respect" the IsText metadata field, and some of them do not. + Unfortunately, even when an application tries to do "the right thing", + it's not always clear what "the right thing" is. + + + + There's no firm definition of just what it means to be "a text file", + and the zip specification does not help in this regard. Twenty years + ago, text was ASCII, each byte was less than 127. IsText meant, all + bytes in the file were less than 127. These days, it is not the case + that all text files have all bytes less than 127. Any unicode file + may have bytes that are above 0x7f. The zip specification has nothing + to say on this topic. Therefore, it's not clear what IsText really + means. + + + + This property merely tells a reading application what is stored in the + metadata for an entry, without guaranteeing its validity or its + meaning. + + + + When DotNetZip is used to create a zipfile, it attempts to set this + field "correctly." For example, if a file ends in ".txt", this field + will be set. Your application may override that default setting. When + writing a zip file, you must set the property before calling + Save() on the ZipFile. + + + + When reading a zip file, a more general way to decide just what kind + of file is contained in a particular entry is to use the file type + database stored in the operating system. The operating system stores + a table that says, a file with .jpg extension is a JPG image file, a + file with a .xml extension is an XML document, a file with a .txt is a + pure ASCII text document, and so on. To get this information on + Windows, you + need to read and parse the registry. + + + + + using (var zip = new ZipFile()) + { + var e = zip.UpdateFile("Descriptions.mme", ""); + e.IsText = true; + zip.Save(zipPath); + } + + + + Using zip As New ZipFile + Dim e2 as ZipEntry = zip.AddFile("Descriptions.mme", "") + e.IsText= True + zip.Save(zipPath) + End Using + + + + + Provides a string representation of the instance. + a string representation of the instance. + + + + Extract the entry to the filesystem, starting at the current + working directory. + + + + This method has a bunch of overloads! One of them is sure to + be the right one for you... If you don't like these, check + out the ExtractWithPassword() methods. + + + + + + + + + This method extracts an entry from a zip file into the current + working directory. The path of the entry as extracted is the full + path as specified in the zip archive, relative to the current + working directory. After the file is extracted successfully, the + file attributes and timestamps are set. + + + + The action taken when extraction an entry would overwrite an + existing file is determined by the property. + + + + Within the call to Extract(), the content for the entry is + written into a filesystem file, and then the last modified time of the + file is set according to the property on + the entry. See the remarks the property for + some details about the last modified time. + + + + + + + Extract the entry to a file in the filesystem, using the specified + behavior when extraction would overwrite an existing file. + + + + + See the remarks on the property, for some + details about how the last modified time of the file is set after + extraction. + + + + + The action to take if extraction would overwrite an existing file. + + + + + Extracts the entry to the specified stream. + + + + + The caller can specify any write-able stream, for example a , a , or ASP.NET's + Response.OutputStream. The content will be decrypted and + decompressed as necessary. If the entry is encrypted and no password + is provided, this method will throw. + + + The position on the stream is not reset by this method before it extracts. + You may want to call stream.Seek() before calling ZipEntry.Extract(). + + + + + the stream to which the entry should be extracted. + + + + + + Extract the entry to the filesystem, starting at the specified base + directory. + + + the pathname of the base directory + + + + + + This example extracts only the entries in a zip file that are .txt files, + into a directory called "textfiles". + + using (ZipFile zip = ZipFile.Read("PackedDocuments.zip")) + { + foreach (string s1 in zip.EntryFilenames) + { + if (s1.EndsWith(".txt")) + { + zip[s1].Extract("textfiles"); + } + } + } + + + Using zip As ZipFile = ZipFile.Read("PackedDocuments.zip") + Dim s1 As String + For Each s1 In zip.EntryFilenames + If s1.EndsWith(".txt") Then + zip(s1).Extract("textfiles") + End If + Next + End Using + + + + + + + Using this method, existing entries in the filesystem will not be + overwritten. If you would like to force the overwrite of existing + files, see the property, or call + . + + + + See the remarks on the property, for some + details about how the last modified time of the created file is set. + + + + + + Extract the entry to the filesystem, starting at the specified base + directory, and using the specified behavior when extraction would + overwrite an existing file. + + + + + See the remarks on the property, for some + details about how the last modified time of the created file is set. + + + + + + String sZipPath = "Airborne.zip"; + String sFilePath = "Readme.txt"; + String sRootFolder = "Digado"; + using (ZipFile zip = ZipFile.Read(sZipPath)) + { + if (zip.EntryFileNames.Contains(sFilePath)) + { + // use the string indexer on the zip file + zip[sFileName].Extract(sRootFolder, + ExtractExistingFileAction.OverwriteSilently); + } + } + + + + Dim sZipPath as String = "Airborne.zip" + Dim sFilePath As String = "Readme.txt" + Dim sRootFolder As String = "Digado" + Using zip As ZipFile = ZipFile.Read(sZipPath) + If zip.EntryFileNames.Contains(sFilePath) + ' use the string indexer on the zip file + zip(sFilePath).Extract(sRootFolder, _ + ExtractExistingFileAction.OverwriteSilently) + End If + End Using + + + + the pathname of the base directory + + The action to take if extraction would overwrite an existing file. + + + + + Extract the entry to the filesystem, using the current working directory + and the specified password. + + + + This method has a bunch of overloads! One of them is sure to be + the right one for you... + + + + + + + + + Existing entries in the filesystem will not be overwritten. If you + would like to force the overwrite of existing files, see the property, or call + . + + + + See the remarks on the property for some + details about how the "last modified" time of the created file is + set. + + + + + In this example, entries that use encryption are extracted using a + particular password. + + using (var zip = ZipFile.Read(FilePath)) + { + foreach (ZipEntry e in zip) + { + if (e.UsesEncryption) + e.ExtractWithPassword("Secret!"); + else + e.Extract(); + } + } + + + Using zip As ZipFile = ZipFile.Read(FilePath) + Dim e As ZipEntry + For Each e In zip + If (e.UsesEncryption) + e.ExtractWithPassword("Secret!") + Else + e.Extract + End If + Next + End Using + + + The Password to use for decrypting the entry. + + + + Extract the entry to the filesystem, starting at the specified base + directory, and using the specified password. + + + + + + + + Existing entries in the filesystem will not be overwritten. If you + would like to force the overwrite of existing files, see the property, or call + . + + + + See the remarks on the property, for some + details about how the last modified time of the created file is set. + + + + The pathname of the base directory. + The Password to use for decrypting the entry. + + + + Extract the entry to a file in the filesystem, relative to the + current directory, using the specified behavior when extraction + would overwrite an existing file. + + + + + See the remarks on the property, for some + details about how the last modified time of the created file is set. + + + + The Password to use for decrypting the entry. + + + The action to take if extraction would overwrite an existing file. + + + + + Extract the entry to the filesystem, starting at the specified base + directory, and using the specified behavior when extraction would + overwrite an existing file. + + + + See the remarks on the property, for some + details about how the last modified time of the created file is set. + + + the pathname of the base directory + + The action to take if extraction would + overwrite an existing file. + + The Password to use for decrypting the entry. + + + + Extracts the entry to the specified stream, using the specified + Password. For example, the caller could extract to Console.Out, or + to a MemoryStream. + + + + + The caller can specify any write-able stream, for example a , a , or ASP.NET's + Response.OutputStream. The content will be decrypted and + decompressed as necessary. If the entry is encrypted and no password + is provided, this method will throw. + + + The position on the stream is not reset by this method before it extracts. + You may want to call stream.Seek() before calling ZipEntry.Extract(). + + + + + + the stream to which the entry should be extracted. + + + The password to use for decrypting the entry. + + + + + Opens a readable stream corresponding to the zip entry in the + archive. The stream decompresses and decrypts as necessary, as it + is read. + + + + + + DotNetZip offers a variety of ways to extract entries from a zip + file. This method allows an application to extract an entry by + reading a . + + + + The return value is of type . Use it as you would any + stream for reading. When an application calls on that stream, it will + receive data from the zip entry that is decrypted and decompressed + as necessary. + + + + CrcCalculatorStream adds one additional feature: it keeps a + CRC32 checksum on the bytes of the stream as it is read. The CRC + value is available in the property on the + CrcCalculatorStream. When the read is complete, your + application + should check this CRC against the + property on the ZipEntry to validate the content of the + ZipEntry. You don't have to validate the entry using the CRC, but + you should, to verify integrity. Check the example for how to do + this. + + + + If the entry is protected with a password, then you need to provide + a password prior to calling , either by + setting the property on the entry, or the + property on the ZipFile + itself. Or, you can use , the + overload of OpenReader that accepts a password parameter. + + + + If you want to extract entry data into a write-able stream that is + already opened, like a , do not + use this method. Instead, use . + + + + Your application may use only one stream created by OpenReader() at + a time, and you should not call other Extract methods before + completing your reads on a stream obtained from OpenReader(). This + is because there is really only one source stream for the compressed + content. A call to OpenReader() seeks in the source stream, to the + beginning of the compressed content. A subsequent call to + OpenReader() on a different entry will seek to a different position + in the source stream, as will a call to Extract() or one of its + overloads. This will corrupt the state for the decompressing stream + from the original call to OpenReader(). + + + + The OpenReader() method works only when the ZipEntry is + obtained from an instance of ZipFile. This method will throw + an exception if the ZipEntry is obtained from a . + + + + + This example shows how to open a zip archive, then read in a named + entry via a stream. After the read loop is complete, the code + compares the calculated during the read loop with the expected CRC + on the ZipEntry, to verify the extraction. + + using (ZipFile zip = new ZipFile(ZipFileToRead)) + { + ZipEntry e1= zip["Elevation.mp3"]; + using (Ionic.Zlib.CrcCalculatorStream s = e1.OpenReader()) + { + byte[] buffer = new byte[4096]; + int n, totalBytesRead= 0; + do { + n = s.Read(buffer,0, buffer.Length); + totalBytesRead+=n; + } while (n>0); + if (s.Crc32 != e1.Crc32) + throw new Exception(string.Format("The Zip Entry failed the CRC Check. (0x{0:X8}!=0x{1:X8})", s.Crc32, e1.Crc32)); + if (totalBytesRead != e1.UncompressedSize) + throw new Exception(string.Format("We read an unexpected number of bytes. ({0}!={1})", totalBytesRead, e1.UncompressedSize)); + } + } + + + Using zip As New ZipFile(ZipFileToRead) + Dim e1 As ZipEntry = zip.Item("Elevation.mp3") + Using s As Ionic.Zlib.CrcCalculatorStream = e1.OpenReader + Dim n As Integer + Dim buffer As Byte() = New Byte(4096) {} + Dim totalBytesRead As Integer = 0 + Do + n = s.Read(buffer, 0, buffer.Length) + totalBytesRead = (totalBytesRead + n) + Loop While (n > 0) + If (s.Crc32 <> e1.Crc32) Then + Throw New Exception(String.Format("The Zip Entry failed the CRC Check. (0x{0:X8}!=0x{1:X8})", s.Crc32, e1.Crc32)) + End If + If (totalBytesRead <> e1.UncompressedSize) Then + Throw New Exception(String.Format("We read an unexpected number of bytes. ({0}!={1})", totalBytesRead, e1.UncompressedSize)) + End If + End Using + End Using + + + + The Stream for reading. + + + + Opens a readable stream for an encrypted zip entry in the archive. + The stream decompresses and decrypts as necessary, as it is read. + + + + + See the documentation on the method for + full details. This overload allows the application to specify a + password for the ZipEntry to be read. + + + + The password to use for decrypting the entry. + The Stream for reading. + + + + Pass in either basedir or s, but not both. + In other words, you can extract to a stream or to a directory (filesystem), but not both! + The Password param is required for encrypted entries. + + + + + Extract to a stream + In other words, you can extract to a stream or to a directory (filesystem), but not both! + The Password param is required for encrypted entries. + + + + + Validates that the args are consistent; returning whether the caller can return + because it's done, or not (caller should continue) + + + + + Validates that the args are consistent; returning whether the caller can return + because it's done, or not (caller should continue) + + + + + Reads one ZipEntry from the given stream. The content for + the entry does not get decompressed or decrypted. This method + basically reads metadata, and seeks. + + the ZipContainer this entry belongs to. + + true of this is the first entry being read from the stream. + + the ZipEntry read from the stream. + + + + Finds a particular segment in the given extra field. + This is used when modifying a previously-generated + extra field, in particular when removing the AES crypto + segment in the extra field. + + + + + At current cursor position in the stream, read the extra + field, and set the properties on the ZipEntry instance + appropriately. This can be called when processing the + Extra field in the Central Directory, or in the local + header. + + + + + generate and return a byte array that encodes the filename + for the entry. + + + + side effects: generate and store into _CommentBytes the + byte array for any comment attached to the entry. Also + sets _actualEncoding to indicate the actual encoding + used. The same encoding is used for both filename and + comment. + + + + + + Stores the position of the entry source stream, or, if the position is + already stored, seeks to that position. + + + + + This method is called in prep for reading the source stream. If PKZIP + encryption is used, then we need to calc the CRC32 before doing the + encryption, because the CRC is used in the 12th byte of the PKZIP + encryption header. So, we need to be able to seek backward in the source + when saving the ZipEntry. This method is called from the place that + calculates the CRC, and also from the method that does the encryption of + the file data. + + + + The first time through, this method sets the _sourceStreamOriginalPosition + field. Subsequent calls to this method seek to that position. + + + + + + Copy metadata that may have been changed by the app. We do this when + resetting the zipFile instance. If the app calls Save() on a ZipFile, then + tries to party on that file some more, we may need to Reset() it , which + means re-reading the entries and then copying the metadata. I think. + + + + + Set the input stream and get its length, if possible. The length is + used for progress updates, AND, to allow an optimization in case of + a stream/file of zero length. In that case we skip the Encrypt and + compression Stream. (like DeflateStream or BZip2OutputStream) + + + + + Prepare the given stream for output - wrap it in a CountingStream, and + then in a CRC stream, and an encryptor and deflator as appropriate. + + + + Previously this was used in ZipEntry.Write(), but in an effort to + introduce some efficiencies in that method I've refactored to put the + code inline. This method still gets called by ZipOutputStream. + + + + + + An enum that specifies the type of timestamp available on the ZipEntry. + + + + + + The last modified time of a file can be stored in multiple ways in + a zip file, and they are not mutually exclusive: + + + + + In the so-called "DOS" format, which has a 2-second precision. Values + are rounded to the nearest even second. For example, if the time on the + file is 12:34:43, then it will be stored as 12:34:44. This first value + is accessible via the LastModified property. This value is always + present in the metadata for each zip entry. In some cases the value is + invalid, or zero. + + + + In the so-called "Windows" or "NTFS" format, as an 8-byte integer + quantity expressed as the number of 1/10 milliseconds (in other words + the number of 100 nanosecond units) since January 1, 1601 (UTC). This + format is how Windows represents file times. This time is accessible + via the ModifiedTime property. + + + + In the "Unix" format, a 4-byte quantity specifying the number of seconds since + January 1, 1970 UTC. + + + + In an older format, now deprecated but still used by some current + tools. This format is also a 4-byte quantity specifying the number of + seconds since January 1, 1970 UTC. + + + + + + This bit field describes which of the formats were found in a ZipEntry that was read. + + + + + + + Default value. + + + + + A DOS timestamp with 2-second precision. + + + + + A Windows timestamp with 100-ns precision. + + + + + A Unix timestamp with 1-second precision. + + + + + A Unix timestamp with 1-second precision, stored in InfoZip v1 format. This + format is outdated and is supported for reading archives only. + + + + + The method of compression to use for a particular ZipEntry. + + + + PKWare's + ZIP Specification describes a number of distinct + cmopression methods that can be used within a zip + file. DotNetZip supports a subset of them. + + + + + No compression at all. For COM environments, the value is 0 (zero). + + + + + DEFLATE compression, as described in IETF RFC + 1951. This is the "normal" compression used in zip + files. For COM environments, the value is 8. + + + + + BZip2 compression, a compression algorithm developed by Julian Seward. + For COM environments, the value is 12. + + + + + An enum that specifies the source of the ZipEntry. + + + + + Default value. Invalid on a bonafide ZipEntry. + + + + + The entry was instantiated by calling AddFile() or another method that + added an entry from the filesystem. + + + + + The entry was instantiated via or + . + + + + + The ZipEntry was instantiated by reading a zipfile. + + + + + The content for the ZipEntry will be or was provided by the WriteDelegate. + + + + + The content for the ZipEntry will be obtained from the stream dispensed by the OpenDelegate. + The entry was instantiated via . + + + + + The content for the ZipEntry will be or was obtained from a ZipOutputStream. + + + + + An enum providing the options when an error occurs during opening or reading + of a file or directory that is being saved to a zip file. + + + + + This enum describes the actions that the library can take when an error occurs + opening or reading a file, as it is being saved into a Zip archive. + + + + In some cases an error will occur when DotNetZip tries to open a file to be + added to the zip archive. In other cases, an error might occur after the + file has been successfully opened, while DotNetZip is reading the file. + + + + The first problem might occur when calling AddDirectory() on a directory + that contains a Clipper .dbf file; the file is locked by Clipper and + cannot be opened by another process. An example of the second problem is + the ERROR_LOCK_VIOLATION that results when a file is opened by another + process, but not locked, and a range lock has been taken on the file. + Microsoft Outlook takes range locks on .PST files. + + + + + + Throw an exception when an error occurs while zipping. This is the default + behavior. (For COM clients, this is a 0 (zero).) + + + + + When an error occurs during zipping, for example a file cannot be opened, + skip the file causing the error, and continue zipping. (For COM clients, + this is a 1.) + + + + + When an error occurs during zipping, for example a file cannot be opened, + retry the operation that caused the error. Be careful with this option. If + the error is not temporary, the library will retry forever. (For COM + clients, this is a 2.) + + + + + When an error occurs, invoke the zipError event. The event type used is + . A typical use of this option: + a GUI application may wish to pop up a dialog to allow the user to view the + error that occurred, and choose an appropriate action. After your + processing in the error event, if you want to skip the file, set on the + ZipProgressEventArgs.CurrentEntry to Skip. If you want the + exception to be thrown, set ZipErrorAction on the CurrentEntry + to Throw. If you want to cancel the zip, set + ZipProgressEventArgs.Cancel to true. Cancelling differs from using + Skip in that a cancel will not save any further entries, if there are any. + (For COM clients, the value of this enum is a 3.) + + + + + Options for using ZIP64 extensions when saving zip archives. + + + + + + Designed many years ago, the original zip + specification from PKWARE allowed for 32-bit quantities for the + compressed and uncompressed sizes of zip entries, as well as a 32-bit quantity + for specifying the length of the zip archive itself, and a maximum of 65535 + entries. These limits are now regularly exceeded in many backup and archival + scenarios. Recently, PKWare added extensions to the original zip spec, called + "ZIP64 extensions", to raise those limitations. This property governs whether + DotNetZip will use those extensions when writing zip archives. The use of + these extensions is optional and explicit in DotNetZip because, despite the + status of ZIP64 as a bona fide standard, many other zip tools and libraries do + not support ZIP64, and therefore a zip file with ZIP64 extensions may be + unreadable by some of those other tools. + + + + Set this property to to always use ZIP64 + extensions when saving, regardless of whether your zip archive needs it. + Suppose you add 5 files, each under 100k, to a ZipFile. If you specify Always + for this flag, you will get a ZIP64 archive, though the archive does not need + to use ZIP64 because none of the original zip limits had been exceeded. + + + + Set this property to to tell the DotNetZip + library to never use ZIP64 extensions. This is useful for maximum + compatibility and interoperability, at the expense of the capability of + handling large files or large archives. NB: Windows Explorer in Windows XP + and Windows Vista cannot currently extract files from a zip64 archive, so if + you want to guarantee that a zip archive produced by this library will work in + Windows Explorer, use Never. If you set this property to , and your application creates a zip that would + exceed one of the Zip limits, the library will throw an exception while saving + the zip file. + + + + Set this property to to tell the + DotNetZip library to use the ZIP64 extensions when required by the + entry. After the file is compressed, the original and compressed sizes are + checked, and if they exceed the limits described above, then zip64 can be + used. That is the general idea, but there is an additional wrinkle when saving + to a non-seekable device, like the ASP.NET Response.OutputStream, or + Console.Out. When using non-seekable streams for output, the entry + header - which indicates whether zip64 is in use - is emitted before it is + known if zip64 is necessary. It is only after all entries have been saved + that it can be known if ZIP64 will be required. On seekable output streams, + after saving all entries, the library can seek backward and re-emit the zip + file header to be consistent with the actual ZIP64 requirement. But using a + non-seekable output stream, the library cannot seek backward, so the header + can never be changed. In other words, the archive's use of ZIP64 extensions is + not alterable after the header is emitted. Therefore, when saving to + non-seekable streams, using is the same + as using : it will always produce a zip + archive that uses ZIP64 extensions. + + + + + + + The default behavior, which is "Never". + (For COM clients, this is a 0 (zero).) + + + + + Do not use ZIP64 extensions when writing zip archives. + (For COM clients, this is a 0 (zero).) + + + + + Use ZIP64 extensions when writing zip archives, as necessary. + For example, when a single entry exceeds 0xFFFFFFFF in size, or when the archive as a whole + exceeds 0xFFFFFFFF in size, or when there are more than 65535 entries in an archive. + (For COM clients, this is a 1.) + + + + + Always use ZIP64 extensions when writing zip archives, even when unnecessary. + (For COM clients, this is a 2.) + + + + + An enum representing the values on a three-way toggle switch + for various options in the library. This might be used to + specify whether to employ a particular text encoding, or to use + ZIP64 extensions, or some other option. + + + + + The default behavior. This is the same as "Never". + (For COM clients, this is a 0 (zero).) + + + + + Never use the associated option. + (For COM clients, this is a 0 (zero).) + + + + + Use the associated behavior "as necessary." + (For COM clients, this is a 1.) + + + + + Use the associated behavior Always, whether necessary or not. + (For COM clients, this is a 2.) + + + + + A class for collecting the various options that can be used when + Reading zip files for extraction or update. + + + + + When reading a zip file, there are several options an + application can set, to modify how the file is read, or what + the library does while reading. This class collects those + options into one container. + + + + Pass an instance of the ReadOptions class into the + ZipFile.Read() method. + + + . + . + + + + + An event handler for Read operations. When opening large zip + archives, you may want to display a progress bar or other + indicator of status progress while reading. This parameter + allows you to specify a ReadProgress Event Handler directly. + When you call Read(), the progress event is invoked as + necessary. + + + + + The System.IO.TextWriter to use for writing verbose status messages + during operations on the zip archive. A console application may wish to + pass System.Console.Out to get messages on the Console. A graphical + or headless application may wish to capture the messages in a different + TextWriter, such as a System.IO.StringWriter. + + + + + The System.Text.Encoding to use when reading in the zip archive. Be + careful specifying the encoding. If the value you use here is not the same + as the Encoding used when the zip archive was created (possibly by a + different archiver) you will get unexpected results and possibly exceptions. + + + + + + + + Provides a stream metaphor for reading zip files. + + + + + This class provides an alternative programming model for reading zip files to + the one enabled by the class. Use this when reading zip + files, as an alternative to the class, when you would + like to use a Stream class to read the file. + + + + Some application designs require a readable stream for input. This stream can + be used to read a zip file, and extract entries. + + + + Both the ZipInputStream class and the ZipFile class can be used + to read and extract zip files. Both of them support many of the common zip + features, including Unicode, different compression levels, and ZIP64. The + programming models differ. For example, when extracting entries via calls to + the GetNextEntry() and Read() methods on the + ZipInputStream class, the caller is responsible for creating the file, + writing the bytes into the file, setting the attributes on the file, and + setting the created, last modified, and last accessed timestamps on the + file. All of these things are done automatically by a call to ZipEntry.Extract(). For this reason, the + ZipInputStream is generally recommended for when your application wants + to extract the data, without storing that data into a file. + + + + Aside from the obvious differences in programming model, there are some + differences in capability between the ZipFile class and the + ZipInputStream class. + + + + + ZipFile can be used to create or update zip files, or read and + extract zip files. ZipInputStream can be used only to read and + extract zip files. If you want to use a stream to create zip files, check + out the . + + + + ZipInputStream cannot read segmented or spanned + zip files. + + + + ZipInputStream will not read Zip file comments. + + + + When reading larger files, ZipInputStream will always underperform + ZipFile. This is because the ZipInputStream does a full scan on the + zip file, while the ZipFile class reads the central directory of the + zip file. + + + + + + + + + Create a ZipInputStream, wrapping it around an existing stream. + + + + + + While the class is generally easier + to use, this class provides an alternative to those + applications that want to read from a zipfile directly, + using a . + + + + Both the ZipInputStream class and the ZipFile class can be used + to read and extract zip files. Both of them support many of the common zip + features, including Unicode, different compression levels, and ZIP64. The + programming models differ. For example, when extracting entries via calls to + the GetNextEntry() and Read() methods on the + ZipInputStream class, the caller is responsible for creating the file, + writing the bytes into the file, setting the attributes on the file, and + setting the created, last modified, and last accessed timestamps on the + file. All of these things are done automatically by a call to ZipEntry.Extract(). For this reason, the + ZipInputStream is generally recommended for when your application wants + to extract the data, without storing that data into a file. + + + + Aside from the obvious differences in programming model, there are some + differences in capability between the ZipFile class and the + ZipInputStream class. + + + + + ZipFile can be used to create or update zip files, or read and extract + zip files. ZipInputStream can be used only to read and extract zip + files. If you want to use a stream to create zip files, check out the . + + + + ZipInputStream cannot read segmented or spanned + zip files. + + + + ZipInputStream will not read Zip file comments. + + + + When reading larger files, ZipInputStream will always underperform + ZipFile. This is because the ZipInputStream does a full scan on the + zip file, while the ZipFile class reads the central directory of the + zip file. + + + + + + + + The stream to read. It must be readable. This stream will be closed at + the time the ZipInputStream is closed. + + + + + This example shows how to read a zip file, and extract entries, using the + ZipInputStream class. + + + private void Unzip() + { + byte[] buffer= new byte[2048]; + int n; + using (var raw = File.Open(inputFileName, FileMode.Open, FileAccess.Read)) + { + using (var input= new ZipInputStream(raw)) + { + ZipEntry e; + while (( e = input.GetNextEntry()) != null) + { + if (e.IsDirectory) continue; + string outputPath = Path.Combine(extractDir, e.FileName); + using (var output = File.Open(outputPath, FileMode.Create, FileAccess.ReadWrite)) + { + while ((n= input.Read(buffer, 0, buffer.Length)) > 0) + { + output.Write(buffer,0,n); + } + } + } + } + } + } + + + + Private Sub UnZip() + Dim inputFileName As String = "MyArchive.zip" + Dim extractDir As String = "extract" + Dim buffer As Byte() = New Byte(2048) {} + Using raw As FileStream = File.Open(inputFileName, FileMode.Open, FileAccess.Read) + Using input As ZipInputStream = New ZipInputStream(raw) + Dim e As ZipEntry + Do While (Not e = input.GetNextEntry Is Nothing) + If Not e.IsDirectory Then + Using output As FileStream = File.Open(Path.Combine(extractDir, e.FileName), _ + FileMode.Create, FileAccess.ReadWrite) + Dim n As Integer + Do While (n = input.Read(buffer, 0, buffer.Length) > 0) + output.Write(buffer, 0, n) + Loop + End Using + End If + Loop + End Using + End Using + End Sub + + + + + + Create a ZipInputStream, given the name of an existing zip file. + + + + + + This constructor opens a FileStream for the given zipfile, and + wraps a ZipInputStream around that. See the documentation for the + constructor for full details. + + + + While the class is generally easier + to use, this class provides an alternative to those + applications that want to read from a zipfile directly, + using a . + + + + + + The name of the filesystem file to read. + + + + + This example shows how to read a zip file, and extract entries, using the + ZipInputStream class. + + + private void Unzip() + { + byte[] buffer= new byte[2048]; + int n; + using (var input= new ZipInputStream(inputFileName)) + { + ZipEntry e; + while (( e = input.GetNextEntry()) != null) + { + if (e.IsDirectory) continue; + string outputPath = Path.Combine(extractDir, e.FileName); + using (var output = File.Open(outputPath, FileMode.Create, FileAccess.ReadWrite)) + { + while ((n= input.Read(buffer, 0, buffer.Length)) > 0) + { + output.Write(buffer,0,n); + } + } + } + } + } + + + + Private Sub UnZip() + Dim inputFileName As String = "MyArchive.zip" + Dim extractDir As String = "extract" + Dim buffer As Byte() = New Byte(2048) {} + Using input As ZipInputStream = New ZipInputStream(inputFileName) + Dim e As ZipEntry + Do While (Not e = input.GetNextEntry Is Nothing) + If Not e.IsDirectory Then + Using output As FileStream = File.Open(Path.Combine(extractDir, e.FileName), _ + FileMode.Create, FileAccess.ReadWrite) + Dim n As Integer + Do While (n = input.Read(buffer, 0, buffer.Length) > 0) + output.Write(buffer, 0, n) + Loop + End Using + End If + Loop + End Using + End Sub + + + + + + Create a ZipInputStream, explicitly specifying whether to + keep the underlying stream open. + + + + See the documentation for the ZipInputStream(Stream) + constructor for a discussion of the class, and an example of how to use the class. + + + + The stream to read from. It must be readable. + + + + true if the application would like the stream + to remain open after the ZipInputStream has been closed. + + + + Provides a string representation of the instance. + + + This can be useful for debugging purposes. + + + a string representation of the instance. + + + + The text encoding to use when reading entries into the zip archive, for + those entries whose filenames or comments cannot be encoded with the + default (IBM437) encoding. + + + + + In its + zip specification, PKWare describes two options for encoding + filenames and comments: using IBM437 or UTF-8. But, some archiving tools + or libraries do not follow the specification, and instead encode + characters using the system default code page. For example, WinRAR when + run on a machine in Shanghai may encode filenames with the Big-5 Chinese + (950) code page. This behavior is contrary to the Zip specification, but + it occurs anyway. + + + + When using DotNetZip to read zip archives that use something other than + UTF-8 or IBM437, set this property to specify the code page to use when + reading encoded filenames and comments for each ZipEntry in the zip + file. + + + + This property is "provisional". When the entry in the zip archive is not + explicitly marked as using UTF-8, then IBM437 is used to decode filenames + and comments. If a loss of data would result from using IBM436 - + specifically when encoding and decoding is not reflexive - the codepage + specified here is used. It is possible, therefore, to have a given entry + with a Comment encoded in IBM437 and a FileName encoded with + the specified "provisional" codepage. + + + + When a zip file uses an arbitrary, non-UTF8 code page for encoding, there + is no standard way for the reader application - whether DotNetZip, WinZip, + WinRar, or something else - to know which codepage has been used for the + entries. Readers of zip files are not able to inspect the zip file and + determine the codepage that was used for the entries contained within it. + It is left to the application or user to determine the necessary codepage + when reading zip files encoded this way. If you use an incorrect codepage + when reading a zipfile, you will get entries with filenames that are + incorrect, and the incorrect filenames may even contain characters that + are not legal for use within filenames in Windows. Extracting entries with + illegal characters in the filenames will lead to exceptions. It's too bad, + but this is just the way things are with code pages in zip files. Caveat + Emptor. + + + + + + + Size of the work buffer to use for the ZLIB codec during decompression. + + + + Setting this affects the performance and memory efficiency of compression + and decompression. For larger files, setting this to a larger size may + improve performance, but the exact numbers vary depending on available + memory, and a bunch of other variables. I don't have good firm + recommendations on how to set it. You'll have to test it yourself. Or + just leave it alone and accept the default. + + + + + Sets the password to be used on the ZipInputStream instance. + + + + + + When reading a zip archive, this password is used to read and decrypt the + entries that are encrypted within the zip file. When entries within a zip + file use different passwords, set the appropriate password for the entry + before the first call to Read() for each entry. + + + + When reading an entry that is not encrypted, the value of this property is + ignored. + + + + + + + This example uses the ZipInputStream to read and extract entries from a + zip file, using a potentially different password for each entry. + + + byte[] buffer= new byte[2048]; + int n; + using (var raw = File.Open(_inputFileName, FileMode.Open, FileAccess.Read )) + { + using (var input= new ZipInputStream(raw)) + { + ZipEntry e; + while (( e = input.GetNextEntry()) != null) + { + input.Password = PasswordForEntry(e.FileName); + if (e.IsDirectory) continue; + string outputPath = Path.Combine(_extractDir, e.FileName); + using (var output = File.Open(outputPath, FileMode.Create, FileAccess.ReadWrite)) + { + while ((n= input.Read(buffer,0,buffer.Length)) > 0) + { + output.Write(buffer,0,n); + } + } + } + } + } + + + + + + + Read the data from the stream into the buffer. + + + + + The data for the zipentry will be decrypted and uncompressed, as + necessary, before being copied into the buffer. + + + + You must set the property before calling + Read() the first time for an encrypted entry. To determine if an + entry is encrypted and requires a password, check the ZipEntry.Encryption property. + + + + The buffer to hold the data read from the stream. + the offset within the buffer to copy the first byte read. + the number of bytes to read. + the number of bytes read, after decryption and decompression. + + + + Read the next entry from the zip file. + + + + + Call this method just before calling , + to position the pointer in the zip file to the next entry that can be + read. Subsequent calls to Read(), will decrypt and decompress the + data in the zip file, until Read() returns 0. + + + + Each time you call GetNextEntry(), the pointer in the wrapped + stream is moved to the next entry in the zip file. If you call , and thus re-position the pointer within + the file, you will need to call GetNextEntry() again, to insure + that the file pointer is positioned at the beginning of a zip entry. + + + + This method returns the ZipEntry. Using a stream approach, you will + read the raw bytes for an entry in a zip file via calls to Read(). + Alternatively, you can extract an entry into a file, or a stream, by + calling , or one of its siblings. + + + + + + The ZipEntry read. Returns null (or Nothing in VB) if there are no more + entries in the zip file. + + + + + + Dispose the stream. + + + + + This method disposes the ZipInputStream. It may also close the + underlying stream, depending on which constructor was used. + + + + Typically the application will call Dispose() implicitly, via + a using statement in C#, or a Using statement in VB. + + + + Application code won't call this code directly. This method may + be invoked in two distinct scenarios. If disposing == true, the + method has been called directly or indirectly by a user's code, + for example via the public Dispose() method. In this case, both + managed and unmanaged resources can be referenced and disposed. + If disposing == false, the method has been called by the runtime + from inside the object finalizer and this method should not + reference other objects; in that case only unmanaged resources + must be referenced or disposed. + + + + + true if the Dispose method was invoked by user code. + + + + + Always returns true. + + + + + Returns the value of CanSeek for the underlying (wrapped) stream. + + + + + Always returns false. + + + + + Returns the length of the underlying stream. + + + + + Gets or sets the position of the underlying stream. + + + Setting the position is equivalent to calling Seek(value, SeekOrigin.Begin). + + + + + This is a no-op. + + + + + This method always throws a NotSupportedException. + + ignored + ignored + ignored + + + + This method seeks in the underlying stream. + + + + + Call this method if you want to seek around within the zip file for random access. + + + + Applications can intermix calls to Seek() with calls to . After a call to Seek(), + GetNextEntry() will get the next ZipEntry that falls after + the current position in the input stream. You're on your own for finding + out just where to seek in the stream, to get to the various entries. + + + + + the offset point to seek to + the reference point from which to seek + The new position + + + + This method always throws a NotSupportedException. + + ignored + + + + Provides a stream metaphor for generating zip files. + + + + + This class writes zip files, as defined in the specification + for zip files described by PKWare. The compression for this + implementation is provided by a managed-code version of Zlib, included with + DotNetZip in the classes in the Ionic.Zlib namespace. + + + + This class provides an alternative programming model to the one enabled by the + class. Use this when creating zip files, as an + alternative to the class, when you would like to use a + Stream type to write the zip file. + + + + Both the ZipOutputStream class and the ZipFile class can be used + to create zip files. Both of them support many of the common zip features, + including Unicode, different compression levels, and ZIP64. They provide + very similar performance when creating zip files. + + + + The ZipFile class is generally easier to use than + ZipOutputStream and should be considered a higher-level interface. For + example, when creating a zip file via calls to the PutNextEntry() and + Write() methods on the ZipOutputStream class, the caller is + responsible for opening the file, reading the bytes from the file, writing + those bytes into the ZipOutputStream, setting the attributes on the + ZipEntry, and setting the created, last modified, and last accessed + timestamps on the zip entry. All of these things are done automatically by a + call to ZipFile.AddFile(). + For this reason, the ZipOutputStream is generally recommended for use + only when your application emits arbitrary data, not necessarily data from a + filesystem file, directly into a zip file, and does so using a Stream + metaphor. + + + + Aside from the differences in programming model, there are other + differences in capability between the two classes. + + + + + ZipFile can be used to read and extract zip files, in addition to + creating zip files. ZipOutputStream cannot read zip files. If you want + to use a stream to read zip files, check out the class. + + + + ZipOutputStream does not support the creation of segmented or spanned + zip files. + + + + ZipOutputStream cannot produce a self-extracting archive. + + + + + Be aware that the ZipOutputStream class implements the interface. In order for + ZipOutputStream to produce a valid zip file, you use use it within + a using clause (Using in VB), or call the Dispose() method + explicitly. See the examples for how to employ a using clause. + + + + Also, a note regarding compression performance: On the desktop .NET + Framework, DotNetZip can use a multi-threaded compression implementation + that provides significant speed increases on large files, over 300k or so, + at the cost of increased memory use at runtime. (The output of the + compression is almost exactly the same size). But, the multi-threaded + approach incurs a performance hit on smaller files. There's no way for the + ZipOutputStream to know whether parallel compression will be beneficial, + because the ZipOutputStream does not know how much data you will write + through the stream. You may wish to set the property to zero, if you are compressing + large files through ZipOutputStream. This will cause parallel + compression to be used, always. + + + + + + Create a ZipOutputStream, wrapping an existing stream. + + + + + The class is generally easier to use when creating + zip files. The ZipOutputStream offers a different metaphor for creating a + zip file, based on the class. + + + + + + The stream to wrap. It must be writable. This stream will be closed at + the time the ZipOutputStream is closed. + + + + + This example shows how to create a zip file, using the + ZipOutputStream class. + + + private void Zipup() + { + if (filesToZip.Count == 0) + { + System.Console.WriteLine("Nothing to do."); + return; + } + + using (var raw = File.Open(_outputFileName, FileMode.Create, FileAccess.ReadWrite )) + { + using (var output= new ZipOutputStream(raw)) + { + output.Password = "VerySecret!"; + output.Encryption = EncryptionAlgorithm.WinZipAes256; + + foreach (string inputFileName in filesToZip) + { + System.Console.WriteLine("file: {0}", inputFileName); + + output.PutNextEntry(inputFileName); + using (var input = File.Open(inputFileName, FileMode.Open, FileAccess.Read, FileShare.Read | FileShare.Write )) + { + byte[] buffer= new byte[2048]; + int n; + while ((n= input.Read(buffer,0,buffer.Length)) > 0) + { + output.Write(buffer,0,n); + } + } + } + } + } + } + + + + Private Sub Zipup() + Dim outputFileName As String = "XmlData.zip" + Dim filesToZip As String() = Directory.GetFiles(".", "*.xml") + If (filesToZip.Length = 0) Then + Console.WriteLine("Nothing to do.") + Else + Using raw As FileStream = File.Open(outputFileName, FileMode.Create, FileAccess.ReadWrite) + Using output As ZipOutputStream = New ZipOutputStream(raw) + output.Password = "VerySecret!" + output.Encryption = EncryptionAlgorithm.WinZipAes256 + Dim inputFileName As String + For Each inputFileName In filesToZip + Console.WriteLine("file: {0}", inputFileName) + output.PutNextEntry(inputFileName) + Using input As FileStream = File.Open(inputFileName, FileMode.Open, FileAccess.Read, FileShare.ReadWrite) + Dim n As Integer + Dim buffer As Byte() = New Byte(2048) {} + Do While (n = input.Read(buffer, 0, buffer.Length) > 0) + output.Write(buffer, 0, n) + Loop + End Using + Next + End Using + End Using + End If + End Sub + + + + + + Create a ZipOutputStream that writes to a filesystem file. + + + + The class is generally easier to use when creating + zip files. The ZipOutputStream offers a different metaphor for creating a + zip file, based on the class. + + + + The name of the zip file to create. + + + + + This example shows how to create a zip file, using the + ZipOutputStream class. + + + private void Zipup() + { + if (filesToZip.Count == 0) + { + System.Console.WriteLine("Nothing to do."); + return; + } + + using (var output= new ZipOutputStream(outputFileName)) + { + output.Password = "VerySecret!"; + output.Encryption = EncryptionAlgorithm.WinZipAes256; + + foreach (string inputFileName in filesToZip) + { + System.Console.WriteLine("file: {0}", inputFileName); + + output.PutNextEntry(inputFileName); + using (var input = File.Open(inputFileName, FileMode.Open, FileAccess.Read, + FileShare.Read | FileShare.Write )) + { + byte[] buffer= new byte[2048]; + int n; + while ((n= input.Read(buffer,0,buffer.Length)) > 0) + { + output.Write(buffer,0,n); + } + } + } + } + } + + + + Private Sub Zipup() + Dim outputFileName As String = "XmlData.zip" + Dim filesToZip As String() = Directory.GetFiles(".", "*.xml") + If (filesToZip.Length = 0) Then + Console.WriteLine("Nothing to do.") + Else + Using output As ZipOutputStream = New ZipOutputStream(outputFileName) + output.Password = "VerySecret!" + output.Encryption = EncryptionAlgorithm.WinZipAes256 + Dim inputFileName As String + For Each inputFileName In filesToZip + Console.WriteLine("file: {0}", inputFileName) + output.PutNextEntry(inputFileName) + Using input As FileStream = File.Open(inputFileName, FileMode.Open, FileAccess.Read, FileShare.ReadWrite) + Dim n As Integer + Dim buffer As Byte() = New Byte(2048) {} + Do While (n = input.Read(buffer, 0, buffer.Length) > 0) + output.Write(buffer, 0, n) + Loop + End Using + Next + End Using + End If + End Sub + + + + + + Create a ZipOutputStream. + + + + See the documentation for the ZipOutputStream(Stream) + constructor for an example. + + + + The stream to wrap. It must be writable. + + + + true if the application would like the stream + to remain open after the ZipOutputStream has been closed. + + + + Provides a string representation of the instance. + + + This can be useful for debugging purposes. + + + a string representation of the instance. + + + + Sets the password to be used on the ZipOutputStream instance. + + + + + + When writing a zip archive, this password is applied to the entries, not + to the zip archive itself. It applies to any ZipEntry subsequently + written to the ZipOutputStream. + + + + Using a password does not encrypt or protect the "directory" of the + archive - the list of entries contained in the archive. If you set the + Password property, the password actually applies to individual + entries that are added to the archive, subsequent to the setting of this + property. The list of filenames in the archive that is eventually created + will appear in clear text, but the contents of the individual files are + encrypted. This is how Zip encryption works. + + + + If you set this property, and then add a set of entries to the archive via + calls to PutNextEntry, then each entry is encrypted with that + password. You may also want to change the password between adding + different entries. If you set the password, add an entry, then set the + password to null (Nothing in VB), and add another entry, the + first entry is encrypted and the second is not. + + + + When setting the Password, you may also want to explicitly set the property, to specify how to encrypt the entries added + to the ZipFile. If you set the Password to a non-null value and do not + set , then PKZip 2.0 ("Weak") encryption is used. + This encryption is relatively weak but is very interoperable. If + you set the password to a null value (Nothing in VB), + Encryption is reset to None. + + + + Special case: if you wrap a ZipOutputStream around a non-seekable stream, + and use encryption, and emit an entry of zero bytes, the Close() or + PutNextEntry() following the entry will throw an exception. + + + + + + + The Encryption to use for entries added to the ZipOutputStream. + + + + + The specified Encryption is applied to the entries subsequently + written to the ZipOutputStream instance. + + + + If you set this to something other than + EncryptionAlgorithm.None, you will also need to set the + to a non-null, non-empty value in + order to actually get encryption on the entry. + + + + + ZipOutputStream.Password + ZipEntry.Encryption + + + + Size of the work buffer to use for the ZLIB codec during compression. + + + + Setting this may affect performance. For larger files, setting this to a + larger size may improve performance, but I'm not sure. Sorry, I don't + currently have good recommendations on how to set it. You can test it if + you like. + + + + + The compression strategy to use for all entries. + + + + Set the Strategy used by the ZLIB-compatible compressor, when compressing + data for the entries in the zip archive. Different compression strategies + work better on different sorts of data. The strategy parameter can affect + the compression ratio and the speed of compression but not the correctness + of the compresssion. For more information see . + + + + + The type of timestamp attached to the ZipEntry. + + + + Set this in order to specify the kind of timestamp that should be emitted + into the zip file for each entry. + + + + + Sets the compression level to be used for entries subsequently added to + the zip archive. + + + + + Varying the compression level used on entries can affect the + size-vs-speed tradeoff when compression and decompressing data streams + or files. + + + + As with some other properties on the ZipOutputStream class, like , and , + setting this property on a ZipOutputStream + instance will cause the specified CompressionLevel to be used on all + items that are subsequently added to the + ZipOutputStream instance. + + + + If you do not set this property, the default compression level is used, + which normally gives a good balance of compression efficiency and + compression speed. In some tests, using BestCompression can + double the time it takes to compress, while delivering just a small + increase in compression efficiency. This behavior will vary with the + type of data you compress. If you are in doubt, just leave this setting + alone, and accept the default. + + + + + + The compression method used on each entry added to the ZipOutputStream. + + + + + A comment attached to the zip archive. + + + + + + The application sets this property to specify a comment to be embedded + into the generated zip archive. + + + + According to PKWARE's + zip specification, the comment is not encrypted, even if there is a + password set on the zip file. + + + + The specification does not describe how to indicate the encoding used + on a comment string. Many "compliant" zip tools and libraries use + IBM437 as the code page for comments; DotNetZip, too, follows that + practice. On the other hand, there are situations where you want a + Comment to be encoded with something else, for example using code page + 950 "Big-5 Chinese". To fill that need, DotNetZip will encode the + comment following the same procedure it follows for encoding + filenames: (a) if is + Never, it uses the default encoding (IBM437). (b) if is Always, it always uses the + alternate encoding (). (c) if is AsNecessary, it uses the + alternate encoding only if the default encoding is not sufficient for + encoding the comment - in other words if decoding the result does not + produce the original string. This decision is taken at the time of + the call to ZipFile.Save(). + + + + + + + Specify whether to use ZIP64 extensions when saving a zip archive. + + + + + The default value for the property is . is + safest, in the sense that you will not get an Exception if a + pre-ZIP64 limit is exceeded. + + + + You must set this property before calling Write(). + + + + + + + Indicates whether ZIP64 extensions were used when saving the zip archive. + + + + The value is defined only after the ZipOutputStream has been closed. + + + + + Whether the ZipOutputStream should use case-insensitive comparisons when + checking for uniqueness of zip entries. + + + + + Though the zip specification doesn't prohibit zipfiles with duplicate + entries, Sane zip files have no duplicates, and the DotNetZip library + cannot create zip files with duplicate entries. If an application attempts + to call with a name that duplicates one + already used within the archive, the library will throw an Exception. + + + This property allows the application to specify whether the + ZipOutputStream instance considers ordinal case when checking for + uniqueness of zip entries. + + + + + + Indicates whether to encode entry filenames and entry comments using + Unicode (UTF-8). + + + + + The + PKWare zip specification provides for encoding file names and file + comments in either the IBM437 code page, or in UTF-8. This flag selects + the encoding according to that specification. By default, this flag is + false, and filenames and comments are encoded into the zip file in the + IBM437 codepage. Setting this flag to true will specify that filenames + and comments that cannot be encoded with IBM437 will be encoded with + UTF-8. + + + + Zip files created with strict adherence to the PKWare specification with + respect to UTF-8 encoding can contain entries with filenames containing + any combination of Unicode characters, including the full range of + characters from Chinese, Latin, Hebrew, Greek, Cyrillic, and many other + alphabets. However, because at this time, the UTF-8 portion of the PKWare + specification is not broadly supported by other zip libraries and + utilities, such zip files may not be readable by your favorite zip tool or + archiver. In other words, interoperability will decrease if you set this + flag to true. + + + + In particular, Zip files created with strict adherence to the PKWare + specification with respect to UTF-8 encoding will not work well with + Explorer in Windows XP or Windows Vista, because Windows compressed + folders, as far as I know, do not support UTF-8 in zip files. Vista can + read the zip files, but shows the filenames incorrectly. Unpacking from + Windows Vista Explorer will result in filenames that have rubbish + characters in place of the high-order UTF-8 bytes. + + + + Also, zip files that use UTF-8 encoding will not work well with Java + applications that use the java.util.zip classes, as of v5.0 of the Java + runtime. The Java runtime does not correctly implement the PKWare + specification in this regard. + + + + As a result, we have the unfortunate situation that "correct" behavior by + the DotNetZip library with regard to Unicode encoding of filenames during + zip creation will result in zip files that are readable by strictly + compliant and current tools (for example the most recent release of the + commercial WinZip tool); but these zip files will not be readable by + various other tools or libraries, including Windows Explorer. + + + + The DotNetZip library can read and write zip files with UTF8-encoded + entries, according to the PKware spec. If you use DotNetZip for both + creating and reading the zip file, and you use UTF-8, there will be no + loss of information in the filenames. For example, using a self-extractor + created by this library will allow you to unpack files correctly with no + loss of information in the filenames. + + + + If you do not set this flag, it will remain false. If this flag is false, + the ZipOutputStream will encode all filenames and comments using + the IBM437 codepage. This can cause "loss of information" on some + filenames, but the resulting zipfile will be more interoperable with other + utilities. As an example of the loss of information, diacritics can be + lost. The o-tilde character will be down-coded to plain o. The c with a + cedilla (Unicode 0xE7) used in Portugese will be downcoded to a c. + Likewise, the O-stroke character (Unicode 248), used in Danish and + Norwegian, will be down-coded to plain o. Chinese characters cannot be + represented in codepage IBM437; when using the default encoding, Chinese + characters in filenames will be represented as ?. These are all examples + of "information loss". + + + + The loss of information associated to the use of the IBM437 encoding is + inconvenient, and can also lead to runtime errors. For example, using + IBM437, any sequence of 4 Chinese characters will be encoded as ????. If + your application creates a ZipOutputStream, does not set the + encoding, then adds two files, each with names of four Chinese characters + each, this will result in a duplicate filename exception. In the case + where you add a single file with a name containing four Chinese + characters, the zipfile will save properly, but extracting that file + later, with any zip tool, will result in an error, because the question + mark is not legal for use within filenames on Windows. These are just a + few examples of the problems associated to loss of information. + + + + This flag is independent of the encoding of the content within the entries + in the zip file. Think of the zip file as a container - it supports an + encoding. Within the container are other "containers" - the file entries + themselves. The encoding within those entries is independent of the + encoding of the zip archive container for those entries. + + + + Rather than specify the encoding in a binary fashion using this flag, an + application can specify an arbitrary encoding via the property. Setting the encoding + explicitly when creating zip archives will result in non-compliant zip + files that, curiously, are fairly interoperable. The challenge is, the + PKWare specification does not provide for a way to specify that an entry + in a zip archive uses a code page that is neither IBM437 nor UTF-8. + Therefore if you set the encoding explicitly when creating a zip archive, + you must take care upon reading the zip archive to use the same code page. + If you get it wrong, the behavior is undefined and may result in incorrect + filenames, exceptions, stomach upset, hair loss, and acne. + + + + + + + The text encoding to use when emitting entries into the zip archive, for + those entries whose filenames or comments cannot be encoded with the + default (IBM437) encoding. + + + + + In its + zip specification, PKWare describes two options for encoding + filenames and comments: using IBM437 or UTF-8. But, some archiving tools + or libraries do not follow the specification, and instead encode + characters using the system default code page. For example, WinRAR when + run on a machine in Shanghai may encode filenames with the Big-5 Chinese + (950) code page. This behavior is contrary to the Zip specification, but + it occurs anyway. + + + + When using DotNetZip to write zip archives that will be read by one of + these other archivers, set this property to specify the code page to use + when encoding the and for each ZipEntry in the zip file, for + values that cannot be encoded with the default codepage for zip files, + IBM437. This is why this property is "provisional". In all cases, IBM437 + is used where possible, in other words, where no loss of data would + result. It is possible, therefore, to have a given entry with a + Comment encoded in IBM437 and a FileName encoded with the + specified "provisional" codepage. + + + + Be aware that a zip file created after you've explicitly set the + ProvisionalAlternateEncoding property to a value other than + IBM437 may not be compliant to the PKWare specification, and may not be + readable by compliant archivers. On the other hand, many (most?) + archivers are non-compliant and can read zip files created in arbitrary + code pages. The trick is to use or specify the proper codepage when + reading the zip. + + + + When creating a zip archive using this library, it is possible to change + the value of ProvisionalAlternateEncoding between each entry you + add, and between adding entries and the call to Close(). Don't do + this. It will likely result in a zipfile that is not readable. For best + interoperability, either leave ProvisionalAlternateEncoding + alone, or specify it only once, before adding any entries to the + ZipOutputStream instance. There is one exception to this + recommendation, described later. + + + + When using an arbitrary, non-UTF8 code page for encoding, there is no + standard way for the creator application - whether DotNetZip, WinZip, + WinRar, or something else - to formally specify in the zip file which + codepage has been used for the entries. As a result, readers of zip files + are not able to inspect the zip file and determine the codepage that was + used for the entries contained within it. It is left to the application + or user to determine the necessary codepage when reading zip files encoded + this way. If you use an incorrect codepage when reading a zipfile, you + will get entries with filenames that are incorrect, and the incorrect + filenames may even contain characters that are not legal for use within + filenames in Windows. Extracting entries with illegal characters in the + filenames will lead to exceptions. It's too bad, but this is just the way + things are with code pages in zip files. Caveat Emptor. + + + + One possible approach for specifying the code page for a given zip file is + to describe the code page in a human-readable form in the Zip comment. For + example, the comment may read "Entries in this archive are encoded in the + Big5 code page". For maximum interoperability, the zip comment in this + case should be encoded in the default, IBM437 code page. In this case, + the zip comment is encoded using a different page than the filenames. To + do this, Specify ProvisionalAlternateEncoding to your desired + region-specific code page, once before adding any entries, and then set + the property and reset + ProvisionalAlternateEncoding to IBM437 before calling Close(). + + + + + + A Text Encoding to use when encoding the filenames and comments for + all the ZipEntry items, during a ZipFile.Save() operation. + + + + Whether the encoding specified here is used during the save depends + on . + + + + + + A flag that tells if and when this instance should apply + AlternateEncoding to encode the filenames and comments associated to + of ZipEntry objects contained within this instance. + + + + + The default text encoding used in zip archives. It is numeric 437, also + known as IBM437. + + + + + + The size threshold for an entry, above which a parallel deflate is used. + + + + + + DotNetZip will use multiple threads to compress any ZipEntry, when + the CompressionMethod is Deflate, and if the entry is + larger than the given size. Zero means "always use parallel + deflate", while -1 means "never use parallel deflate". + + + + If the entry size cannot be known before compression, as with any entry + added via a ZipOutputStream, then Parallel deflate will never be + performed, unless the value of this property is zero. + + + + A parallel deflate operations will speed up the compression of + large files, on computers with multiple CPUs or multiple CPU + cores. For files above 1mb, on a dual core or dual-cpu (2p) + machine, the time required to compress the file can be 70% of the + single-threaded deflate. For very large files on 4p machines the + compression can be done in 30% of the normal time. The downside + is that parallel deflate consumes extra memory during the deflate, + and the deflation is slightly less effective. + + + + Parallel deflate tends to not be as effective as single-threaded deflate + because the original data stream is split into multiple independent + buffers, each of which is compressed in parallel. But because they are + treated independently, there is no opportunity to share compression + dictionaries, and additional framing bytes must be added to the output + stream. For that reason, a deflated stream may be slightly larger when + compressed using parallel deflate, as compared to a traditional + single-threaded deflate. For files of about 512k, the increase over the + normal deflate is as much as 5% of the total compressed size. For larger + files, the difference can be as small as 0.1%. + + + + Multi-threaded compression does not give as much an advantage when using + Encryption. This is primarily because encryption tends to slow down + the entire pipeline. Also, multi-threaded compression gives less of an + advantage when using lower compression levels, for example . You may have to perform + some tests to determine the best approach for your situation. + + + + The default value for this property is -1, which means parallel + compression will not be performed unless you set it to zero. + + + + + + + The maximum number of buffer pairs to use when performing + parallel compression. + + + + + This property sets an upper limit on the number of memory + buffer pairs to create when performing parallel + compression. The implementation of the parallel + compression stream allocates multiple buffers to + facilitate parallel compression. As each buffer fills up, + the stream uses + ThreadPool.QueueUserWorkItem() to compress those + buffers in a background threadpool thread. After a buffer + is compressed, it is re-ordered and written to the output + stream. + + + + A higher number of buffer pairs enables a higher degree of + parallelism, which tends to increase the speed of compression on + multi-cpu computers. On the other hand, a higher number of buffer + pairs also implies a larger memory consumption, more active worker + threads, and a higher cpu utilization for any compression. This + property enables the application to limit its memory consumption and + CPU utilization behavior depending on requirements. + + + + For each compression "task" that occurs in parallel, there are 2 + buffers allocated: one for input and one for output. This property + sets a limit for the number of pairs. The total amount of storage + space allocated for buffering will then be (N*S*2), where N is the + number of buffer pairs, S is the size of each buffer (). By default, DotNetZip allocates 4 buffer + pairs per CPU core, so if your machine has 4 cores, and you retain + the default buffer size of 128k, then the + ParallelDeflateOutputStream will use 4 * 4 * 2 * 128kb of buffer + memory in total, or 4mb, in blocks of 128kb. If you then set this + property to 8, then the number will be 8 * 2 * 128kb of buffer + memory, or 2mb. + + + + CPU utilization will also go up with additional buffers, because a + larger number of buffer pairs allows a larger number of background + threads to compress in parallel. If you find that parallel + compression is consuming too much memory or CPU, you can adjust this + value downward. + + + + The default value is 16. Different values may deliver better or + worse results, depending on your priorities and the dynamic + performance characteristics of your storage and compute resources. + + + + This property is not the number of buffer pairs to use; it is an + upper limit. An illustration: Suppose you have an application that + uses the default value of this property (which is 16), and it runs + on a machine with 2 CPU cores. In that case, DotNetZip will allocate + 4 buffer pairs per CPU core, for a total of 8 pairs. The upper + limit specified by this property has no effect. + + + + The application can set this value at any time, but it is + effective only if set before calling + ZipOutputStream.Write() for the first time. + + + + + + + + + Returns true if an entry by the given name has already been written + to the ZipOutputStream. + + + + The name of the entry to scan for. + + + + true if an entry by the given name has already been written. + + + + + Write the data from the buffer to the stream. + + + + As the application writes data into this stream, the data may be + compressed and encrypted before being written out to the underlying + stream, depending on the settings of the + and the properties. + + + The buffer holding data to write to the stream. + the offset within that data array to find the first byte to write. + the number of bytes to write. + + + + Specify the name of the next entry that will be written to the zip file. + + + + + Call this method just before calling , to + specify the name of the entry that the next set of bytes written to + the ZipOutputStream belongs to. All subsequent calls to Write, + until the next call to PutNextEntry, + will be inserted into the named entry in the zip file. + + + + If the used in PutNextEntry() ends in + a slash, then the entry added is marked as a directory. Because directory + entries do not contain data, a call to Write(), before an + intervening additional call to PutNextEntry(), will throw an + exception. + + + + If you don't call Write() between two calls to + PutNextEntry(), the first entry is inserted into the zip file as a + file of zero size. This may be what you want. + + + + Because PutNextEntry() closes out the prior entry, if any, this + method may throw if there is a problem with the prior entry. + + + + This method returns the ZipEntry. You can modify public properties + on the ZipEntry, such as , , and so on, until the first call to + ZipOutputStream.Write(), or until the next call to + PutNextEntry(). If you modify the ZipEntry after + having called Write(), you may get a runtime exception, or you may + silently get an invalid zip archive. + + + + + + + This example shows how to create a zip file, using the + ZipOutputStream class. + + + private void Zipup() + { + using (FileStream fs raw = File.Open(_outputFileName, FileMode.Create, FileAccess.ReadWrite )) + { + using (var output= new ZipOutputStream(fs)) + { + output.Password = "VerySecret!"; + output.Encryption = EncryptionAlgorithm.WinZipAes256; + output.PutNextEntry("entry1.txt"); + byte[] buffer= System.Text.Encoding.ASCII.GetBytes("This is the content for entry #1."); + output.Write(buffer,0,buffer.Length); + output.PutNextEntry("entry2.txt"); // this will be zero length + output.PutNextEntry("entry3.txt"); + buffer= System.Text.Encoding.ASCII.GetBytes("This is the content for entry #3."); + output.Write(buffer,0,buffer.Length); + } + } + } + + + + + The name of the entry to be added, including any path to be used + within the zip file. + + + + The ZipEntry created. + + + + + + Dispose the stream + + + + + This method writes the Zip Central directory, then closes the stream. The + application must call Dispose() (or Close) in order to produce a valid zip file. + + + + Typically the application will call Dispose() implicitly, via a using + statement in C#, or a Using statement in VB. + + + + + set this to true, always. + + + + Always returns false. + + + + + Always returns false. + + + + + Always returns true. + + + + + Always returns a NotSupportedException. + + + + + Setting this property always returns a NotSupportedException. Getting it + returns the value of the Position on the underlying stream. + + + + + This is a no-op. + + + + + This method always throws a NotSupportedException. + + ignored + ignored + ignored + nothing + + + + This method always throws a NotSupportedException. + + ignored + ignored + nothing + + + + This method always throws a NotSupportedException. + + ignored + + + + Sort-of like a factory method, ForUpdate is used only when + the application needs to update the zip entry metadata for + a segmented zip file, when the starting segment is earlier + than the ending segment, for a particular entry. + + + + The update is always contiguous, never rolls over. As a + result, this method doesn't need to return a ZSS; it can + simply return a FileStream. That's why it's "sort of" + like a Factory method. + + + Caller must Close/Dispose the stream object returned by + this method. + + + + + + Name of the filesystem file corresponding to the current segment. + + + + The name is not always the name currently being used in the + filesystem. When rwMode is RwMode.Write, the filesystem file has a + temporary name until the stream is closed or until the next segment is + started. + + + + + + Read from the stream + + the buffer to read + the offset at which to start + the number of bytes to read + the number of bytes actually read + + + + Write to the stream. + + the buffer from which to write + the offset at which to start writing + the number of bytes to write + + + + Enumerates the options for a logical conjunction. This enum is intended for use + internally by the FileSelector class. + + + + + FileSelector encapsulates logic that selects files from a source - a zip file + or the filesystem - based on a set of criteria. This class is used internally + by the DotNetZip library, in particular for the AddSelectedFiles() methods. + This class can also be used independently of the zip capability in DotNetZip. + + + + + + The FileSelector class is used internally by the ZipFile class for selecting + files for inclusion into the ZipFile, when the method, or one of + its overloads, is called. It's also used for the methods. Typically, an + application that creates or manipulates Zip archives will not directly + interact with the FileSelector class. + + + + Some applications may wish to use the FileSelector class directly, to + select files from disk volumes based on a set of criteria, without creating or + querying Zip archives. The file selection criteria include: a pattern to + match the filename; the last modified, created, or last accessed time of the + file; the size of the file; and the attributes of the file. + + + + Consult the documentation for + for more information on specifying the selection criteria. + + + + + + + Constructor that allows the caller to specify file selection criteria. + + + + + This constructor allows the caller to specify a set of criteria for + selection of files. + + + + See for a description of + the syntax of the selectionCriteria string. + + + + By default the FileSelector will traverse NTFS Reparse Points. To + change this, use FileSelector(String, bool). + + + + The criteria for file selection. + + + + Constructor that allows the caller to specify file selection criteria. + + + + + This constructor allows the caller to specify a set of criteria for + selection of files. + + + + See for a description of + the syntax of the selectionCriteria string. + + + + The criteria for file selection. + + whether to traverse NTFS reparse points (junctions). + + + + + The string specifying which files to include when retrieving. + + + + + Specify the criteria in statements of 3 elements: a noun, an operator, + and a value. Consider the string "name != *.doc" . The noun is + "name". The operator is "!=", implying "Not Equal". The value is + "*.doc". That criterion, in English, says "all files with a name that + does not end in the .doc extension." + + + + Supported nouns include "name" (or "filename") for the filename; + "atime", "mtime", and "ctime" for last access time, last modfied time, + and created time of the file, respectively; "attributes" (or "attrs") + for the file attributes; "size" (or "length") for the file length + (uncompressed); and "type" for the type of object, either a file or a + directory. The "attributes", "type", and "name" nouns all support = + and != as operators. The "size", "atime", "mtime", and "ctime" nouns + support = and !=, and >, >=, <, <= as well. The times are + taken to be expressed in local time. + + + + Specify values for the file attributes as a string with one or more of + the characters H,R,S,A,I,L in any order, implying file attributes of + Hidden, ReadOnly, System, Archive, NotContextIndexed, and ReparsePoint + (symbolic link) respectively. + + + + To specify a time, use YYYY-MM-DD-HH:mm:ss or YYYY/MM/DD-HH:mm:ss as + the format. If you omit the HH:mm:ss portion, it is assumed to be + 00:00:00 (midnight). + + + + The value for a size criterion is expressed in integer quantities of + bytes, kilobytes (use k or kb after the number), megabytes (m or mb), + or gigabytes (g or gb). + + + + The value for a name is a pattern to match against the filename, + potentially including wildcards. The pattern follows CMD.exe glob + rules: * implies one or more of any character, while ? implies one + character. If the name pattern contains any slashes, it is matched to + the entire filename, including the path; otherwise, it is matched + against only the filename without the path. This means a pattern of + "*\*.*" matches all files one directory level deep, while a pattern of + "*.*" matches all files in all directories. + + + + To specify a name pattern that includes spaces, use single quotes + around the pattern. A pattern of "'* *.*'" will match all files that + have spaces in the filename. The full criteria string for that would + be "name = '* *.*'" . + + + + The value for a type criterion is either F (implying a file) or D + (implying a directory). + + + + Some examples: + + + + + criteria + Files retrieved + + + + name != *.xls + any file with an extension that is not .xls + + + + + name = *.mp3 + any file with a .mp3 extension. + + + + + *.mp3 + (same as above) any file with a .mp3 extension. + + + + + attributes = A + all files whose attributes include the Archive bit. + + + + + attributes != H + all files whose attributes do not include the Hidden bit. + + + + + mtime > 2009-01-01 + all files with a last modified time after January 1st, 2009. + + + + + ctime > 2009/01/01-03:00:00 + all files with a created time after 3am (local time), + on January 1st, 2009. + + + + + size > 2gb + all files whose uncompressed size is greater than 2gb. + + + + + type = D + all directories in the filesystem. + + + + + + You can combine criteria with the conjunctions AND, OR, and XOR. Using + a string like "name = *.txt AND size >= 100k" for the + selectionCriteria retrieves entries whose names end in .txt, and whose + uncompressed size is greater than or equal to 100 kilobytes. + + + + For more complex combinations of criteria, you can use parenthesis to + group clauses in the boolean logic. Absent parenthesis, the + precedence of the criterion atoms is determined by order of + appearance. Unlike the C# language, the AND conjunction does not take + precendence over the logical OR. This is important only in strings + that contain 3 or more criterion atoms. In other words, "name = *.txt + and size > 1000 or attributes = H" implies "((name = *.txt AND size + > 1000) OR attributes = H)" while "attributes = H OR name = *.txt + and size > 1000" evaluates to "((attributes = H OR name = *.txt) + AND size > 1000)". When in doubt, use parenthesis. + + + + Using time properties requires some extra care. If you want to + retrieve all entries that were last updated on 2009 February 14, + specify "mtime >= 2009-02-14 AND mtime < 2009-02-15". Read this + to say: all files updated after 12:00am on February 14th, until + 12:00am on February 15th. You can use the same bracketing approach to + specify any time period - a year, a month, a week, and so on. + + + + The syntax allows one special case: if you provide a string with no + spaces, it is treated as a pattern to match for the filename. + Therefore a string like "*.xls" will be equivalent to specifying "name + = *.xls". This "shorthand" notation does not work with compound + criteria. + + + + There is no logic in this class that insures that the inclusion + criteria are internally consistent. For example, it's possible to + specify criteria that says the file must have a size of less than 100 + bytes, as well as a size that is greater than 1000 bytes. Obviously + no file will ever satisfy such criteria, but this class does not check + for or detect such inconsistencies. + + + + + + Thrown in the setter if the value has an invalid syntax. + + + + + Indicates whether searches will traverse NTFS reparse points, like Junctions. + + + + + Returns a string representation of the FileSelector object. + + The string representation of the boolean logic statement of the file + selection criteria for this instance. + + + + Returns the names of the files in the specified directory + that fit the selection criteria specified in the FileSelector. + + + + This is equivalent to calling + with recurseDirectories = false. + + + + The name of the directory over which to apply the FileSelector + criteria. + + + + A collection of strings containing fully-qualified pathnames of files + that match the criteria specified in the FileSelector instance. + + + + + Returns the names of the files in the specified directory that fit the + selection criteria specified in the FileSelector, optionally recursing + through subdirectories. + + + + This method applies the file selection criteria contained in the + FileSelector to the files contained in the given directory, and + returns the names of files that conform to the criteria. + + + + The name of the directory over which to apply the FileSelector + criteria. + + + + Whether to recurse through subdirectories when applying the file + selection criteria. + + + + A collection of strings containing fully-qualified pathnames of files + that match the criteria specified in the FileSelector instance. + + + + + Retrieve the ZipEntry items in the ZipFile that conform to the specified criteria. + + + + + This method applies the criteria set in the FileSelector instance (as described in + the ) to the specified ZipFile. Using this + method, for example, you can retrieve all entries from the given ZipFile that + have filenames ending in .txt. + + + + Normally, applications would not call this method directly. This method is used + by the ZipFile class. + + + + Using the appropriate SelectionCriteria, you can retrieve entries based on size, + time, and attributes. See for a + description of the syntax of the SelectionCriteria string. + + + + + The ZipFile from which to retrieve entries. + + a collection of ZipEntry objects that conform to the criteria. + + + + Retrieve the ZipEntry items in the ZipFile that conform to the specified criteria. + + + + + This method applies the criteria set in the FileSelector instance (as described in + the ) to the specified ZipFile. Using this + method, for example, you can retrieve all entries from the given ZipFile that + have filenames ending in .txt. + + + + Normally, applications would not call this method directly. This method is used + by the ZipFile class. + + + + This overload allows the selection of ZipEntry instances from the ZipFile to be restricted + to entries contained within a particular directory in the ZipFile. + + + + Using the appropriate SelectionCriteria, you can retrieve entries based on size, + time, and attributes. See for a + description of the syntax of the SelectionCriteria string. + + + + + The ZipFile from which to retrieve entries. + + + the directory in the archive from which to select entries. If null, then + all directories in the archive are used. + + + a collection of ZipEntry objects that conform to the criteria. + + + + Summary description for EnumUtil. + + + + + Returns the value of the DescriptionAttribute if the specified Enum + value has one. If not, returns the ToString() representation of the + Enum value. + + The Enum to get the description for + + + + + Converts the string representation of the name or numeric value of one + or more enumerated constants to an equivalent enumerated object. + Note: use the DescriptionAttribute on enum values to enable this. + + The System.Type of the enumeration. + + A string containing the name or value to convert. + + + + + + Converts the string representation of the name or numeric value of one + or more enumerated constants to an equivalent enumerated object. A + parameter specified whether the operation is case-sensitive. Note: + use the DescriptionAttribute on enum values to enable this. + + The System.Type of the enumeration. + + A string containing the name or value to convert. + + + Whether the operation is case-sensitive or not. + + + + + Computes a CRC-32. The CRC-32 algorithm is parameterized - you + can set the polynomial and enable or disable bit + reversal. This can be used for GZIP, BZip2, or ZIP. + + + This type is used internally by DotNetZip; it is generally not used + directly by applications wishing to create, read, or manipulate zip + archive files. + + + + + Indicates the total number of bytes applied to the CRC. + + + + + Indicates the current CRC for all blocks slurped in. + + + + + Returns the CRC32 for the specified stream. + + The stream over which to calculate the CRC32 + the CRC32 calculation + + + + Returns the CRC32 for the specified stream, and writes the input into the + output stream. + + The stream over which to calculate the CRC32 + The stream into which to deflate the input + the CRC32 calculation + + + + Get the CRC32 for the given (word,byte) combo. This is a + computation defined by PKzip for PKZIP 2.0 (weak) encryption. + + The word to start with. + The byte to combine it with. + The CRC-ized result. + + + + Update the value for the running CRC32 using the given block of bytes. + This is useful when using the CRC32() class in a Stream. + + block of bytes to slurp + starting point in the block + how many bytes within the block to slurp + + + + Process one byte in the CRC. + + the byte to include into the CRC . + + + + Process a run of N identical bytes into the CRC. + + + + This method serves as an optimization for updating the CRC when a + run of identical bytes is found. Rather than passing in a buffer of + length n, containing all identical bytes b, this method accepts the + byte value and the length of the (virtual) buffer - the length of + the run. + + + the byte to include into the CRC. + the number of times that byte should be repeated. + + + + Combines the given CRC32 value with the current running total. + + + This is useful when using a divide-and-conquer approach to + calculating a CRC. Multiple threads can each calculate a + CRC32 on a segment of the data, and then combine the + individual CRC32 values at the end. + + the crc value to be combined with this one + the length of data the CRC value was calculated on + + + + Create an instance of the CRC32 class using the default settings: no + bit reversal, and a polynomial of 0xEDB88320. + + + + + Create an instance of the CRC32 class, specifying whether to reverse + data bits or not. + + + specify true if the instance should reverse data bits. + + + + In the CRC-32 used by BZip2, the bits are reversed. Therefore if you + want a CRC32 with compatibility with BZip2, you should pass true + here. In the CRC-32 used by GZIP and PKZIP, the bits are not + reversed; Therefore if you want a CRC32 with compatibility with + those, you should pass false. + + + + + + Create an instance of the CRC32 class, specifying the polynomial and + whether to reverse data bits or not. + + + The polynomial to use for the CRC, expressed in the reversed (LSB) + format: the highest ordered bit in the polynomial value is the + coefficient of the 0th power; the second-highest order bit is the + coefficient of the 1 power, and so on. Expressed this way, the + polynomial for the CRC-32C used in IEEE 802.3, is 0xEDB88320. + + + specify true if the instance should reverse data bits. + + + + + In the CRC-32 used by BZip2, the bits are reversed. Therefore if you + want a CRC32 with compatibility with BZip2, you should pass true + here for the reverseBits parameter. In the CRC-32 used by + GZIP and PKZIP, the bits are not reversed; Therefore if you want a + CRC32 with compatibility with those, you should pass false for the + reverseBits parameter. + + + + + + Reset the CRC-32 class - clear the CRC "remainder register." + + + + Use this when employing a single instance of this class to compute + multiple, distinct CRCs on multiple, distinct data blocks. + + + + + + A Stream that calculates a CRC32 (a checksum) on all bytes read, + or on all bytes written. + + + + + This class can be used to verify the CRC of a ZipEntry when + reading from a stream, or to calculate a CRC when writing to a + stream. The stream should be used to either read, or write, but + not both. If you intermix reads and writes, the results are not + defined. + + + + This class is intended primarily for use internally by the + DotNetZip library. + + + + + + The default constructor. + + + + Instances returned from this constructor will leave the underlying + stream open upon Close(). The stream uses the default CRC32 + algorithm, which implies a polynomial of 0xEDB88320. + + + The underlying stream + + + + The constructor allows the caller to specify how to handle the + underlying stream at close. + + + + The stream uses the default CRC32 algorithm, which implies a + polynomial of 0xEDB88320. + + + The underlying stream + true to leave the underlying stream + open upon close of the CrcCalculatorStream; false otherwise. + + + + A constructor allowing the specification of the length of the stream + to read. + + + + The stream uses the default CRC32 algorithm, which implies a + polynomial of 0xEDB88320. + + + Instances returned from this constructor will leave the underlying + stream open upon Close(). + + + The underlying stream + The length of the stream to slurp + + + + A constructor allowing the specification of the length of the stream + to read, as well as whether to keep the underlying stream open upon + Close(). + + + + The stream uses the default CRC32 algorithm, which implies a + polynomial of 0xEDB88320. + + + The underlying stream + The length of the stream to slurp + true to leave the underlying stream + open upon close of the CrcCalculatorStream; false otherwise. + + + + A constructor allowing the specification of the length of the stream + to read, as well as whether to keep the underlying stream open upon + Close(), and the CRC32 instance to use. + + + + The stream uses the specified CRC32 instance, which allows the + application to specify how the CRC gets calculated. + + + The underlying stream + The length of the stream to slurp + true to leave the underlying stream + open upon close of the CrcCalculatorStream; false otherwise. + the CRC32 instance to use to calculate the CRC32 + + + + Gets the total number of bytes run through the CRC32 calculator. + + + + This is either the total number of bytes read, or the total number of + bytes written, depending on the direction of this stream. + + + + + Provides the current CRC for all blocks slurped in. + + + + The running total of the CRC is kept as data is written or read + through the stream. read this property after all reads or writes to + get an accurate CRC for the entire stream. + + + + + + Indicates whether the underlying stream will be left open when the + CrcCalculatorStream is Closed. + + + + Set this at any point before calling . + + + + + + Read from the stream + + the buffer to read + the offset at which to start + the number of bytes to read + the number of bytes actually read + + + + Write to the stream. + + the buffer from which to write + the offset at which to start writing + the number of bytes to write + + + + Indicates whether the stream supports reading. + + + + + Indicates whether the stream supports seeking. + + + + Always returns false. + + + + + + Indicates whether the stream supports writing. + + + + + Flush the stream. + + + + + Returns the length of the underlying stream. + + + + + The getter for this property returns the total bytes read. + If you use the setter, it will throw + . + + + + + Seeking is not supported on this stream. This method always throws + + + N/A + N/A + N/A + + + + This method always throws + + + N/A + + + + Closes the stream. + + + + + A class for compressing and decompressing streams using the Deflate algorithm. + + + + + + The DeflateStream is a Decorator on a . It adds DEFLATE compression or decompression to any + stream. + + + + Using this stream, applications can compress or decompress data via stream + Read and Write operations. Either compresssion or decompression + can occur through either reading or writing. The compression format used is + DEFLATE, which is documented in IETF RFC 1951, "DEFLATE + Compressed Data Format Specification version 1.3.". + + + + This class is similar to , except that + ZlibStream adds the RFC + 1950 - ZLIB framing bytes to a compressed stream when compressing, or + expects the RFC1950 framing bytes when decompressing. The DeflateStream + does not. + + + + + + + + + + Create a DeflateStream using the specified CompressionMode. + + + + When mode is CompressionMode.Compress, the DeflateStream will use + the default compression level. The "captive" stream will be closed when + the DeflateStream is closed. + + + + This example uses a DeflateStream to compress data from a file, and writes + the compressed data to another file. + + using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) + { + using (var raw = System.IO.File.Create(fileToCompress + ".deflated")) + { + using (Stream compressor = new DeflateStream(raw, CompressionMode.Compress)) + { + byte[] buffer = new byte[WORKING_BUFFER_SIZE]; + int n; + while ((n= input.Read(buffer, 0, buffer.Length)) != 0) + { + compressor.Write(buffer, 0, n); + } + } + } + } + + + + Using input As Stream = File.OpenRead(fileToCompress) + Using raw As FileStream = File.Create(fileToCompress & ".deflated") + Using compressor As Stream = New DeflateStream(raw, CompressionMode.Compress) + Dim buffer As Byte() = New Byte(4096) {} + Dim n As Integer = -1 + Do While (n <> 0) + If (n > 0) Then + compressor.Write(buffer, 0, n) + End If + n = input.Read(buffer, 0, buffer.Length) + Loop + End Using + End Using + End Using + + + The stream which will be read or written. + Indicates whether the DeflateStream will compress or decompress. + + + + Create a DeflateStream using the specified CompressionMode and the specified CompressionLevel. + + + + + + When mode is CompressionMode.Decompress, the level parameter is + ignored. The "captive" stream will be closed when the DeflateStream is + closed. + + + + + + + This example uses a DeflateStream to compress data from a file, and writes + the compressed data to another file. + + + using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) + { + using (var raw = System.IO.File.Create(fileToCompress + ".deflated")) + { + using (Stream compressor = new DeflateStream(raw, + CompressionMode.Compress, + CompressionLevel.BestCompression)) + { + byte[] buffer = new byte[WORKING_BUFFER_SIZE]; + int n= -1; + while (n != 0) + { + if (n > 0) + compressor.Write(buffer, 0, n); + n= input.Read(buffer, 0, buffer.Length); + } + } + } + } + + + + Using input As Stream = File.OpenRead(fileToCompress) + Using raw As FileStream = File.Create(fileToCompress & ".deflated") + Using compressor As Stream = New DeflateStream(raw, CompressionMode.Compress, CompressionLevel.BestCompression) + Dim buffer As Byte() = New Byte(4096) {} + Dim n As Integer = -1 + Do While (n <> 0) + If (n > 0) Then + compressor.Write(buffer, 0, n) + End If + n = input.Read(buffer, 0, buffer.Length) + Loop + End Using + End Using + End Using + + + The stream to be read or written while deflating or inflating. + Indicates whether the DeflateStream will compress or decompress. + A tuning knob to trade speed for effectiveness. + + + + Create a DeflateStream using the specified + CompressionMode, and explicitly specify whether the + stream should be left open after Deflation or Inflation. + + + + + + This constructor allows the application to request that the captive stream + remain open after the deflation or inflation occurs. By default, after + Close() is called on the stream, the captive stream is also + closed. In some cases this is not desired, for example if the stream is a + memory stream that will be re-read after compression. Specify true for + the parameter to leave the stream open. + + + + The DeflateStream will use the default compression level. + + + + See the other overloads of this constructor for example code. + + + + + The stream which will be read or written. This is called the + "captive" stream in other places in this documentation. + + + + Indicates whether the DeflateStream will compress or decompress. + + + true if the application would like the stream to + remain open after inflation/deflation. + + + + Create a DeflateStream using the specified CompressionMode + and the specified CompressionLevel, and explicitly specify whether + the stream should be left open after Deflation or Inflation. + + + + + + When mode is CompressionMode.Decompress, the level parameter is ignored. + + + + This constructor allows the application to request that the captive stream + remain open after the deflation or inflation occurs. By default, after + Close() is called on the stream, the captive stream is also + closed. In some cases this is not desired, for example if the stream is a + that will be re-read after + compression. Specify true for the parameter + to leave the stream open. + + + + + + + This example shows how to use a DeflateStream to compress data from + a file, and store the compressed data into another file. + + + using (var output = System.IO.File.Create(fileToCompress + ".deflated")) + { + using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) + { + using (Stream compressor = new DeflateStream(output, CompressionMode.Compress, CompressionLevel.BestCompression, true)) + { + byte[] buffer = new byte[WORKING_BUFFER_SIZE]; + int n= -1; + while (n != 0) + { + if (n > 0) + compressor.Write(buffer, 0, n); + n= input.Read(buffer, 0, buffer.Length); + } + } + } + // can write additional data to the output stream here + } + + + + Using output As FileStream = File.Create(fileToCompress & ".deflated") + Using input As Stream = File.OpenRead(fileToCompress) + Using compressor As Stream = New DeflateStream(output, CompressionMode.Compress, CompressionLevel.BestCompression, True) + Dim buffer As Byte() = New Byte(4096) {} + Dim n As Integer = -1 + Do While (n <> 0) + If (n > 0) Then + compressor.Write(buffer, 0, n) + End If + n = input.Read(buffer, 0, buffer.Length) + Loop + End Using + End Using + ' can write additional data to the output stream here. + End Using + + + The stream which will be read or written. + Indicates whether the DeflateStream will compress or decompress. + true if the application would like the stream to remain open after inflation/deflation. + A tuning knob to trade speed for effectiveness. + + + + This property sets the flush behavior on the stream. + + See the ZLIB documentation for the meaning of the flush behavior. + + + + + The size of the working buffer for the compression codec. + + + + + The working buffer is used for all stream operations. The default size is + 1024 bytes. The minimum size is 128 bytes. You may get better performance + with a larger buffer. Then again, you might not. You would have to test + it. + + + + Set this before the first call to Read() or Write() on the + stream. If you try to set it afterwards, it will throw. + + + + + + The ZLIB strategy to be used during compression. + + + + By tweaking this parameter, you may be able to optimize the compression for + data with particular characteristics. + + + + Returns the total number of bytes input so far. + + + Returns the total number of bytes output so far. + + + + Dispose the stream. + + + + This may or may not result in a Close() call on the captive + stream. See the constructors that have a leaveOpen parameter + for more information. + + + Application code won't call this code directly. This method may be + invoked in two distinct scenarios. If disposing == true, the method + has been called directly or indirectly by a user's code, for example + via the public Dispose() method. In this case, both managed and + unmanaged resources can be referenced and disposed. If disposing == + false, the method has been called by the runtime from inside the + object finalizer and this method should not reference other objects; + in that case only unmanaged resources must be referenced or + disposed. + + + + true if the Dispose method was invoked by user code. + + + + + Indicates whether the stream can be read. + + + The return value depends on whether the captive stream supports reading. + + + + + Indicates whether the stream supports Seek operations. + + + Always returns false. + + + + + Indicates whether the stream can be written. + + + The return value depends on whether the captive stream supports writing. + + + + + Flush the stream. + + + + + Reading this property always throws a . + + + + + The position of the stream pointer. + + + + Setting this property always throws a . Reading will return the total bytes + written out, if used in writing, or the total bytes read in, if used in + reading. The count may refer to compressed bytes or uncompressed bytes, + depending on how you've used the stream. + + + + + Read data from the stream. + + + + + If you wish to use the DeflateStream to compress data while + reading, you can create a DeflateStream with + CompressionMode.Compress, providing an uncompressed data stream. + Then call Read() on that DeflateStream, and the data read will be + compressed as you read. If you wish to use the DeflateStream to + decompress data while reading, you can create a DeflateStream with + CompressionMode.Decompress, providing a readable compressed data + stream. Then call Read() on that DeflateStream, and the data read + will be decompressed as you read. + + + + A DeflateStream can be used for Read() or Write(), but not both. + + + + The buffer into which the read data should be placed. + the offset within that data array to put the first byte read. + the number of bytes to read. + the number of bytes actually read + + + + Calling this method always throws a . + + this is irrelevant, since it will always throw! + this is irrelevant, since it will always throw! + irrelevant! + + + + Calling this method always throws a . + + this is irrelevant, since it will always throw! + + + + Write data to the stream. + + + + + If you wish to use the DeflateStream to compress data while + writing, you can create a DeflateStream with + CompressionMode.Compress, and a writable output stream. Then call + Write() on that DeflateStream, providing uncompressed data + as input. The data sent to the output stream will be the compressed form + of the data written. If you wish to use the DeflateStream to + decompress data while writing, you can create a DeflateStream with + CompressionMode.Decompress, and a writable output stream. Then + call Write() on that stream, providing previously compressed + data. The data sent to the output stream will be the decompressed form of + the data written. + + + + A DeflateStream can be used for Read() or Write(), + but not both. + + + + + The buffer holding data to write to the stream. + the offset within that data array to find the first byte to write. + the number of bytes to write. + + + + Compress a string into a byte array using DEFLATE (RFC 1951). + + + + Uncompress it with . + + + DeflateStream.UncompressString(byte[]) + DeflateStream.CompressBuffer(byte[]) + GZipStream.CompressString(string) + ZlibStream.CompressString(string) + + + A string to compress. The string will first be encoded + using UTF8, then compressed. + + + The string in compressed form + + + + Compress a byte array into a new byte array using DEFLATE. + + + + Uncompress it with . + + + DeflateStream.CompressString(string) + DeflateStream.UncompressBuffer(byte[]) + GZipStream.CompressBuffer(byte[]) + ZlibStream.CompressBuffer(byte[]) + + + A buffer to compress. + + + The data in compressed form + + + + Uncompress a DEFLATE'd byte array into a single string. + + + DeflateStream.CompressString(String) + DeflateStream.UncompressBuffer(byte[]) + GZipStream.UncompressString(byte[]) + ZlibStream.UncompressString(byte[]) + + + A buffer containing DEFLATE-compressed data. + + + The uncompressed string + + + + Uncompress a DEFLATE'd byte array into a byte array. + + + DeflateStream.CompressBuffer(byte[]) + DeflateStream.UncompressString(byte[]) + GZipStream.UncompressBuffer(byte[]) + ZlibStream.UncompressBuffer(byte[]) + + + A buffer containing data that has been compressed with DEFLATE. + + + The data in uncompressed form + + + + A class for compressing and decompressing GZIP streams. + + + + + The GZipStream is a Decorator on a + . It adds GZIP compression or decompression to any + stream. + + + + Like the System.IO.Compression.GZipStream in the .NET Base Class Library, the + Ionic.Zlib.GZipStream can compress while writing, or decompress while + reading, but not vice versa. The compression method used is GZIP, which is + documented in IETF RFC + 1952, "GZIP file format specification version 4.3". + + + A GZipStream can be used to decompress data (through Read()) or + to compress data (through Write()), but not both. + + + + If you wish to use the GZipStream to compress data, you must wrap it + around a write-able stream. As you call Write() on the GZipStream, the + data will be compressed into the GZIP format. If you want to decompress data, + you must wrap the GZipStream around a readable stream that contains an + IETF RFC 1952-compliant stream. The data will be decompressed as you call + Read() on the GZipStream. + + + + Though the GZIP format allows data from multiple files to be concatenated + together, this stream handles only a single segment of GZIP format, typically + representing a single file. + + + + This class is similar to and . + ZlibStream handles RFC1950-compliant streams. + handles RFC1951-compliant streams. This class handles RFC1952-compliant streams. + + + + + + + + + + The comment on the GZIP stream. + + + + + The GZIP format allows for each file to optionally have an associated + comment stored with the file. The comment is encoded with the ISO-8859-1 + code page. To include a comment in a GZIP stream you create, set this + property before calling Write() for the first time on the + GZipStream. + + + + When using GZipStream to decompress, you can retrieve this property + after the first call to Read(). If no comment has been set in the + GZIP bytestream, the Comment property will return null + (Nothing in VB). + + + + + + The FileName for the GZIP stream. + + + + + + The GZIP format optionally allows each file to have an associated + filename. When compressing data (through Write()), set this + FileName before calling Write() the first time on the GZipStream. + The actual filename is encoded into the GZIP bytestream with the + ISO-8859-1 code page, according to RFC 1952. It is the application's + responsibility to insure that the FileName can be encoded and decoded + correctly with this code page. + + + + When decompressing (through Read()), you can retrieve this value + any time after the first Read(). In the case where there was no filename + encoded into the GZIP bytestream, the property will return null (Nothing + in VB). + + + + + + The last modified time for the GZIP stream. + + + + GZIP allows the storage of a last modified time with each GZIP entry. + When compressing data, you can set this before the first call to + Write(). When decompressing, you can retrieve this value any time + after the first call to Read(). + + + + + The CRC on the GZIP stream. + + + This is used for internal error checking. You probably don't need to look at this property. + + + + + Create a GZipStream using the specified CompressionMode. + + + + + When mode is CompressionMode.Compress, the GZipStream will use the + default compression level. + + + + As noted in the class documentation, the CompressionMode (Compress + or Decompress) also establishes the "direction" of the stream. A + GZipStream with CompressionMode.Compress works only through + Write(). A GZipStream with + CompressionMode.Decompress works only through Read(). + + + + + + This example shows how to use a GZipStream to compress data. + + using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) + { + using (var raw = System.IO.File.Create(outputFile)) + { + using (Stream compressor = new GZipStream(raw, CompressionMode.Compress)) + { + byte[] buffer = new byte[WORKING_BUFFER_SIZE]; + int n; + while ((n= input.Read(buffer, 0, buffer.Length)) != 0) + { + compressor.Write(buffer, 0, n); + } + } + } + } + + + Dim outputFile As String = (fileToCompress & ".compressed") + Using input As Stream = File.OpenRead(fileToCompress) + Using raw As FileStream = File.Create(outputFile) + Using compressor As Stream = New GZipStream(raw, CompressionMode.Compress) + Dim buffer As Byte() = New Byte(4096) {} + Dim n As Integer = -1 + Do While (n <> 0) + If (n > 0) Then + compressor.Write(buffer, 0, n) + End If + n = input.Read(buffer, 0, buffer.Length) + Loop + End Using + End Using + End Using + + + + + This example shows how to use a GZipStream to uncompress a file. + + private void GunZipFile(string filename) + { + if (!filename.EndsWith(".gz)) + throw new ArgumentException("filename"); + var DecompressedFile = filename.Substring(0,filename.Length-3); + byte[] working = new byte[WORKING_BUFFER_SIZE]; + int n= 1; + using (System.IO.Stream input = System.IO.File.OpenRead(filename)) + { + using (Stream decompressor= new Ionic.Zlib.GZipStream(input, CompressionMode.Decompress, true)) + { + using (var output = System.IO.File.Create(DecompressedFile)) + { + while (n !=0) + { + n= decompressor.Read(working, 0, working.Length); + if (n > 0) + { + output.Write(working, 0, n); + } + } + } + } + } + } + + + + Private Sub GunZipFile(ByVal filename as String) + If Not (filename.EndsWith(".gz)) Then + Throw New ArgumentException("filename") + End If + Dim DecompressedFile as String = filename.Substring(0,filename.Length-3) + Dim working(WORKING_BUFFER_SIZE) as Byte + Dim n As Integer = 1 + Using input As Stream = File.OpenRead(filename) + Using decompressor As Stream = new Ionic.Zlib.GZipStream(input, CompressionMode.Decompress, True) + Using output As Stream = File.Create(UncompressedFile) + Do + n= decompressor.Read(working, 0, working.Length) + If n > 0 Then + output.Write(working, 0, n) + End IF + Loop While (n > 0) + End Using + End Using + End Using + End Sub + + + + The stream which will be read or written. + Indicates whether the GZipStream will compress or decompress. + + + + Create a GZipStream using the specified CompressionMode and + the specified CompressionLevel. + + + + + The CompressionMode (Compress or Decompress) also establishes the + "direction" of the stream. A GZipStream with + CompressionMode.Compress works only through Write(). A + GZipStream with CompressionMode.Decompress works only + through Read(). + + + + + + + This example shows how to use a GZipStream to compress a file into a .gz file. + + + using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) + { + using (var raw = System.IO.File.Create(fileToCompress + ".gz")) + { + using (Stream compressor = new GZipStream(raw, + CompressionMode.Compress, + CompressionLevel.BestCompression)) + { + byte[] buffer = new byte[WORKING_BUFFER_SIZE]; + int n; + while ((n= input.Read(buffer, 0, buffer.Length)) != 0) + { + compressor.Write(buffer, 0, n); + } + } + } + } + + + + Using input As Stream = File.OpenRead(fileToCompress) + Using raw As FileStream = File.Create(fileToCompress & ".gz") + Using compressor As Stream = New GZipStream(raw, CompressionMode.Compress, CompressionLevel.BestCompression) + Dim buffer As Byte() = New Byte(4096) {} + Dim n As Integer = -1 + Do While (n <> 0) + If (n > 0) Then + compressor.Write(buffer, 0, n) + End If + n = input.Read(buffer, 0, buffer.Length) + Loop + End Using + End Using + End Using + + + The stream to be read or written while deflating or inflating. + Indicates whether the GZipStream will compress or decompress. + A tuning knob to trade speed for effectiveness. + + + + Create a GZipStream using the specified CompressionMode, and + explicitly specify whether the stream should be left open after Deflation + or Inflation. + + + + + This constructor allows the application to request that the captive stream + remain open after the deflation or inflation occurs. By default, after + Close() is called on the stream, the captive stream is also + closed. In some cases this is not desired, for example if the stream is a + memory stream that will be re-read after compressed data has been written + to it. Specify true for the parameter to leave + the stream open. + + + + The (Compress or Decompress) also + establishes the "direction" of the stream. A GZipStream with + CompressionMode.Compress works only through Write(). A GZipStream + with CompressionMode.Decompress works only through Read(). + + + + The GZipStream will use the default compression level. If you want + to specify the compression level, see . + + + + See the other overloads of this constructor for example code. + + + + + + The stream which will be read or written. This is called the "captive" + stream in other places in this documentation. + + + Indicates whether the GZipStream will compress or decompress. + + + + true if the application would like the base stream to remain open after + inflation/deflation. + + + + + Create a GZipStream using the specified CompressionMode and the + specified CompressionLevel, and explicitly specify whether the + stream should be left open after Deflation or Inflation. + + + + + + This constructor allows the application to request that the captive stream + remain open after the deflation or inflation occurs. By default, after + Close() is called on the stream, the captive stream is also + closed. In some cases this is not desired, for example if the stream is a + memory stream that will be re-read after compressed data has been written + to it. Specify true for the parameter to + leave the stream open. + + + + As noted in the class documentation, the CompressionMode (Compress + or Decompress) also establishes the "direction" of the stream. A + GZipStream with CompressionMode.Compress works only through + Write(). A GZipStream with CompressionMode.Decompress works only + through Read(). + + + + + + This example shows how to use a GZipStream to compress data. + + using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) + { + using (var raw = System.IO.File.Create(outputFile)) + { + using (Stream compressor = new GZipStream(raw, CompressionMode.Compress, CompressionLevel.BestCompression, true)) + { + byte[] buffer = new byte[WORKING_BUFFER_SIZE]; + int n; + while ((n= input.Read(buffer, 0, buffer.Length)) != 0) + { + compressor.Write(buffer, 0, n); + } + } + } + } + + + Dim outputFile As String = (fileToCompress & ".compressed") + Using input As Stream = File.OpenRead(fileToCompress) + Using raw As FileStream = File.Create(outputFile) + Using compressor As Stream = New GZipStream(raw, CompressionMode.Compress, CompressionLevel.BestCompression, True) + Dim buffer As Byte() = New Byte(4096) {} + Dim n As Integer = -1 + Do While (n <> 0) + If (n > 0) Then + compressor.Write(buffer, 0, n) + End If + n = input.Read(buffer, 0, buffer.Length) + Loop + End Using + End Using + End Using + + + The stream which will be read or written. + Indicates whether the GZipStream will compress or decompress. + true if the application would like the stream to remain open after inflation/deflation. + A tuning knob to trade speed for effectiveness. + + + + This property sets the flush behavior on the stream. + + + + + The size of the working buffer for the compression codec. + + + + + The working buffer is used for all stream operations. The default size is + 1024 bytes. The minimum size is 128 bytes. You may get better performance + with a larger buffer. Then again, you might not. You would have to test + it. + + + + Set this before the first call to Read() or Write() on the + stream. If you try to set it afterwards, it will throw. + + + + + Returns the total number of bytes input so far. + + + Returns the total number of bytes output so far. + + + + Dispose the stream. + + + + This may or may not result in a Close() call on the captive + stream. See the constructors that have a leaveOpen parameter + for more information. + + + This method may be invoked in two distinct scenarios. If disposing + == true, the method has been called directly or indirectly by a + user's code, for example via the public Dispose() method. In this + case, both managed and unmanaged resources can be referenced and + disposed. If disposing == false, the method has been called by the + runtime from inside the object finalizer and this method should not + reference other objects; in that case only unmanaged resources must + be referenced or disposed. + + + + indicates whether the Dispose method was invoked by user code. + + + + + Indicates whether the stream can be read. + + + The return value depends on whether the captive stream supports reading. + + + + + Indicates whether the stream supports Seek operations. + + + Always returns false. + + + + + Indicates whether the stream can be written. + + + The return value depends on whether the captive stream supports writing. + + + + + Flush the stream. + + + + + Reading this property always throws a . + + + + + The position of the stream pointer. + + + + Setting this property always throws a . Reading will return the total bytes + written out, if used in writing, or the total bytes read in, if used in + reading. The count may refer to compressed bytes or uncompressed bytes, + depending on how you've used the stream. + + + + + Read and decompress data from the source stream. + + + + With a GZipStream, decompression is done through reading. + + + + + byte[] working = new byte[WORKING_BUFFER_SIZE]; + using (System.IO.Stream input = System.IO.File.OpenRead(_CompressedFile)) + { + using (Stream decompressor= new Ionic.Zlib.GZipStream(input, CompressionMode.Decompress, true)) + { + using (var output = System.IO.File.Create(_DecompressedFile)) + { + int n; + while ((n= decompressor.Read(working, 0, working.Length)) !=0) + { + output.Write(working, 0, n); + } + } + } + } + + + The buffer into which the decompressed data should be placed. + the offset within that data array to put the first byte read. + the number of bytes to read. + the number of bytes actually read + + + + Calling this method always throws a . + + irrelevant; it will always throw! + irrelevant; it will always throw! + irrelevant! + + + + Calling this method always throws a . + + irrelevant; this method will always throw! + + + + Write data to the stream. + + + + + If you wish to use the GZipStream to compress data while writing, + you can create a GZipStream with CompressionMode.Compress, and a + writable output stream. Then call Write() on that GZipStream, + providing uncompressed data as input. The data sent to the output stream + will be the compressed form of the data written. + + + + A GZipStream can be used for Read() or Write(), but not + both. Writing implies compression. Reading implies decompression. + + + + The buffer holding data to write to the stream. + the offset within that data array to find the first byte to write. + the number of bytes to write. + + + + Compress a string into a byte array using GZip. + + + + Uncompress it with . + + + + + + + A string to compress. The string will first be encoded + using UTF8, then compressed. + + + The string in compressed form + + + + Compress a byte array into a new byte array using GZip. + + + + Uncompress it with . + + + + + + + A buffer to compress. + + + The data in compressed form + + + + Uncompress a GZip'ed byte array into a single string. + + + + + + + A buffer containing GZIP-compressed data. + + + The uncompressed string + + + + Uncompress a GZip'ed byte array into a byte array. + + + + + + + A buffer containing data that has been compressed with GZip. + + + The data in uncompressed form + + + + A class for compressing streams using the + Deflate algorithm with multiple threads. + + + + + This class performs DEFLATE compression through writing. For + more information on the Deflate algorithm, see IETF RFC 1951, + "DEFLATE Compressed Data Format Specification version 1.3." + + + + This class is similar to , except + that this class is for compression only, and this implementation uses an + approach that employs multiple worker threads to perform the DEFLATE. On + a multi-cpu or multi-core computer, the performance of this class can be + significantly higher than the single-threaded DeflateStream, particularly + for larger streams. How large? Anything over 10mb is a good candidate + for parallel compression. + + + + The tradeoff is that this class uses more memory and more CPU than the + vanilla DeflateStream, and also is less efficient as a compressor. For + large files the size of the compressed data stream can be less than 1% + larger than the size of a compressed data stream from the vanialla + DeflateStream. For smaller files the difference can be larger. The + difference will also be larger if you set the BufferSize to be lower than + the default value. Your mileage may vary. Finally, for small files, the + ParallelDeflateOutputStream can be much slower than the vanilla + DeflateStream, because of the overhead associated to using the thread + pool. + + + + + + + + Create a ParallelDeflateOutputStream. + + + + + This stream compresses data written into it via the DEFLATE + algorithm (see RFC 1951), and writes out the compressed byte stream. + + + + The instance will use the default compression level, the default + buffer sizes and the default number of threads and buffers per + thread. + + + + This class is similar to , + except that this implementation uses an approach that employs + multiple worker threads to perform the DEFLATE. On a multi-cpu or + multi-core computer, the performance of this class can be + significantly higher than the single-threaded DeflateStream, + particularly for larger streams. How large? Anything over 10mb is + a good candidate for parallel compression. + + + + + + + This example shows how to use a ParallelDeflateOutputStream to compress + data. It reads a file, compresses it, and writes the compressed data to + a second, output file. + + + byte[] buffer = new byte[WORKING_BUFFER_SIZE]; + int n= -1; + String outputFile = fileToCompress + ".compressed"; + using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) + { + using (var raw = System.IO.File.Create(outputFile)) + { + using (Stream compressor = new ParallelDeflateOutputStream(raw)) + { + while ((n= input.Read(buffer, 0, buffer.Length)) != 0) + { + compressor.Write(buffer, 0, n); + } + } + } + } + + + Dim buffer As Byte() = New Byte(4096) {} + Dim n As Integer = -1 + Dim outputFile As String = (fileToCompress & ".compressed") + Using input As Stream = File.OpenRead(fileToCompress) + Using raw As FileStream = File.Create(outputFile) + Using compressor As Stream = New ParallelDeflateOutputStream(raw) + Do While (n <> 0) + If (n > 0) Then + compressor.Write(buffer, 0, n) + End If + n = input.Read(buffer, 0, buffer.Length) + Loop + End Using + End Using + End Using + + + The stream to which compressed data will be written. + + + + Create a ParallelDeflateOutputStream using the specified CompressionLevel. + + + See the + constructor for example code. + + The stream to which compressed data will be written. + A tuning knob to trade speed for effectiveness. + + + + Create a ParallelDeflateOutputStream and specify whether to leave the captive stream open + when the ParallelDeflateOutputStream is closed. + + + See the + constructor for example code. + + The stream to which compressed data will be written. + + true if the application would like the stream to remain open after inflation/deflation. + + + + + Create a ParallelDeflateOutputStream and specify whether to leave the captive stream open + when the ParallelDeflateOutputStream is closed. + + + See the + constructor for example code. + + The stream to which compressed data will be written. + A tuning knob to trade speed for effectiveness. + + true if the application would like the stream to remain open after inflation/deflation. + + + + + Create a ParallelDeflateOutputStream using the specified + CompressionLevel and CompressionStrategy, and specifying whether to + leave the captive stream open when the ParallelDeflateOutputStream is + closed. + + + See the + constructor for example code. + + The stream to which compressed data will be written. + A tuning knob to trade speed for effectiveness. + + By tweaking this parameter, you may be able to optimize the compression for + data with particular characteristics. + + + true if the application would like the stream to remain open after inflation/deflation. + + + + + The ZLIB strategy to be used during compression. + + + + + + The maximum number of buffer pairs to use. + + + + + This property sets an upper limit on the number of memory buffer + pairs to create. The implementation of this stream allocates + multiple buffers to facilitate parallel compression. As each buffer + fills up, this stream uses + ThreadPool.QueueUserWorkItem() + to compress those buffers in a background threadpool thread. After a + buffer is compressed, it is re-ordered and written to the output + stream. + + + + A higher number of buffer pairs enables a higher degree of + parallelism, which tends to increase the speed of compression on + multi-cpu computers. On the other hand, a higher number of buffer + pairs also implies a larger memory consumption, more active worker + threads, and a higher cpu utilization for any compression. This + property enables the application to limit its memory consumption and + CPU utilization behavior depending on requirements. + + + + For each compression "task" that occurs in parallel, there are 2 + buffers allocated: one for input and one for output. This property + sets a limit for the number of pairs. The total amount of storage + space allocated for buffering will then be (N*S*2), where N is the + number of buffer pairs, S is the size of each buffer (). By default, DotNetZip allocates 4 buffer + pairs per CPU core, so if your machine has 4 cores, and you retain + the default buffer size of 128k, then the + ParallelDeflateOutputStream will use 4 * 4 * 2 * 128kb of buffer + memory in total, or 4mb, in blocks of 128kb. If you then set this + property to 8, then the number will be 8 * 2 * 128kb of buffer + memory, or 2mb. + + + + CPU utilization will also go up with additional buffers, because a + larger number of buffer pairs allows a larger number of background + threads to compress in parallel. If you find that parallel + compression is consuming too much memory or CPU, you can adjust this + value downward. + + + + The default value is 16. Different values may deliver better or + worse results, depending on your priorities and the dynamic + performance characteristics of your storage and compute resources. + + + + This property is not the number of buffer pairs to use; it is an + upper limit. An illustration: Suppose you have an application that + uses the default value of this property (which is 16), and it runs + on a machine with 2 CPU cores. In that case, DotNetZip will allocate + 4 buffer pairs per CPU core, for a total of 8 pairs. The upper + limit specified by this property has no effect. + + + + The application can set this value at any time, but it is effective + only before the first call to Write(), which is when the buffers are + allocated. + + + + + + The size of the buffers used by the compressor threads. + + + + + The default buffer size is 128k. The application can set this value + at any time, but it is effective only before the first Write(). + + + + Larger buffer sizes implies larger memory consumption but allows + more efficient compression. Using smaller buffer sizes consumes less + memory but may result in less effective compression. For example, + using the default buffer size of 128k, the compression delivered is + within 1% of the compression delivered by the single-threaded . On the other hand, using a + BufferSize of 8k can result in a compressed data stream that is 5% + larger than that delivered by the single-threaded + DeflateStream. Excessively small buffer sizes can also cause + the speed of the ParallelDeflateOutputStream to drop, because of + larger thread scheduling overhead dealing with many many small + buffers. + + + + The total amount of storage space allocated for buffering will be + (N*S*2), where N is the number of buffer pairs, and S is the size of + each buffer (this property). There are 2 buffers used by the + compressor, one for input and one for output. By default, DotNetZip + allocates 4 buffer pairs per CPU core, so if your machine has 4 + cores, then the number of buffer pairs used will be 16. If you + accept the default value of this property, 128k, then the + ParallelDeflateOutputStream will use 16 * 2 * 128kb of buffer memory + in total, or 4mb, in blocks of 128kb. If you set this property to + 64kb, then the number will be 16 * 2 * 64kb of buffer memory, or + 2mb. + + + + + + + The CRC32 for the data that was written out, prior to compression. + + + This value is meaningful only after a call to Close(). + + + + + The total number of uncompressed bytes processed by the ParallelDeflateOutputStream. + + + This value is meaningful only after a call to Close(). + + + + + Write data to the stream. + + + + + + To use the ParallelDeflateOutputStream to compress data, create a + ParallelDeflateOutputStream with CompressionMode.Compress, passing a + writable output stream. Then call Write() on that + ParallelDeflateOutputStream, providing uncompressed data as input. The + data sent to the output stream will be the compressed form of the data + written. + + + + To decompress data, use the class. + + + + The buffer holding data to write to the stream. + the offset within that data array to find the first byte to write. + the number of bytes to write. + + + + Flush the stream. + + + + + Close the stream. + + + You must call Close on the stream to guarantee that all of the data written in has + been compressed, and the compressed data has been written out. + + + + Dispose the object + + + Because ParallelDeflateOutputStream is IDisposable, the + application must call this method when finished using the instance. + + + This method is generally called implicitly upon exit from + a using scope in C# (Using in VB). + + + + + The Dispose method + + indicates whether the Dispose method was invoked by user code. + + + + + Resets the stream for use with another stream. + + + Because the ParallelDeflateOutputStream is expensive to create, it + has been designed so that it can be recycled and re-used. You have + to call Close() on the stream first, then you can call Reset() on + it, to use it again on another stream. + + + + The new output stream for this era. + + + + + ParallelDeflateOutputStream deflater = null; + foreach (var inputFile in listOfFiles) + { + string outputFile = inputFile + ".compressed"; + using (System.IO.Stream input = System.IO.File.OpenRead(inputFile)) + { + using (var outStream = System.IO.File.Create(outputFile)) + { + if (deflater == null) + deflater = new ParallelDeflateOutputStream(outStream, + CompressionLevel.Best, + CompressionStrategy.Default, + true); + deflater.Reset(outStream); + + while ((n= input.Read(buffer, 0, buffer.Length)) != 0) + { + deflater.Write(buffer, 0, n); + } + } + } + } + + + + + + Indicates whether the stream supports Seek operations. + + + Always returns false. + + + + + Indicates whether the stream supports Read operations. + + + Always returns false. + + + + + Indicates whether the stream supports Write operations. + + + Returns true if the provided stream is writable. + + + + + Reading this property always throws a NotSupportedException. + + + + + Returns the current position of the output stream. + + + + Because the output gets written by a background thread, + the value may change asynchronously. Setting this + property always throws a NotSupportedException. + + + + + + This method always throws a NotSupportedException. + + + The buffer into which data would be read, IF THIS METHOD + ACTUALLY DID ANYTHING. + + + The offset within that data array at which to insert the + data that is read, IF THIS METHOD ACTUALLY DID + ANYTHING. + + + The number of bytes to write, IF THIS METHOD ACTUALLY DID + ANYTHING. + + nothing. + + + + This method always throws a NotSupportedException. + + + The offset to seek to.... + IF THIS METHOD ACTUALLY DID ANYTHING. + + + The reference specifying how to apply the offset.... IF + THIS METHOD ACTUALLY DID ANYTHING. + + nothing. It always throws. + + + + This method always throws a NotSupportedException. + + + The new value for the stream length.... IF + THIS METHOD ACTUALLY DID ANYTHING. + + + + + Map from a distance to a distance code. + + + No side effects. _dist_code[256] and _dist_code[257] are never used. + + + + + Describes how to flush the current deflate operation. + + + The different FlushType values are useful when using a Deflate in a streaming application. + + + + No flush at all. + + + Closes the current block, but doesn't flush it to + the output. Used internally only in hypothetical + scenarios. This was supposed to be removed by Zlib, but it is + still in use in some edge cases. + + + + + Use this during compression to specify that all pending output should be + flushed to the output buffer and the output should be aligned on a byte + boundary. You might use this in a streaming communication scenario, so that + the decompressor can get all input data available so far. When using this + with a ZlibCodec, AvailableBytesIn will be zero after the call if + enough output space has been provided before the call. Flushing will + degrade compression and so it should be used only when necessary. + + + + + Use this during compression to specify that all output should be flushed, as + with FlushType.Sync, but also, the compression state should be reset + so that decompression can restart from this point if previous compressed + data has been damaged or if random access is desired. Using + FlushType.Full too often can significantly degrade the compression. + + + + Signals the end of the compression/decompression stream. + + + + The compression level to be used when using a DeflateStream or ZlibStream with CompressionMode.Compress. + + + + + None means that the data will be simply stored, with no change at all. + If you are producing ZIPs for use on Mac OSX, be aware that archives produced with CompressionLevel.None + cannot be opened with the default zip reader. Use a different CompressionLevel. + + + + + Same as None. + + + + + The fastest but least effective compression. + + + + + A synonym for BestSpeed. + + + + + A little slower, but better, than level 1. + + + + + A little slower, but better, than level 2. + + + + + A little slower, but better, than level 3. + + + + + A little slower than level 4, but with better compression. + + + + + The default compression level, with a good balance of speed and compression efficiency. + + + + + A synonym for Default. + + + + + Pretty good compression! + + + + + Better compression than Level7! + + + + + The "best" compression, where best means greatest reduction in size of the input data stream. + This is also the slowest compression. + + + + + A synonym for BestCompression. + + + + + Describes options for how the compression algorithm is executed. Different strategies + work better on different sorts of data. The strategy parameter can affect the compression + ratio and the speed of compression but not the correctness of the compresssion. + + + + + The default strategy is probably the best for normal data. + + + + + The Filtered strategy is intended to be used most effectively with data produced by a + filter or predictor. By this definition, filtered data consists mostly of small + values with a somewhat random distribution. In this case, the compression algorithm + is tuned to compress them better. The effect of Filtered is to force more Huffman + coding and less string matching; it is a half-step between Default and HuffmanOnly. + + + + + Using HuffmanOnly will force the compressor to do Huffman encoding only, with no + string matching. + + + + + An enum to specify the direction of transcoding - whether to compress or decompress. + + + + + Used to specify that the stream should compress the data. + + + + + Used to specify that the stream should decompress the data. + + + + + A general purpose exception class for exceptions in the Zlib library. + + + + + The ZlibException class captures exception information generated + by the Zlib library. + + + + + This ctor collects a message attached to the exception. + + the message for the exception. + + + + Performs an unsigned bitwise right shift with the specified number + + Number to operate on + Ammount of bits to shift + The resulting number from the shift operation + + + + Reads a number of characters from the current source TextReader and writes + the data to the target array at the specified index. + + + The source TextReader to read from + Contains the array of characteres read from the source TextReader. + The starting index of the target array. + The maximum number of characters to read from the source TextReader. + + + The number of characters read. The number will be less than or equal to + count depending on the data available in the source TextReader. Returns -1 + if the end of the stream is reached. + + + + + Computes an Adler-32 checksum. + + + The Adler checksum is similar to a CRC checksum, but faster to compute, though less + reliable. It is used in producing RFC1950 compressed streams. The Adler checksum + is a required part of the "ZLIB" standard. Applications will almost never need to + use this class directly. + + + + + + + Calculates the Adler32 checksum. + + + + This is used within ZLIB. You probably don't need to use this directly. + + + + To compute an Adler32 checksum on a byte array: + + var adler = Adler.Adler32(0, null, 0, 0); + adler = Adler.Adler32(adler, buffer, index, length); + + + + + + Encoder and Decoder for ZLIB and DEFLATE (IETF RFC1950 and RFC1951). + + + + This class compresses and decompresses data according to the Deflate algorithm + and optionally, the ZLIB format, as documented in RFC 1950 - ZLIB and RFC 1951 - DEFLATE. + + + + + The buffer from which data is taken. + + + + + An index into the InputBuffer array, indicating where to start reading. + + + + + The number of bytes available in the InputBuffer, starting at NextIn. + + + Generally you should set this to InputBuffer.Length before the first Inflate() or Deflate() call. + The class will update this number as calls to Inflate/Deflate are made. + + + + + Total number of bytes read so far, through all calls to Inflate()/Deflate(). + + + + + Buffer to store output data. + + + + + An index into the OutputBuffer array, indicating where to start writing. + + + + + The number of bytes available in the OutputBuffer, starting at NextOut. + + + Generally you should set this to OutputBuffer.Length before the first Inflate() or Deflate() call. + The class will update this number as calls to Inflate/Deflate are made. + + + + + Total number of bytes written to the output so far, through all calls to Inflate()/Deflate(). + + + + + used for diagnostics, when something goes wrong! + + + + + The compression level to use in this codec. Useful only in compression mode. + + + + + The number of Window Bits to use. + + + This gauges the size of the sliding window, and hence the + compression effectiveness as well as memory consumption. It's best to just leave this + setting alone if you don't know what it is. The maximum value is 15 bits, which implies + a 32k window. + + + + + The compression strategy to use. + + + This is only effective in compression. The theory offered by ZLIB is that different + strategies could potentially produce significant differences in compression behavior + for different data sets. Unfortunately I don't have any good recommendations for how + to set it differently. When I tested changing the strategy I got minimally different + compression performance. It's best to leave this property alone if you don't have a + good feel for it. Or, you may want to produce a test harness that runs through the + different strategy options and evaluates them on different file types. If you do that, + let me know your results. + + + + + The Adler32 checksum on the data transferred through the codec so far. You probably don't need to look at this. + + + + + Create a ZlibCodec. + + + If you use this default constructor, you will later have to explicitly call + InitializeInflate() or InitializeDeflate() before using the ZlibCodec to compress + or decompress. + + + + + Create a ZlibCodec that either compresses or decompresses. + + + Indicates whether the codec should compress (deflate) or decompress (inflate). + + + + + Initialize the inflation state. + + + It is not necessary to call this before using the ZlibCodec to inflate data; + It is implicitly called when you call the constructor. + + Z_OK if everything goes well. + + + + Initialize the inflation state with an explicit flag to + govern the handling of RFC1950 header bytes. + + + + By default, the ZLIB header defined in RFC 1950 is expected. If + you want to read a zlib stream you should specify true for + expectRfc1950Header. If you have a deflate stream, you will want to specify + false. It is only necessary to invoke this initializer explicitly if you + want to specify false. + + + whether to expect an RFC1950 header byte + pair when reading the stream of data to be inflated. + + Z_OK if everything goes well. + + + + Initialize the ZlibCodec for inflation, with the specified number of window bits. + + The number of window bits to use. If you need to ask what that is, + then you shouldn't be calling this initializer. + Z_OK if all goes well. + + + + Initialize the inflation state with an explicit flag to govern the handling of + RFC1950 header bytes. + + + + If you want to read a zlib stream you should specify true for + expectRfc1950Header. In this case, the library will expect to find a ZLIB + header, as defined in RFC + 1950, in the compressed stream. If you will be reading a DEFLATE or + GZIP stream, which does not have such a header, you will want to specify + false. + + + whether to expect an RFC1950 header byte pair when reading + the stream of data to be inflated. + The number of window bits to use. If you need to ask what that is, + then you shouldn't be calling this initializer. + Z_OK if everything goes well. + + + + Inflate the data in the InputBuffer, placing the result in the OutputBuffer. + + + You must have set InputBuffer and OutputBuffer, NextIn and NextOut, and AvailableBytesIn and + AvailableBytesOut before calling this method. + + + + private void InflateBuffer() + { + int bufferSize = 1024; + byte[] buffer = new byte[bufferSize]; + ZlibCodec decompressor = new ZlibCodec(); + + Console.WriteLine("\n============================================"); + Console.WriteLine("Size of Buffer to Inflate: {0} bytes.", CompressedBytes.Length); + MemoryStream ms = new MemoryStream(DecompressedBytes); + + int rc = decompressor.InitializeInflate(); + + decompressor.InputBuffer = CompressedBytes; + decompressor.NextIn = 0; + decompressor.AvailableBytesIn = CompressedBytes.Length; + + decompressor.OutputBuffer = buffer; + + // pass 1: inflate + do + { + decompressor.NextOut = 0; + decompressor.AvailableBytesOut = buffer.Length; + rc = decompressor.Inflate(FlushType.None); + + if (rc != ZlibConstants.Z_OK && rc != ZlibConstants.Z_STREAM_END) + throw new Exception("inflating: " + decompressor.Message); + + ms.Write(decompressor.OutputBuffer, 0, buffer.Length - decompressor.AvailableBytesOut); + } + while (decompressor.AvailableBytesIn > 0 || decompressor.AvailableBytesOut == 0); + + // pass 2: finish and flush + do + { + decompressor.NextOut = 0; + decompressor.AvailableBytesOut = buffer.Length; + rc = decompressor.Inflate(FlushType.Finish); + + if (rc != ZlibConstants.Z_STREAM_END && rc != ZlibConstants.Z_OK) + throw new Exception("inflating: " + decompressor.Message); + + if (buffer.Length - decompressor.AvailableBytesOut > 0) + ms.Write(buffer, 0, buffer.Length - decompressor.AvailableBytesOut); + } + while (decompressor.AvailableBytesIn > 0 || decompressor.AvailableBytesOut == 0); + + decompressor.EndInflate(); + } + + + + The flush to use when inflating. + Z_OK if everything goes well. + + + + Ends an inflation session. + + + Call this after successively calling Inflate(). This will cause all buffers to be flushed. + After calling this you cannot call Inflate() without a intervening call to one of the + InitializeInflate() overloads. + + Z_OK if everything goes well. + + + + I don't know what this does! + + Z_OK if everything goes well. + + + + Initialize the ZlibCodec for deflation operation. + + + The codec will use the MAX window bits and the default level of compression. + + + + int bufferSize = 40000; + byte[] CompressedBytes = new byte[bufferSize]; + byte[] DecompressedBytes = new byte[bufferSize]; + + ZlibCodec compressor = new ZlibCodec(); + + compressor.InitializeDeflate(CompressionLevel.Default); + + compressor.InputBuffer = System.Text.ASCIIEncoding.ASCII.GetBytes(TextToCompress); + compressor.NextIn = 0; + compressor.AvailableBytesIn = compressor.InputBuffer.Length; + + compressor.OutputBuffer = CompressedBytes; + compressor.NextOut = 0; + compressor.AvailableBytesOut = CompressedBytes.Length; + + while (compressor.TotalBytesIn != TextToCompress.Length && compressor.TotalBytesOut < bufferSize) + { + compressor.Deflate(FlushType.None); + } + + while (true) + { + int rc= compressor.Deflate(FlushType.Finish); + if (rc == ZlibConstants.Z_STREAM_END) break; + } + + compressor.EndDeflate(); + + + + Z_OK if all goes well. You generally don't need to check the return code. + + + + Initialize the ZlibCodec for deflation operation, using the specified CompressionLevel. + + + The codec will use the maximum window bits (15) and the specified + CompressionLevel. It will emit a ZLIB stream as it compresses. + + The compression level for the codec. + Z_OK if all goes well. + + + + Initialize the ZlibCodec for deflation operation, using the specified CompressionLevel, + and the explicit flag governing whether to emit an RFC1950 header byte pair. + + + The codec will use the maximum window bits (15) and the specified CompressionLevel. + If you want to generate a zlib stream, you should specify true for + wantRfc1950Header. In this case, the library will emit a ZLIB + header, as defined in RFC + 1950, in the compressed stream. + + The compression level for the codec. + whether to emit an initial RFC1950 byte pair in the compressed stream. + Z_OK if all goes well. + + + + Initialize the ZlibCodec for deflation operation, using the specified CompressionLevel, + and the specified number of window bits. + + + The codec will use the specified number of window bits and the specified CompressionLevel. + + The compression level for the codec. + the number of window bits to use. If you don't know what this means, don't use this method. + Z_OK if all goes well. + + + + Initialize the ZlibCodec for deflation operation, using the specified + CompressionLevel, the specified number of window bits, and the explicit flag + governing whether to emit an RFC1950 header byte pair. + + + The compression level for the codec. + whether to emit an initial RFC1950 byte pair in the compressed stream. + the number of window bits to use. If you don't know what this means, don't use this method. + Z_OK if all goes well. + + + + Deflate one batch of data. + + + You must have set InputBuffer and OutputBuffer before calling this method. + + + + private void DeflateBuffer(CompressionLevel level) + { + int bufferSize = 1024; + byte[] buffer = new byte[bufferSize]; + ZlibCodec compressor = new ZlibCodec(); + + Console.WriteLine("\n============================================"); + Console.WriteLine("Size of Buffer to Deflate: {0} bytes.", UncompressedBytes.Length); + MemoryStream ms = new MemoryStream(); + + int rc = compressor.InitializeDeflate(level); + + compressor.InputBuffer = UncompressedBytes; + compressor.NextIn = 0; + compressor.AvailableBytesIn = UncompressedBytes.Length; + + compressor.OutputBuffer = buffer; + + // pass 1: deflate + do + { + compressor.NextOut = 0; + compressor.AvailableBytesOut = buffer.Length; + rc = compressor.Deflate(FlushType.None); + + if (rc != ZlibConstants.Z_OK && rc != ZlibConstants.Z_STREAM_END) + throw new Exception("deflating: " + compressor.Message); + + ms.Write(compressor.OutputBuffer, 0, buffer.Length - compressor.AvailableBytesOut); + } + while (compressor.AvailableBytesIn > 0 || compressor.AvailableBytesOut == 0); + + // pass 2: finish and flush + do + { + compressor.NextOut = 0; + compressor.AvailableBytesOut = buffer.Length; + rc = compressor.Deflate(FlushType.Finish); + + if (rc != ZlibConstants.Z_STREAM_END && rc != ZlibConstants.Z_OK) + throw new Exception("deflating: " + compressor.Message); + + if (buffer.Length - compressor.AvailableBytesOut > 0) + ms.Write(buffer, 0, buffer.Length - compressor.AvailableBytesOut); + } + while (compressor.AvailableBytesIn > 0 || compressor.AvailableBytesOut == 0); + + compressor.EndDeflate(); + + ms.Seek(0, SeekOrigin.Begin); + CompressedBytes = new byte[compressor.TotalBytesOut]; + ms.Read(CompressedBytes, 0, CompressedBytes.Length); + } + + + whether to flush all data as you deflate. Generally you will want to + use Z_NO_FLUSH here, in a series of calls to Deflate(), and then call EndDeflate() to + flush everything. + + Z_OK if all goes well. + + + + End a deflation session. + + + Call this after making a series of one or more calls to Deflate(). All buffers are flushed. + + Z_OK if all goes well. + + + + Reset a codec for another deflation session. + + + Call this to reset the deflation state. For example if a thread is deflating + non-consecutive blocks, you can call Reset() after the Deflate(Sync) of the first + block and before the next Deflate(None) of the second block. + + Z_OK if all goes well. + + + + Set the CompressionStrategy and CompressionLevel for a deflation session. + + the level of compression to use. + the strategy to use for compression. + Z_OK if all goes well. + + + + Set the dictionary to be used for either Inflation or Deflation. + + The dictionary bytes to use. + Z_OK if all goes well. + + + + A bunch of constants used in the Zlib interface. + + + + + The maximum number of window bits for the Deflate algorithm. + + + + + The default number of window bits for the Deflate algorithm. + + + + + indicates everything is A-OK + + + + + Indicates that the last operation reached the end of the stream. + + + + + The operation ended in need of a dictionary. + + + + + There was an error with the stream - not enough data, not open and readable, etc. + + + + + There was an error with the data - not enough data, bad data, etc. + + + + + There was an error with the working buffer. + + + + + The size of the working buffer used in the ZlibCodec class. + + + + + The minimum size of the working buffer used in the ZlibCodec class. + + + + + Represents a Zlib stream for compression or decompression. + + + + + The ZlibStream is a Decorator on a . It adds ZLIB compression or decompression to any + stream. + + + Using this stream, applications can compress or decompress data via + stream Read() and Write() operations. Either compresssion or + decompression can occur through either reading or writing. The compression + format used is ZLIB, which is documented in IETF RFC 1950, "ZLIB Compressed + Data Format Specification version 3.3". This implementation of ZLIB always uses + DEFLATE as the compression method. (see IETF RFC 1951, "DEFLATE + Compressed Data Format Specification version 1.3.") + + + The ZLIB format allows for varying compression methods, window sizes, and dictionaries. + This implementation always uses the DEFLATE compression method, a preset dictionary, + and 15 window bits by default. + + + + This class is similar to , except that it adds the + RFC1950 header and trailer bytes to a compressed stream when compressing, or expects + the RFC1950 header and trailer bytes when decompressing. It is also similar to the + . + + + + + + + + Create a ZlibStream using the specified CompressionMode. + + + + + When mode is CompressionMode.Compress, the ZlibStream + will use the default compression level. The "captive" stream will be + closed when the ZlibStream is closed. + + + + + + This example uses a ZlibStream to compress a file, and writes the + compressed data to another file. + + using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) + { + using (var raw = System.IO.File.Create(fileToCompress + ".zlib")) + { + using (Stream compressor = new ZlibStream(raw, CompressionMode.Compress)) + { + byte[] buffer = new byte[WORKING_BUFFER_SIZE]; + int n; + while ((n= input.Read(buffer, 0, buffer.Length)) != 0) + { + compressor.Write(buffer, 0, n); + } + } + } + } + + + Using input As Stream = File.OpenRead(fileToCompress) + Using raw As FileStream = File.Create(fileToCompress & ".zlib") + Using compressor As Stream = New ZlibStream(raw, CompressionMode.Compress) + Dim buffer As Byte() = New Byte(4096) {} + Dim n As Integer = -1 + Do While (n <> 0) + If (n > 0) Then + compressor.Write(buffer, 0, n) + End If + n = input.Read(buffer, 0, buffer.Length) + Loop + End Using + End Using + End Using + + + + The stream which will be read or written. + Indicates whether the ZlibStream will compress or decompress. + + + + Create a ZlibStream using the specified CompressionMode and + the specified CompressionLevel. + + + + + + When mode is CompressionMode.Decompress, the level parameter is ignored. + The "captive" stream will be closed when the ZlibStream is closed. + + + + + + This example uses a ZlibStream to compress data from a file, and writes the + compressed data to another file. + + + using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) + { + using (var raw = System.IO.File.Create(fileToCompress + ".zlib")) + { + using (Stream compressor = new ZlibStream(raw, + CompressionMode.Compress, + CompressionLevel.BestCompression)) + { + byte[] buffer = new byte[WORKING_BUFFER_SIZE]; + int n; + while ((n= input.Read(buffer, 0, buffer.Length)) != 0) + { + compressor.Write(buffer, 0, n); + } + } + } + } + + + + Using input As Stream = File.OpenRead(fileToCompress) + Using raw As FileStream = File.Create(fileToCompress & ".zlib") + Using compressor As Stream = New ZlibStream(raw, CompressionMode.Compress, CompressionLevel.BestCompression) + Dim buffer As Byte() = New Byte(4096) {} + Dim n As Integer = -1 + Do While (n <> 0) + If (n > 0) Then + compressor.Write(buffer, 0, n) + End If + n = input.Read(buffer, 0, buffer.Length) + Loop + End Using + End Using + End Using + + + + The stream to be read or written while deflating or inflating. + Indicates whether the ZlibStream will compress or decompress. + A tuning knob to trade speed for effectiveness. + + + + Create a ZlibStream using the specified CompressionMode, and + explicitly specify whether the captive stream should be left open after + Deflation or Inflation. + + + + + + When mode is CompressionMode.Compress, the ZlibStream will use + the default compression level. + + + + This constructor allows the application to request that the captive stream + remain open after the deflation or inflation occurs. By default, after + Close() is called on the stream, the captive stream is also + closed. In some cases this is not desired, for example if the stream is a + that will be re-read after + compression. Specify true for the parameter to leave the stream + open. + + + + See the other overloads of this constructor for example code. + + + + + The stream which will be read or written. This is called the + "captive" stream in other places in this documentation. + Indicates whether the ZlibStream will compress or decompress. + true if the application would like the stream to remain + open after inflation/deflation. + + + + Create a ZlibStream using the specified CompressionMode + and the specified CompressionLevel, and explicitly specify + whether the stream should be left open after Deflation or Inflation. + + + + + + This constructor allows the application to request that the captive + stream remain open after the deflation or inflation occurs. By + default, after Close() is called on the stream, the captive + stream is also closed. In some cases this is not desired, for example + if the stream is a that will be + re-read after compression. Specify true for the parameter to leave the stream open. + + + + When mode is CompressionMode.Decompress, the level parameter is + ignored. + + + + + + + This example shows how to use a ZlibStream to compress the data from a file, + and store the result into another file. The filestream remains open to allow + additional data to be written to it. + + + using (var output = System.IO.File.Create(fileToCompress + ".zlib")) + { + using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) + { + using (Stream compressor = new ZlibStream(output, CompressionMode.Compress, CompressionLevel.BestCompression, true)) + { + byte[] buffer = new byte[WORKING_BUFFER_SIZE]; + int n; + while ((n= input.Read(buffer, 0, buffer.Length)) != 0) + { + compressor.Write(buffer, 0, n); + } + } + } + // can write additional data to the output stream here + } + + + Using output As FileStream = File.Create(fileToCompress & ".zlib") + Using input As Stream = File.OpenRead(fileToCompress) + Using compressor As Stream = New ZlibStream(output, CompressionMode.Compress, CompressionLevel.BestCompression, True) + Dim buffer As Byte() = New Byte(4096) {} + Dim n As Integer = -1 + Do While (n <> 0) + If (n > 0) Then + compressor.Write(buffer, 0, n) + End If + n = input.Read(buffer, 0, buffer.Length) + Loop + End Using + End Using + ' can write additional data to the output stream here. + End Using + + + + The stream which will be read or written. + + Indicates whether the ZlibStream will compress or decompress. + + + true if the application would like the stream to remain open after + inflation/deflation. + + + + A tuning knob to trade speed for effectiveness. This parameter is + effective only when mode is CompressionMode.Compress. + + + + + This property sets the flush behavior on the stream. + Sorry, though, not sure exactly how to describe all the various settings. + + + + + The size of the working buffer for the compression codec. + + + + + The working buffer is used for all stream operations. The default size is + 1024 bytes. The minimum size is 128 bytes. You may get better performance + with a larger buffer. Then again, you might not. You would have to test + it. + + + + Set this before the first call to Read() or Write() on the + stream. If you try to set it afterwards, it will throw. + + + + + Returns the total number of bytes input so far. + + + Returns the total number of bytes output so far. + + + + Dispose the stream. + + + + This may or may not result in a Close() call on the captive + stream. See the constructors that have a leaveOpen parameter + for more information. + + + This method may be invoked in two distinct scenarios. If disposing + == true, the method has been called directly or indirectly by a + user's code, for example via the public Dispose() method. In this + case, both managed and unmanaged resources can be referenced and + disposed. If disposing == false, the method has been called by the + runtime from inside the object finalizer and this method should not + reference other objects; in that case only unmanaged resources must + be referenced or disposed. + + + + indicates whether the Dispose method was invoked by user code. + + + + + Indicates whether the stream can be read. + + + The return value depends on whether the captive stream supports reading. + + + + + Indicates whether the stream supports Seek operations. + + + Always returns false. + + + + + Indicates whether the stream can be written. + + + The return value depends on whether the captive stream supports writing. + + + + + Flush the stream. + + + + + Reading this property always throws a . + + + + + The position of the stream pointer. + + + + Setting this property always throws a . Reading will return the total bytes + written out, if used in writing, or the total bytes read in, if used in + reading. The count may refer to compressed bytes or uncompressed bytes, + depending on how you've used the stream. + + + + + Read data from the stream. + + + + + + If you wish to use the ZlibStream to compress data while reading, + you can create a ZlibStream with CompressionMode.Compress, + providing an uncompressed data stream. Then call Read() on that + ZlibStream, and the data read will be compressed. If you wish to + use the ZlibStream to decompress data while reading, you can create + a ZlibStream with CompressionMode.Decompress, providing a + readable compressed data stream. Then call Read() on that + ZlibStream, and the data will be decompressed as it is read. + + + + A ZlibStream can be used for Read() or Write(), but + not both. + + + + + + The buffer into which the read data should be placed. + + + the offset within that data array to put the first byte read. + + the number of bytes to read. + + the number of bytes read + + + + Calling this method always throws a . + + + The offset to seek to.... + IF THIS METHOD ACTUALLY DID ANYTHING. + + + The reference specifying how to apply the offset.... IF + THIS METHOD ACTUALLY DID ANYTHING. + + + nothing. This method always throws. + + + + Calling this method always throws a . + + + The new value for the stream length.... IF + THIS METHOD ACTUALLY DID ANYTHING. + + + + + Write data to the stream. + + + + + + If you wish to use the ZlibStream to compress data while writing, + you can create a ZlibStream with CompressionMode.Compress, + and a writable output stream. Then call Write() on that + ZlibStream, providing uncompressed data as input. The data sent to + the output stream will be the compressed form of the data written. If you + wish to use the ZlibStream to decompress data while writing, you + can create a ZlibStream with CompressionMode.Decompress, and a + writable output stream. Then call Write() on that stream, + providing previously compressed data. The data sent to the output stream + will be the decompressed form of the data written. + + + + A ZlibStream can be used for Read() or Write(), but not both. + + + The buffer holding data to write to the stream. + the offset within that data array to find the first byte to write. + the number of bytes to write. + + + + Compress a string into a byte array using ZLIB. + + + + Uncompress it with . + + + + + + + + A string to compress. The string will first be encoded + using UTF8, then compressed. + + + The string in compressed form + + + + Compress a byte array into a new byte array using ZLIB. + + + + Uncompress it with . + + + + + + + A buffer to compress. + + + The data in compressed form + + + + Uncompress a ZLIB-compressed byte array into a single string. + + + + + + + A buffer containing ZLIB-compressed data. + + + The uncompressed string + + + + Uncompress a ZLIB-compressed byte array into a byte array. + + + + + + + A buffer containing ZLIB-compressed data. + + + The data in uncompressed form + +
+
diff --git a/Packages/DotNetZip.1.13.3/lib/netstandard2.0/DotNetZip.dll b/Packages/DotNetZip.1.13.3/lib/netstandard2.0/DotNetZip.dll new file mode 100644 index 0000000..63b5ccd Binary files /dev/null and b/Packages/DotNetZip.1.13.3/lib/netstandard2.0/DotNetZip.dll differ diff --git a/Packages/DotNetZip.1.13.3/lib/netstandard2.0/DotNetZip.pdb b/Packages/DotNetZip.1.13.3/lib/netstandard2.0/DotNetZip.pdb new file mode 100644 index 0000000..c77f4a5 Binary files /dev/null and b/Packages/DotNetZip.1.13.3/lib/netstandard2.0/DotNetZip.pdb differ diff --git a/Packages/DotNetZip.1.13.3/lib/netstandard2.0/DotNetZip.xml b/Packages/DotNetZip.1.13.3/lib/netstandard2.0/DotNetZip.xml new file mode 100644 index 0000000..549f424 --- /dev/null +++ b/Packages/DotNetZip.1.13.3/lib/netstandard2.0/DotNetZip.xml @@ -0,0 +1,18022 @@ + + + + DotNetZip + + + + + Delivers the remaining bits, left-aligned, in a byte. + + + + This is valid only if NumRemainingBits is less than 8; + in other words it is valid only after a call to Flush(). + + + + + + Reset the BitWriter. + + + + This is useful when the BitWriter writes into a MemoryStream, and + is used by a BZip2Compressor, which itself is re-used for multiple + distinct data blocks. + + + + + + Write some number of bits from the given value, into the output. + + + + The nbits value should be a max of 25, for safety. For performance + reasons, this method does not check! + + + + + + Write a full 8-bit byte into the output. + + + + + Write four 8-bit bytes into the output. + + + + + Write all available byte-aligned bytes. + + + + This method writes no new output, but flushes any accumulated + bits. At completion, the accumulator may contain up to 7 + bits. + + + This is necessary when re-assembling output from N independent + compressors, one for each of N blocks. The output of any + particular compressor will in general have some fragment of a byte + remaining. This fragment needs to be accumulated into the + parent BZip2OutputStream. + + + + + + Writes all available bytes, and emits padding for the final byte as + necessary. This must be the last method invoked on an instance of + BitWriter. + + + + Knuth's increments seem to work better than Incerpi-Sedgewick here. + Possibly because the number of elems to sort is usually small, typically + <= 20. + + + + BZip2Compressor writes its compressed data out via a BitWriter. This + is necessary because BZip2 does byte shredding. + + + + + The number of uncompressed bytes being held in the buffer. + + + + I am thinking this may be useful in a Stream that uses this + compressor class. In the Close() method on the stream it could + check this value to see if anything has been written at all. You + may think the stream could easily track the number of bytes it + wrote, which would eliminate the need for this. But, there is the + case where the stream writes a complete block, and it is full, and + then writes no more. In that case the stream may want to check. + + + + + + Accept new bytes into the compressor data buffer + + + + This method does the first-level (cheap) run-length encoding, and + stores the encoded data into the rle block. + + + + + + Process one input byte into the block. + + + + + To "process" the byte means to do the run-length encoding. + There are 3 possible return values: + + 0 - the byte was not written, in other words, not + encoded into the block. This happens when the + byte b would require the start of a new run, and + the block has no more room for new runs. + + 1 - the byte was written, and the block is not full. + + 2 - the byte was written, and the block is full. + + + + 0 if the byte was not written, non-zero if written. + + + + Append one run to the output block. + + + + + This compressor does run-length-encoding before BWT and etc. This + method simply appends a run to the output block. The append always + succeeds. The return value indicates whether the block is full: + false (not full) implies that at least one additional run could be + processed. + + + true if the block is now full; otherwise false. + + + + Compress the data that has been placed (Run-length-encoded) into the + block. The compressed data goes into the CompressedBytes array. + + + + Side effects: 1. fills the CompressedBytes array. 2. sets the + AvailableBytesOut property. + + + + + This is the most hammered method of this class. + +

+ This is the version using unrolled loops. +

+
+ + Method "mainQSort3", file "blocksort.c", BZip2 1.0.2 + + + Array instance identical to sfmap, both are used only + temporarily and independently, so we do not need to allocate + additional memory. + + + + A read-only decorator stream that performs BZip2 decompression on Read. + + + + + Compressor State + + + + + Create a BZip2InputStream, wrapping it around the given input Stream. + + + + The input stream will be closed when the BZip2InputStream is closed. + + + The stream from which to read compressed data + + + + Create a BZip2InputStream with the given stream, and + specifying whether to leave the wrapped stream open when + the BZip2InputStream is closed. + + The stream from which to read compressed data + + Whether to leave the input stream open, when the BZip2InputStream closes. + + + + + This example reads a bzip2-compressed file, decompresses it, + and writes the decompressed data into a newly created file. + + + var fname = "logfile.log.bz2"; + using (var fs = File.OpenRead(fname)) + { + using (var decompressor = new Ionic.BZip2.BZip2InputStream(fs)) + { + var outFname = fname + ".decompressed"; + using (var output = File.Create(outFname)) + { + byte[] buffer = new byte[2048]; + int n; + while ((n = decompressor.Read(buffer, 0, buffer.Length)) > 0) + { + output.Write(buffer, 0, n); + } + } + } + } + + + + + + Read data from the stream. + + + + + To decompress a BZip2 data stream, create a BZip2InputStream, + providing a stream that reads compressed data. Then call Read() on + that BZip2InputStream, and the data read will be decompressed + as you read. + + + + A BZip2InputStream can be used only for Read(), not for Write(). + + + + The buffer into which the read data should be placed. + the offset within that data array to put the first byte read. + the number of bytes to read. + the number of bytes actually read + + + + Read a single byte from the stream. + + the byte read from the stream, or -1 if EOF + + + + Indicates whether the stream can be read. + + + The return value depends on whether the captive stream supports reading. + + + + + Indicates whether the stream supports Seek operations. + + + Always returns false. + + + + + Indicates whether the stream can be written. + + + The return value depends on whether the captive stream supports writing. + + + + + Flush the stream. + + + + + Reading this property always throws a . + + + + + The position of the stream pointer. + + + + Setting this property always throws a . Reading will return the + total number of uncompressed bytes read in. + + + + + Calling this method always throws a . + + this is irrelevant, since it will always throw! + this is irrelevant, since it will always throw! + irrelevant! + + + + Calling this method always throws a . + + this is irrelevant, since it will always throw! + + + + Calling this method always throws a . + + this parameter is never used + this parameter is never used + this parameter is never used + + + + Dispose the stream. + + + indicates whether the Dispose method was invoked by user code. + + + + + Close the stream. + + + + + Read n bits from input, right justifying the result. + + + + For example, if you read 1 bit, the result is either 0 + or 1. + + + + The number of bits to read, always between 1 and 32. + + + + Called by createHuffmanDecodingTables() exclusively. + + + Called by recvDecodingTables() exclusively. + + + Freq table collected to save a pass over the data during + decompression. + + + Initializes the tt array. + + This method is called when the required length of the array is known. + I don't initialize it at construction time to avoid unneccessary + memory allocation when compressing small files. + + + + A write-only decorator stream that compresses data as it is + written using the BZip2 algorithm. + + + + + Constructs a new BZip2OutputStream, that sends its + compressed output to the given output stream. + + + + The destination stream, to which compressed output will be sent. + + + + + This example reads a file, then compresses it with bzip2 file, + and writes the compressed data into a newly created file. + + + var fname = "logfile.log"; + using (var fs = File.OpenRead(fname)) + { + var outFname = fname + ".bz2"; + using (var output = File.Create(outFname)) + { + using (var compressor = new Ionic.BZip2.BZip2OutputStream(output)) + { + byte[] buffer = new byte[2048]; + int n; + while ((n = fs.Read(buffer, 0, buffer.Length)) > 0) + { + compressor.Write(buffer, 0, n); + } + } + } + } + + + + + + Constructs a new BZip2OutputStream with specified blocksize. + + the destination stream. + + The blockSize in units of 100000 bytes. + The valid range is 1..9. + + + + + Constructs a new BZip2OutputStream. + + the destination stream. + + whether to leave the captive stream open upon closing this stream. + + + + + Constructs a new BZip2OutputStream with specified blocksize, + and explicitly specifies whether to leave the wrapped stream open. + + + the destination stream. + + The blockSize in units of 100000 bytes. + The valid range is 1..9. + + + whether to leave the captive stream open upon closing this stream. + + + + + Close the stream. + + + + This may or may not close the underlying stream. Check the + constructors that accept a bool value. + + + + + + Flush the stream. + + + + + The blocksize parameter specified at construction time. + + + + + Write data to the stream. + + + + + Use the BZip2OutputStream to compress data while writing: + create a BZip2OutputStream with a writable output stream. + Then call Write() on that BZip2OutputStream, providing + uncompressed data as input. The data sent to the output stream will + be the compressed form of the input data. + + + + A BZip2OutputStream can be used only for Write() not for Read(). + + + + + The buffer holding data to write to the stream. + the offset within that data array to find the first byte to write. + the number of bytes to write. + + + + Indicates whether the stream can be read. + + + The return value is always false. + + + + + Indicates whether the stream supports Seek operations. + + + Always returns false. + + + + + Indicates whether the stream can be written. + + + The return value should always be true, unless and until the + object is disposed and closed. + + + + + Reading this property always throws a . + + + + + The position of the stream pointer. + + + + Setting this property always throws a . Reading will return the + total number of uncompressed bytes written through. + + + + + Calling this method always throws a . + + this is irrelevant, since it will always throw! + this is irrelevant, since it will always throw! + irrelevant! + + + + Calling this method always throws a . + + this is irrelevant, since it will always throw! + + + + Calling this method always throws a . + + this parameter is never used + this parameter is never used + this parameter is never used + never returns anything; always throws + + + + A write-only decorator stream that compresses data as it is + written using the BZip2 algorithm. This stream compresses by + block using multiple threads. + + + This class performs BZIP2 compression through writing. For + more information on the BZIP2 algorithm, see + . + + + + This class is similar to , + except that this implementation uses an approach that employs multiple + worker threads to perform the compression. On a multi-cpu or multi-core + computer, the performance of this class can be significantly higher than + the single-threaded BZip2OutputStream, particularly for larger streams. + How large? Anything over 10mb is a good candidate for parallel + compression. + + + + The tradeoff is that this class uses more memory and more CPU than the + vanilla BZip2OutputStream. Also, for small files, the + ParallelBZip2OutputStream can be much slower than the vanilla + BZip2OutputStream, because of the overhead associated to using the + thread pool. + + + + + + + Constructs a new ParallelBZip2OutputStream, that sends its + compressed output to the given output stream. + + + + The destination stream, to which compressed output will be sent. + + + + + This example reads a file, then compresses it with bzip2 file, + and writes the compressed data into a newly created file. + + + var fname = "logfile.log"; + using (var fs = File.OpenRead(fname)) + { + var outFname = fname + ".bz2"; + using (var output = File.Create(outFname)) + { + using (var compressor = new Ionic.BZip2.ParallelBZip2OutputStream(output)) + { + byte[] buffer = new byte[2048]; + int n; + while ((n = fs.Read(buffer, 0, buffer.Length)) > 0) + { + compressor.Write(buffer, 0, n); + } + } + } + } + + + + + + Constructs a new ParallelBZip2OutputStream with specified blocksize. + + the destination stream. + + The blockSize in units of 100000 bytes. + The valid range is 1..9. + + + + + Constructs a new ParallelBZip2OutputStream. + + the destination stream. + + whether to leave the captive stream open upon closing this stream. + + + + + Constructs a new ParallelBZip2OutputStream with specified blocksize, + and explicitly specifies whether to leave the wrapped stream open. + + + the destination stream. + + The blockSize in units of 100000 bytes. + The valid range is 1..9. + + + whether to leave the captive stream open upon closing this stream. + + + + + The maximum number of concurrent compression worker threads to use. + + + + + This property sets an upper limit on the number of concurrent worker + threads to employ for compression. The implementation of this stream + employs multiple threads from the .NET thread pool, via + ThreadPool.QueueUserWorkItem(), to compress the incoming data by + block. As each block of data is compressed, this stream re-orders the + compressed blocks and writes them to the output stream. + + + + A higher number of workers enables a higher degree of + parallelism, which tends to increase the speed of compression on + multi-cpu computers. On the other hand, a higher number of buffer + pairs also implies a larger memory consumption, more active worker + threads, and a higher cpu utilization for any compression. This + property enables the application to limit its memory consumption and + CPU utilization behavior depending on requirements. + + + + By default, DotNetZip allocates 4 workers per CPU core, subject to the + upper limit specified in this property. For example, suppose the + application sets this property to 16. Then, on a machine with 2 + cores, DotNetZip will use 8 workers; that number does not exceed the + upper limit specified by this property, so the actual number of + workers used will be 4 * 2 = 8. On a machine with 4 cores, DotNetZip + will use 16 workers; again, the limit does not apply. On a machine + with 8 cores, DotNetZip will use 16 workers, because of the limit. + + + + For each compression "worker thread" that occurs in parallel, there is + up to 2mb of memory allocated, for buffering and processing. The + actual number depends on the property. + + + + CPU utilization will also go up with additional workers, because a + larger number of buffer pairs allows a larger number of background + threads to compress in parallel. If you find that parallel + compression is consuming too much memory or CPU, you can adjust this + value downward. + + + + The default value is 16. Different values may deliver better or + worse results, depending on your priorities and the dynamic + performance characteristics of your storage and compute resources. + + + + The application can set this value at any time, but it is effective + only before the first call to Write(), which is when the buffers are + allocated. + + + + + + Close the stream. + + + + This may or may not close the underlying stream. Check the + constructors that accept a bool value. + + + + + + Flush the stream. + + + + + The blocksize parameter specified at construction time. + + + + + Write data to the stream. + + + + + Use the ParallelBZip2OutputStream to compress data while + writing: create a ParallelBZip2OutputStream with a writable + output stream. Then call Write() on that + ParallelBZip2OutputStream, providing uncompressed data as + input. The data sent to the output stream will be the compressed + form of the input data. + + + + A ParallelBZip2OutputStream can be used only for + Write() not for Read(). + + + + + The buffer holding data to write to the stream. + the offset within that data array to find the first byte to write. + the number of bytes to write. + + + + Indicates whether the stream can be read. + + + The return value is always false. + + + + + Indicates whether the stream supports Seek operations. + + + Always returns false. + + + + + Indicates whether the stream can be written. + + + The return value depends on whether the captive stream supports writing. + + + + + Reading this property always throws a . + + + + + The position of the stream pointer. + + + + Setting this property always throws a . Reading will return the + total number of uncompressed bytes written through. + + + + + The total number of bytes written out by the stream. + + + This value is meaningful only after a call to Close(). + + + + + Calling this method always throws a . + + this is irrelevant, since it will always throw! + this is irrelevant, since it will always throw! + irrelevant! + + + + Calling this method always throws a . + + this is irrelevant, since it will always throw! + + + + Calling this method always throws a . + + this parameter is never used + this parameter is never used + this parameter is never used + never returns anything; always throws + + + + Returns the "random" number at a specific index. + + the index + the random number + + + + Computes a CRC-32. The CRC-32 algorithm is parameterized - you + can set the polynomial and enable or disable bit + reversal. This can be used for GZIP, BZip2, or ZIP. + + + This type is used internally by DotNetZip; it is generally not used + directly by applications wishing to create, read, or manipulate zip + archive files. + + + + + Indicates the total number of bytes applied to the CRC. + + + + + Indicates the current CRC for all blocks slurped in. + + + + + Returns the CRC32 for the specified stream. + + The stream over which to calculate the CRC32 + the CRC32 calculation + + + + Returns the CRC32 for the specified stream, and writes the input into the + output stream. + + The stream over which to calculate the CRC32 + The stream into which to deflate the input + the CRC32 calculation + + + + Get the CRC32 for the given (word,byte) combo. This is a + computation defined by PKzip for PKZIP 2.0 (weak) encryption. + + The word to start with. + The byte to combine it with. + The CRC-ized result. + + + + Update the value for the running CRC32 using the given block of bytes. + This is useful when using the CRC32() class in a Stream. + + block of bytes to slurp + starting point in the block + how many bytes within the block to slurp + + + + Process one byte in the CRC. + + the byte to include into the CRC . + + + + Process a run of N identical bytes into the CRC. + + + + This method serves as an optimization for updating the CRC when a + run of identical bytes is found. Rather than passing in a buffer of + length n, containing all identical bytes b, this method accepts the + byte value and the length of the (virtual) buffer - the length of + the run. + + + the byte to include into the CRC. + the number of times that byte should be repeated. + + + + Combines the given CRC32 value with the current running total. + + + This is useful when using a divide-and-conquer approach to + calculating a CRC. Multiple threads can each calculate a + CRC32 on a segment of the data, and then combine the + individual CRC32 values at the end. + + the crc value to be combined with this one + the length of data the CRC value was calculated on + + + + Create an instance of the CRC32 class using the default settings: no + bit reversal, and a polynomial of 0xEDB88320. + + + + + Create an instance of the CRC32 class, specifying whether to reverse + data bits or not. + + + specify true if the instance should reverse data bits. + + + + In the CRC-32 used by BZip2, the bits are reversed. Therefore if you + want a CRC32 with compatibility with BZip2, you should pass true + here. In the CRC-32 used by GZIP and PKZIP, the bits are not + reversed; Therefore if you want a CRC32 with compatibility with + those, you should pass false. + + + + + + Create an instance of the CRC32 class, specifying the polynomial and + whether to reverse data bits or not. + + + The polynomial to use for the CRC, expressed in the reversed (LSB) + format: the highest ordered bit in the polynomial value is the + coefficient of the 0th power; the second-highest order bit is the + coefficient of the 1 power, and so on. Expressed this way, the + polynomial for the CRC-32C used in IEEE 802.3, is 0xEDB88320. + + + specify true if the instance should reverse data bits. + + + + + In the CRC-32 used by BZip2, the bits are reversed. Therefore if you + want a CRC32 with compatibility with BZip2, you should pass true + here for the reverseBits parameter. In the CRC-32 used by + GZIP and PKZIP, the bits are not reversed; Therefore if you want a + CRC32 with compatibility with those, you should pass false for the + reverseBits parameter. + + + + + + Reset the CRC-32 class - clear the CRC "remainder register." + + + + Use this when employing a single instance of this class to compute + multiple, distinct CRCs on multiple, distinct data blocks. + + + + + + A Stream that calculates a CRC32 (a checksum) on all bytes read, + or on all bytes written. + + + + + This class can be used to verify the CRC of a ZipEntry when + reading from a stream, or to calculate a CRC when writing to a + stream. The stream should be used to either read, or write, but + not both. If you intermix reads and writes, the results are not + defined. + + + + This class is intended primarily for use internally by the + DotNetZip library. + + + + + + The default constructor. + + + + Instances returned from this constructor will leave the underlying + stream open upon Close(). The stream uses the default CRC32 + algorithm, which implies a polynomial of 0xEDB88320. + + + The underlying stream + + + + The constructor allows the caller to specify how to handle the + underlying stream at close. + + + + The stream uses the default CRC32 algorithm, which implies a + polynomial of 0xEDB88320. + + + The underlying stream + true to leave the underlying stream + open upon close of the CrcCalculatorStream; false otherwise. + + + + A constructor allowing the specification of the length of the stream + to read. + + + + The stream uses the default CRC32 algorithm, which implies a + polynomial of 0xEDB88320. + + + Instances returned from this constructor will leave the underlying + stream open upon Close(). + + + The underlying stream + The length of the stream to slurp + + + + A constructor allowing the specification of the length of the stream + to read, as well as whether to keep the underlying stream open upon + Close(). + + + + The stream uses the default CRC32 algorithm, which implies a + polynomial of 0xEDB88320. + + + The underlying stream + The length of the stream to slurp + true to leave the underlying stream + open upon close of the CrcCalculatorStream; false otherwise. + + + + A constructor allowing the specification of the length of the stream + to read, as well as whether to keep the underlying stream open upon + Close(), and the CRC32 instance to use. + + + + The stream uses the specified CRC32 instance, which allows the + application to specify how the CRC gets calculated. + + + The underlying stream + The length of the stream to slurp + true to leave the underlying stream + open upon close of the CrcCalculatorStream; false otherwise. + the CRC32 instance to use to calculate the CRC32 + + + + Gets the total number of bytes run through the CRC32 calculator. + + + + This is either the total number of bytes read, or the total number of + bytes written, depending on the direction of this stream. + + + + + Provides the current CRC for all blocks slurped in. + + + + The running total of the CRC is kept as data is written or read + through the stream. read this property after all reads or writes to + get an accurate CRC for the entire stream. + + + + + + Indicates whether the underlying stream will be left open when the + CrcCalculatorStream is Closed. + + + + Set this at any point before calling . + + + + + + Read from the stream + + the buffer to read + the offset at which to start + the number of bytes to read + the number of bytes actually read + + + + Write to the stream. + + the buffer from which to write + the offset at which to start writing + the number of bytes to write + + + + Indicates whether the stream supports reading. + + + + + Indicates whether the stream supports seeking. + + + + Always returns false. + + + + + + Indicates whether the stream supports writing. + + + + + Flush the stream. + + + + + Returns the length of the underlying stream. + + + + + The getter for this property returns the total bytes read. + If you use the setter, it will throw + . + + + + + Seeking is not supported on this stream. This method always throws + + + N/A + N/A + N/A + + + + This method always throws + + + N/A + + + + Closes the stream. + + + + + A class for compressing and decompressing streams using the Deflate algorithm. + + + + + + The DeflateStream is a Decorator on a . It adds DEFLATE compression or decompression to any + stream. + + + + Using this stream, applications can compress or decompress data via stream + Read and Write operations. Either compresssion or decompression + can occur through either reading or writing. The compression format used is + DEFLATE, which is documented in IETF RFC 1951, "DEFLATE + Compressed Data Format Specification version 1.3.". + + + + This class is similar to , except that + ZlibStream adds the RFC + 1950 - ZLIB framing bytes to a compressed stream when compressing, or + expects the RFC1950 framing bytes when decompressing. The DeflateStream + does not. + + + + + + + + + + Create a DeflateStream using the specified CompressionMode. + + + + When mode is CompressionMode.Compress, the DeflateStream will use + the default compression level. The "captive" stream will be closed when + the DeflateStream is closed. + + + + This example uses a DeflateStream to compress data from a file, and writes + the compressed data to another file. + + using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) + { + using (var raw = System.IO.File.Create(fileToCompress + ".deflated")) + { + using (Stream compressor = new DeflateStream(raw, CompressionMode.Compress)) + { + byte[] buffer = new byte[WORKING_BUFFER_SIZE]; + int n; + while ((n= input.Read(buffer, 0, buffer.Length)) != 0) + { + compressor.Write(buffer, 0, n); + } + } + } + } + + + + Using input As Stream = File.OpenRead(fileToCompress) + Using raw As FileStream = File.Create(fileToCompress & ".deflated") + Using compressor As Stream = New DeflateStream(raw, CompressionMode.Compress) + Dim buffer As Byte() = New Byte(4096) {} + Dim n As Integer = -1 + Do While (n <> 0) + If (n > 0) Then + compressor.Write(buffer, 0, n) + End If + n = input.Read(buffer, 0, buffer.Length) + Loop + End Using + End Using + End Using + + + The stream which will be read or written. + Indicates whether the DeflateStream will compress or decompress. + + + + Create a DeflateStream using the specified CompressionMode and the specified CompressionLevel. + + + + + + When mode is CompressionMode.Decompress, the level parameter is + ignored. The "captive" stream will be closed when the DeflateStream is + closed. + + + + + + + This example uses a DeflateStream to compress data from a file, and writes + the compressed data to another file. + + + using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) + { + using (var raw = System.IO.File.Create(fileToCompress + ".deflated")) + { + using (Stream compressor = new DeflateStream(raw, + CompressionMode.Compress, + CompressionLevel.BestCompression)) + { + byte[] buffer = new byte[WORKING_BUFFER_SIZE]; + int n= -1; + while (n != 0) + { + if (n > 0) + compressor.Write(buffer, 0, n); + n= input.Read(buffer, 0, buffer.Length); + } + } + } + } + + + + Using input As Stream = File.OpenRead(fileToCompress) + Using raw As FileStream = File.Create(fileToCompress & ".deflated") + Using compressor As Stream = New DeflateStream(raw, CompressionMode.Compress, CompressionLevel.BestCompression) + Dim buffer As Byte() = New Byte(4096) {} + Dim n As Integer = -1 + Do While (n <> 0) + If (n > 0) Then + compressor.Write(buffer, 0, n) + End If + n = input.Read(buffer, 0, buffer.Length) + Loop + End Using + End Using + End Using + + + The stream to be read or written while deflating or inflating. + Indicates whether the DeflateStream will compress or decompress. + A tuning knob to trade speed for effectiveness. + + + + Create a DeflateStream using the specified + CompressionMode, and explicitly specify whether the + stream should be left open after Deflation or Inflation. + + + + + + This constructor allows the application to request that the captive stream + remain open after the deflation or inflation occurs. By default, after + Close() is called on the stream, the captive stream is also + closed. In some cases this is not desired, for example if the stream is a + memory stream that will be re-read after compression. Specify true for + the parameter to leave the stream open. + + + + The DeflateStream will use the default compression level. + + + + See the other overloads of this constructor for example code. + + + + + The stream which will be read or written. This is called the + "captive" stream in other places in this documentation. + + + + Indicates whether the DeflateStream will compress or decompress. + + + true if the application would like the stream to + remain open after inflation/deflation. + + + + Create a DeflateStream using the specified CompressionMode + and the specified CompressionLevel, and explicitly specify whether + the stream should be left open after Deflation or Inflation. + + + + + + When mode is CompressionMode.Decompress, the level parameter is ignored. + + + + This constructor allows the application to request that the captive stream + remain open after the deflation or inflation occurs. By default, after + Close() is called on the stream, the captive stream is also + closed. In some cases this is not desired, for example if the stream is a + that will be re-read after + compression. Specify true for the parameter + to leave the stream open. + + + + + + + This example shows how to use a DeflateStream to compress data from + a file, and store the compressed data into another file. + + + using (var output = System.IO.File.Create(fileToCompress + ".deflated")) + { + using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) + { + using (Stream compressor = new DeflateStream(output, CompressionMode.Compress, CompressionLevel.BestCompression, true)) + { + byte[] buffer = new byte[WORKING_BUFFER_SIZE]; + int n= -1; + while (n != 0) + { + if (n > 0) + compressor.Write(buffer, 0, n); + n= input.Read(buffer, 0, buffer.Length); + } + } + } + // can write additional data to the output stream here + } + + + + Using output As FileStream = File.Create(fileToCompress & ".deflated") + Using input As Stream = File.OpenRead(fileToCompress) + Using compressor As Stream = New DeflateStream(output, CompressionMode.Compress, CompressionLevel.BestCompression, True) + Dim buffer As Byte() = New Byte(4096) {} + Dim n As Integer = -1 + Do While (n <> 0) + If (n > 0) Then + compressor.Write(buffer, 0, n) + End If + n = input.Read(buffer, 0, buffer.Length) + Loop + End Using + End Using + ' can write additional data to the output stream here. + End Using + + + The stream which will be read or written. + Indicates whether the DeflateStream will compress or decompress. + true if the application would like the stream to remain open after inflation/deflation. + A tuning knob to trade speed for effectiveness. + + + + This property sets the flush behavior on the stream. + + See the ZLIB documentation for the meaning of the flush behavior. + + + + + The size of the working buffer for the compression codec. + + + + + The working buffer is used for all stream operations. The default size is + 1024 bytes. The minimum size is 128 bytes. You may get better performance + with a larger buffer. Then again, you might not. You would have to test + it. + + + + Set this before the first call to Read() or Write() on the + stream. If you try to set it afterwards, it will throw. + + + + + + The ZLIB strategy to be used during compression. + + + + By tweaking this parameter, you may be able to optimize the compression for + data with particular characteristics. + + + + Returns the total number of bytes input so far. + + + Returns the total number of bytes output so far. + + + + Dispose the stream. + + + + This may or may not result in a Close() call on the captive + stream. See the constructors that have a leaveOpen parameter + for more information. + + + Application code won't call this code directly. This method may be + invoked in two distinct scenarios. If disposing == true, the method + has been called directly or indirectly by a user's code, for example + via the public Dispose() method. In this case, both managed and + unmanaged resources can be referenced and disposed. If disposing == + false, the method has been called by the runtime from inside the + object finalizer and this method should not reference other objects; + in that case only unmanaged resources must be referenced or + disposed. + + + + true if the Dispose method was invoked by user code. + + + + + Indicates whether the stream can be read. + + + The return value depends on whether the captive stream supports reading. + + + + + Indicates whether the stream supports Seek operations. + + + Always returns false. + + + + + Indicates whether the stream can be written. + + + The return value depends on whether the captive stream supports writing. + + + + + Flush the stream. + + + + + Reading this property always throws a . + + + + + The position of the stream pointer. + + + + Setting this property always throws a . Reading will return the total bytes + written out, if used in writing, or the total bytes read in, if used in + reading. The count may refer to compressed bytes or uncompressed bytes, + depending on how you've used the stream. + + + + + Read data from the stream. + + + + + If you wish to use the DeflateStream to compress data while + reading, you can create a DeflateStream with + CompressionMode.Compress, providing an uncompressed data stream. + Then call Read() on that DeflateStream, and the data read will be + compressed as you read. If you wish to use the DeflateStream to + decompress data while reading, you can create a DeflateStream with + CompressionMode.Decompress, providing a readable compressed data + stream. Then call Read() on that DeflateStream, and the data read + will be decompressed as you read. + + + + A DeflateStream can be used for Read() or Write(), but not both. + + + + The buffer into which the read data should be placed. + the offset within that data array to put the first byte read. + the number of bytes to read. + the number of bytes actually read + + + + Calling this method always throws a . + + this is irrelevant, since it will always throw! + this is irrelevant, since it will always throw! + irrelevant! + + + + Calling this method always throws a . + + this is irrelevant, since it will always throw! + + + + Write data to the stream. + + + + + If you wish to use the DeflateStream to compress data while + writing, you can create a DeflateStream with + CompressionMode.Compress, and a writable output stream. Then call + Write() on that DeflateStream, providing uncompressed data + as input. The data sent to the output stream will be the compressed form + of the data written. If you wish to use the DeflateStream to + decompress data while writing, you can create a DeflateStream with + CompressionMode.Decompress, and a writable output stream. Then + call Write() on that stream, providing previously compressed + data. The data sent to the output stream will be the decompressed form of + the data written. + + + + A DeflateStream can be used for Read() or Write(), + but not both. + + + + + The buffer holding data to write to the stream. + the offset within that data array to find the first byte to write. + the number of bytes to write. + + + + Compress a string into a byte array using DEFLATE (RFC 1951). + + + + Uncompress it with . + + + DeflateStream.UncompressString(byte[]) + DeflateStream.CompressBuffer(byte[]) + GZipStream.CompressString(string) + ZlibStream.CompressString(string) + + + A string to compress. The string will first be encoded + using UTF8, then compressed. + + + The string in compressed form + + + + Compress a byte array into a new byte array using DEFLATE. + + + + Uncompress it with . + + + DeflateStream.CompressString(string) + DeflateStream.UncompressBuffer(byte[]) + GZipStream.CompressBuffer(byte[]) + ZlibStream.CompressBuffer(byte[]) + + + A buffer to compress. + + + The data in compressed form + + + + Uncompress a DEFLATE'd byte array into a single string. + + + DeflateStream.CompressString(String) + DeflateStream.UncompressBuffer(byte[]) + GZipStream.UncompressString(byte[]) + ZlibStream.UncompressString(byte[]) + + + A buffer containing DEFLATE-compressed data. + + + The uncompressed string + + + + Uncompress a DEFLATE'd byte array into a byte array. + + + DeflateStream.CompressBuffer(byte[]) + DeflateStream.UncompressString(byte[]) + GZipStream.UncompressBuffer(byte[]) + ZlibStream.UncompressBuffer(byte[]) + + + A buffer containing data that has been compressed with DEFLATE. + + + The data in uncompressed form + + + + A class for compressing and decompressing GZIP streams. + + + + + The GZipStream is a Decorator on a + . It adds GZIP compression or decompression to any + stream. + + + + Like the System.IO.Compression.GZipStream in the .NET Base Class Library, the + Ionic.Zlib.GZipStream can compress while writing, or decompress while + reading, but not vice versa. The compression method used is GZIP, which is + documented in IETF RFC + 1952, "GZIP file format specification version 4.3". + + + A GZipStream can be used to decompress data (through Read()) or + to compress data (through Write()), but not both. + + + + If you wish to use the GZipStream to compress data, you must wrap it + around a write-able stream. As you call Write() on the GZipStream, the + data will be compressed into the GZIP format. If you want to decompress data, + you must wrap the GZipStream around a readable stream that contains an + IETF RFC 1952-compliant stream. The data will be decompressed as you call + Read() on the GZipStream. + + + + Though the GZIP format allows data from multiple files to be concatenated + together, this stream handles only a single segment of GZIP format, typically + representing a single file. + + + + This class is similar to and . + ZlibStream handles RFC1950-compliant streams. + handles RFC1951-compliant streams. This class handles RFC1952-compliant streams. + + + + + + + + + + The comment on the GZIP stream. + + + + + The GZIP format allows for each file to optionally have an associated + comment stored with the file. The comment is encoded with the ISO-8859-1 + code page. To include a comment in a GZIP stream you create, set this + property before calling Write() for the first time on the + GZipStream. + + + + When using GZipStream to decompress, you can retrieve this property + after the first call to Read(). If no comment has been set in the + GZIP bytestream, the Comment property will return null + (Nothing in VB). + + + + + + The FileName for the GZIP stream. + + + + + + The GZIP format optionally allows each file to have an associated + filename. When compressing data (through Write()), set this + FileName before calling Write() the first time on the GZipStream. + The actual filename is encoded into the GZIP bytestream with the + ISO-8859-1 code page, according to RFC 1952. It is the application's + responsibility to insure that the FileName can be encoded and decoded + correctly with this code page. + + + + When decompressing (through Read()), you can retrieve this value + any time after the first Read(). In the case where there was no filename + encoded into the GZIP bytestream, the property will return null (Nothing + in VB). + + + + + + The last modified time for the GZIP stream. + + + + GZIP allows the storage of a last modified time with each GZIP entry. + When compressing data, you can set this before the first call to + Write(). When decompressing, you can retrieve this value any time + after the first call to Read(). + + + + + The CRC on the GZIP stream. + + + This is used for internal error checking. You probably don't need to look at this property. + + + + + Create a GZipStream using the specified CompressionMode. + + + + + When mode is CompressionMode.Compress, the GZipStream will use the + default compression level. + + + + As noted in the class documentation, the CompressionMode (Compress + or Decompress) also establishes the "direction" of the stream. A + GZipStream with CompressionMode.Compress works only through + Write(). A GZipStream with + CompressionMode.Decompress works only through Read(). + + + + + + This example shows how to use a GZipStream to compress data. + + using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) + { + using (var raw = System.IO.File.Create(outputFile)) + { + using (Stream compressor = new GZipStream(raw, CompressionMode.Compress)) + { + byte[] buffer = new byte[WORKING_BUFFER_SIZE]; + int n; + while ((n= input.Read(buffer, 0, buffer.Length)) != 0) + { + compressor.Write(buffer, 0, n); + } + } + } + } + + + Dim outputFile As String = (fileToCompress & ".compressed") + Using input As Stream = File.OpenRead(fileToCompress) + Using raw As FileStream = File.Create(outputFile) + Using compressor As Stream = New GZipStream(raw, CompressionMode.Compress) + Dim buffer As Byte() = New Byte(4096) {} + Dim n As Integer = -1 + Do While (n <> 0) + If (n > 0) Then + compressor.Write(buffer, 0, n) + End If + n = input.Read(buffer, 0, buffer.Length) + Loop + End Using + End Using + End Using + + + + + This example shows how to use a GZipStream to uncompress a file. + + private void GunZipFile(string filename) + { + if (!filename.EndsWith(".gz)) + throw new ArgumentException("filename"); + var DecompressedFile = filename.Substring(0,filename.Length-3); + byte[] working = new byte[WORKING_BUFFER_SIZE]; + int n= 1; + using (System.IO.Stream input = System.IO.File.OpenRead(filename)) + { + using (Stream decompressor= new Ionic.Zlib.GZipStream(input, CompressionMode.Decompress, true)) + { + using (var output = System.IO.File.Create(DecompressedFile)) + { + while (n !=0) + { + n= decompressor.Read(working, 0, working.Length); + if (n > 0) + { + output.Write(working, 0, n); + } + } + } + } + } + } + + + + Private Sub GunZipFile(ByVal filename as String) + If Not (filename.EndsWith(".gz)) Then + Throw New ArgumentException("filename") + End If + Dim DecompressedFile as String = filename.Substring(0,filename.Length-3) + Dim working(WORKING_BUFFER_SIZE) as Byte + Dim n As Integer = 1 + Using input As Stream = File.OpenRead(filename) + Using decompressor As Stream = new Ionic.Zlib.GZipStream(input, CompressionMode.Decompress, True) + Using output As Stream = File.Create(UncompressedFile) + Do + n= decompressor.Read(working, 0, working.Length) + If n > 0 Then + output.Write(working, 0, n) + End IF + Loop While (n > 0) + End Using + End Using + End Using + End Sub + + + + The stream which will be read or written. + Indicates whether the GZipStream will compress or decompress. + + + + Create a GZipStream using the specified CompressionMode and + the specified CompressionLevel. + + + + + The CompressionMode (Compress or Decompress) also establishes the + "direction" of the stream. A GZipStream with + CompressionMode.Compress works only through Write(). A + GZipStream with CompressionMode.Decompress works only + through Read(). + + + + + + + This example shows how to use a GZipStream to compress a file into a .gz file. + + + using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) + { + using (var raw = System.IO.File.Create(fileToCompress + ".gz")) + { + using (Stream compressor = new GZipStream(raw, + CompressionMode.Compress, + CompressionLevel.BestCompression)) + { + byte[] buffer = new byte[WORKING_BUFFER_SIZE]; + int n; + while ((n= input.Read(buffer, 0, buffer.Length)) != 0) + { + compressor.Write(buffer, 0, n); + } + } + } + } + + + + Using input As Stream = File.OpenRead(fileToCompress) + Using raw As FileStream = File.Create(fileToCompress & ".gz") + Using compressor As Stream = New GZipStream(raw, CompressionMode.Compress, CompressionLevel.BestCompression) + Dim buffer As Byte() = New Byte(4096) {} + Dim n As Integer = -1 + Do While (n <> 0) + If (n > 0) Then + compressor.Write(buffer, 0, n) + End If + n = input.Read(buffer, 0, buffer.Length) + Loop + End Using + End Using + End Using + + + The stream to be read or written while deflating or inflating. + Indicates whether the GZipStream will compress or decompress. + A tuning knob to trade speed for effectiveness. + + + + Create a GZipStream using the specified CompressionMode, and + explicitly specify whether the stream should be left open after Deflation + or Inflation. + + + + + This constructor allows the application to request that the captive stream + remain open after the deflation or inflation occurs. By default, after + Close() is called on the stream, the captive stream is also + closed. In some cases this is not desired, for example if the stream is a + memory stream that will be re-read after compressed data has been written + to it. Specify true for the parameter to leave + the stream open. + + + + The (Compress or Decompress) also + establishes the "direction" of the stream. A GZipStream with + CompressionMode.Compress works only through Write(). A GZipStream + with CompressionMode.Decompress works only through Read(). + + + + The GZipStream will use the default compression level. If you want + to specify the compression level, see . + + + + See the other overloads of this constructor for example code. + + + + + + The stream which will be read or written. This is called the "captive" + stream in other places in this documentation. + + + Indicates whether the GZipStream will compress or decompress. + + + + true if the application would like the base stream to remain open after + inflation/deflation. + + + + + Create a GZipStream using the specified CompressionMode and the + specified CompressionLevel, and explicitly specify whether the + stream should be left open after Deflation or Inflation. + + + + + + This constructor allows the application to request that the captive stream + remain open after the deflation or inflation occurs. By default, after + Close() is called on the stream, the captive stream is also + closed. In some cases this is not desired, for example if the stream is a + memory stream that will be re-read after compressed data has been written + to it. Specify true for the parameter to + leave the stream open. + + + + As noted in the class documentation, the CompressionMode (Compress + or Decompress) also establishes the "direction" of the stream. A + GZipStream with CompressionMode.Compress works only through + Write(). A GZipStream with CompressionMode.Decompress works only + through Read(). + + + + + + This example shows how to use a GZipStream to compress data. + + using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) + { + using (var raw = System.IO.File.Create(outputFile)) + { + using (Stream compressor = new GZipStream(raw, CompressionMode.Compress, CompressionLevel.BestCompression, true)) + { + byte[] buffer = new byte[WORKING_BUFFER_SIZE]; + int n; + while ((n= input.Read(buffer, 0, buffer.Length)) != 0) + { + compressor.Write(buffer, 0, n); + } + } + } + } + + + Dim outputFile As String = (fileToCompress & ".compressed") + Using input As Stream = File.OpenRead(fileToCompress) + Using raw As FileStream = File.Create(outputFile) + Using compressor As Stream = New GZipStream(raw, CompressionMode.Compress, CompressionLevel.BestCompression, True) + Dim buffer As Byte() = New Byte(4096) {} + Dim n As Integer = -1 + Do While (n <> 0) + If (n > 0) Then + compressor.Write(buffer, 0, n) + End If + n = input.Read(buffer, 0, buffer.Length) + Loop + End Using + End Using + End Using + + + The stream which will be read or written. + Indicates whether the GZipStream will compress or decompress. + true if the application would like the stream to remain open after inflation/deflation. + A tuning knob to trade speed for effectiveness. + + + + This property sets the flush behavior on the stream. + + + + + The size of the working buffer for the compression codec. + + + + + The working buffer is used for all stream operations. The default size is + 1024 bytes. The minimum size is 128 bytes. You may get better performance + with a larger buffer. Then again, you might not. You would have to test + it. + + + + Set this before the first call to Read() or Write() on the + stream. If you try to set it afterwards, it will throw. + + + + + Returns the total number of bytes input so far. + + + Returns the total number of bytes output so far. + + + + Dispose the stream. + + + + This may or may not result in a Close() call on the captive + stream. See the constructors that have a leaveOpen parameter + for more information. + + + This method may be invoked in two distinct scenarios. If disposing + == true, the method has been called directly or indirectly by a + user's code, for example via the public Dispose() method. In this + case, both managed and unmanaged resources can be referenced and + disposed. If disposing == false, the method has been called by the + runtime from inside the object finalizer and this method should not + reference other objects; in that case only unmanaged resources must + be referenced or disposed. + + + + indicates whether the Dispose method was invoked by user code. + + + + + Indicates whether the stream can be read. + + + The return value depends on whether the captive stream supports reading. + + + + + Indicates whether the stream supports Seek operations. + + + Always returns false. + + + + + Indicates whether the stream can be written. + + + The return value depends on whether the captive stream supports writing. + + + + + Flush the stream. + + + + + Reading this property always throws a . + + + + + The position of the stream pointer. + + + + Setting this property always throws a . Reading will return the total bytes + written out, if used in writing, or the total bytes read in, if used in + reading. The count may refer to compressed bytes or uncompressed bytes, + depending on how you've used the stream. + + + + + Read and decompress data from the source stream. + + + + With a GZipStream, decompression is done through reading. + + + + + byte[] working = new byte[WORKING_BUFFER_SIZE]; + using (System.IO.Stream input = System.IO.File.OpenRead(_CompressedFile)) + { + using (Stream decompressor= new Ionic.Zlib.GZipStream(input, CompressionMode.Decompress, true)) + { + using (var output = System.IO.File.Create(_DecompressedFile)) + { + int n; + while ((n= decompressor.Read(working, 0, working.Length)) !=0) + { + output.Write(working, 0, n); + } + } + } + } + + + The buffer into which the decompressed data should be placed. + the offset within that data array to put the first byte read. + the number of bytes to read. + the number of bytes actually read + + + + Calling this method always throws a . + + irrelevant; it will always throw! + irrelevant; it will always throw! + irrelevant! + + + + Calling this method always throws a . + + irrelevant; this method will always throw! + + + + Write data to the stream. + + + + + If you wish to use the GZipStream to compress data while writing, + you can create a GZipStream with CompressionMode.Compress, and a + writable output stream. Then call Write() on that GZipStream, + providing uncompressed data as input. The data sent to the output stream + will be the compressed form of the data written. + + + + A GZipStream can be used for Read() or Write(), but not + both. Writing implies compression. Reading implies decompression. + + + + The buffer holding data to write to the stream. + the offset within that data array to find the first byte to write. + the number of bytes to write. + + + + Compress a string into a byte array using GZip. + + + + Uncompress it with . + + + + + + + A string to compress. The string will first be encoded + using UTF8, then compressed. + + + The string in compressed form + + + + Compress a byte array into a new byte array using GZip. + + + + Uncompress it with . + + + + + + + A buffer to compress. + + + The data in compressed form + + + + Uncompress a GZip'ed byte array into a single string. + + + + + + + A buffer containing GZIP-compressed data. + + + The uncompressed string + + + + Uncompress a GZip'ed byte array into a byte array. + + + + + + + A buffer containing data that has been compressed with GZip. + + + The data in uncompressed form + + + + A class for compressing streams using the + Deflate algorithm with multiple threads. + + + + + This class performs DEFLATE compression through writing. For + more information on the Deflate algorithm, see IETF RFC 1951, + "DEFLATE Compressed Data Format Specification version 1.3." + + + + This class is similar to , except + that this class is for compression only, and this implementation uses an + approach that employs multiple worker threads to perform the DEFLATE. On + a multi-cpu or multi-core computer, the performance of this class can be + significantly higher than the single-threaded DeflateStream, particularly + for larger streams. How large? Anything over 10mb is a good candidate + for parallel compression. + + + + The tradeoff is that this class uses more memory and more CPU than the + vanilla DeflateStream, and also is less efficient as a compressor. For + large files the size of the compressed data stream can be less than 1% + larger than the size of a compressed data stream from the vanialla + DeflateStream. For smaller files the difference can be larger. The + difference will also be larger if you set the BufferSize to be lower than + the default value. Your mileage may vary. Finally, for small files, the + ParallelDeflateOutputStream can be much slower than the vanilla + DeflateStream, because of the overhead associated to using the thread + pool. + + + + + + + + Create a ParallelDeflateOutputStream. + + + + + This stream compresses data written into it via the DEFLATE + algorithm (see RFC 1951), and writes out the compressed byte stream. + + + + The instance will use the default compression level, the default + buffer sizes and the default number of threads and buffers per + thread. + + + + This class is similar to , + except that this implementation uses an approach that employs + multiple worker threads to perform the DEFLATE. On a multi-cpu or + multi-core computer, the performance of this class can be + significantly higher than the single-threaded DeflateStream, + particularly for larger streams. How large? Anything over 10mb is + a good candidate for parallel compression. + + + + + + + This example shows how to use a ParallelDeflateOutputStream to compress + data. It reads a file, compresses it, and writes the compressed data to + a second, output file. + + + byte[] buffer = new byte[WORKING_BUFFER_SIZE]; + int n= -1; + String outputFile = fileToCompress + ".compressed"; + using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) + { + using (var raw = System.IO.File.Create(outputFile)) + { + using (Stream compressor = new ParallelDeflateOutputStream(raw)) + { + while ((n= input.Read(buffer, 0, buffer.Length)) != 0) + { + compressor.Write(buffer, 0, n); + } + } + } + } + + + Dim buffer As Byte() = New Byte(4096) {} + Dim n As Integer = -1 + Dim outputFile As String = (fileToCompress & ".compressed") + Using input As Stream = File.OpenRead(fileToCompress) + Using raw As FileStream = File.Create(outputFile) + Using compressor As Stream = New ParallelDeflateOutputStream(raw) + Do While (n <> 0) + If (n > 0) Then + compressor.Write(buffer, 0, n) + End If + n = input.Read(buffer, 0, buffer.Length) + Loop + End Using + End Using + End Using + + + The stream to which compressed data will be written. + + + + Create a ParallelDeflateOutputStream using the specified CompressionLevel. + + + See the + constructor for example code. + + The stream to which compressed data will be written. + A tuning knob to trade speed for effectiveness. + + + + Create a ParallelDeflateOutputStream and specify whether to leave the captive stream open + when the ParallelDeflateOutputStream is closed. + + + See the + constructor for example code. + + The stream to which compressed data will be written. + + true if the application would like the stream to remain open after inflation/deflation. + + + + + Create a ParallelDeflateOutputStream and specify whether to leave the captive stream open + when the ParallelDeflateOutputStream is closed. + + + See the + constructor for example code. + + The stream to which compressed data will be written. + A tuning knob to trade speed for effectiveness. + + true if the application would like the stream to remain open after inflation/deflation. + + + + + Create a ParallelDeflateOutputStream using the specified + CompressionLevel and CompressionStrategy, and specifying whether to + leave the captive stream open when the ParallelDeflateOutputStream is + closed. + + + See the + constructor for example code. + + The stream to which compressed data will be written. + A tuning knob to trade speed for effectiveness. + + By tweaking this parameter, you may be able to optimize the compression for + data with particular characteristics. + + + true if the application would like the stream to remain open after inflation/deflation. + + + + + The ZLIB strategy to be used during compression. + + + + + + The maximum number of buffer pairs to use. + + + + + This property sets an upper limit on the number of memory buffer + pairs to create. The implementation of this stream allocates + multiple buffers to facilitate parallel compression. As each buffer + fills up, this stream uses + ThreadPool.QueueUserWorkItem() + to compress those buffers in a background threadpool thread. After a + buffer is compressed, it is re-ordered and written to the output + stream. + + + + A higher number of buffer pairs enables a higher degree of + parallelism, which tends to increase the speed of compression on + multi-cpu computers. On the other hand, a higher number of buffer + pairs also implies a larger memory consumption, more active worker + threads, and a higher cpu utilization for any compression. This + property enables the application to limit its memory consumption and + CPU utilization behavior depending on requirements. + + + + For each compression "task" that occurs in parallel, there are 2 + buffers allocated: one for input and one for output. This property + sets a limit for the number of pairs. The total amount of storage + space allocated for buffering will then be (N*S*2), where N is the + number of buffer pairs, S is the size of each buffer (). By default, DotNetZip allocates 4 buffer + pairs per CPU core, so if your machine has 4 cores, and you retain + the default buffer size of 128k, then the + ParallelDeflateOutputStream will use 4 * 4 * 2 * 128kb of buffer + memory in total, or 4mb, in blocks of 128kb. If you then set this + property to 8, then the number will be 8 * 2 * 128kb of buffer + memory, or 2mb. + + + + CPU utilization will also go up with additional buffers, because a + larger number of buffer pairs allows a larger number of background + threads to compress in parallel. If you find that parallel + compression is consuming too much memory or CPU, you can adjust this + value downward. + + + + The default value is 16. Different values may deliver better or + worse results, depending on your priorities and the dynamic + performance characteristics of your storage and compute resources. + + + + This property is not the number of buffer pairs to use; it is an + upper limit. An illustration: Suppose you have an application that + uses the default value of this property (which is 16), and it runs + on a machine with 2 CPU cores. In that case, DotNetZip will allocate + 4 buffer pairs per CPU core, for a total of 8 pairs. The upper + limit specified by this property has no effect. + + + + The application can set this value at any time, but it is effective + only before the first call to Write(), which is when the buffers are + allocated. + + + + + + The size of the buffers used by the compressor threads. + + + + + The default buffer size is 128k. The application can set this value + at any time, but it is effective only before the first Write(). + + + + Larger buffer sizes implies larger memory consumption but allows + more efficient compression. Using smaller buffer sizes consumes less + memory but may result in less effective compression. For example, + using the default buffer size of 128k, the compression delivered is + within 1% of the compression delivered by the single-threaded . On the other hand, using a + BufferSize of 8k can result in a compressed data stream that is 5% + larger than that delivered by the single-threaded + DeflateStream. Excessively small buffer sizes can also cause + the speed of the ParallelDeflateOutputStream to drop, because of + larger thread scheduling overhead dealing with many many small + buffers. + + + + The total amount of storage space allocated for buffering will be + (N*S*2), where N is the number of buffer pairs, and S is the size of + each buffer (this property). There are 2 buffers used by the + compressor, one for input and one for output. By default, DotNetZip + allocates 4 buffer pairs per CPU core, so if your machine has 4 + cores, then the number of buffer pairs used will be 16. If you + accept the default value of this property, 128k, then the + ParallelDeflateOutputStream will use 16 * 2 * 128kb of buffer memory + in total, or 4mb, in blocks of 128kb. If you set this property to + 64kb, then the number will be 16 * 2 * 64kb of buffer memory, or + 2mb. + + + + + + + The CRC32 for the data that was written out, prior to compression. + + + This value is meaningful only after a call to Close(). + + + + + The total number of uncompressed bytes processed by the ParallelDeflateOutputStream. + + + This value is meaningful only after a call to Close(). + + + + + Write data to the stream. + + + + + + To use the ParallelDeflateOutputStream to compress data, create a + ParallelDeflateOutputStream with CompressionMode.Compress, passing a + writable output stream. Then call Write() on that + ParallelDeflateOutputStream, providing uncompressed data as input. The + data sent to the output stream will be the compressed form of the data + written. + + + + To decompress data, use the class. + + + + The buffer holding data to write to the stream. + the offset within that data array to find the first byte to write. + the number of bytes to write. + + + + Flush the stream. + + + + + Close the stream. + + + You must call Close on the stream to guarantee that all of the data written in has + been compressed, and the compressed data has been written out. + + + + Dispose the object + + + Because ParallelDeflateOutputStream is IDisposable, the + application must call this method when finished using the instance. + + + This method is generally called implicitly upon exit from + a using scope in C# (Using in VB). + + + + + The Dispose method + + indicates whether the Dispose method was invoked by user code. + + + + + Resets the stream for use with another stream. + + + Because the ParallelDeflateOutputStream is expensive to create, it + has been designed so that it can be recycled and re-used. You have + to call Close() on the stream first, then you can call Reset() on + it, to use it again on another stream. + + + + The new output stream for this era. + + + + + ParallelDeflateOutputStream deflater = null; + foreach (var inputFile in listOfFiles) + { + string outputFile = inputFile + ".compressed"; + using (System.IO.Stream input = System.IO.File.OpenRead(inputFile)) + { + using (var outStream = System.IO.File.Create(outputFile)) + { + if (deflater == null) + deflater = new ParallelDeflateOutputStream(outStream, + CompressionLevel.Best, + CompressionStrategy.Default, + true); + deflater.Reset(outStream); + + while ((n= input.Read(buffer, 0, buffer.Length)) != 0) + { + deflater.Write(buffer, 0, n); + } + } + } + } + + + + + + Indicates whether the stream supports Seek operations. + + + Always returns false. + + + + + Indicates whether the stream supports Read operations. + + + Always returns false. + + + + + Indicates whether the stream supports Write operations. + + + Returns true if the provided stream is writable. + + + + + Reading this property always throws a NotSupportedException. + + + + + Returns the current position of the output stream. + + + + Because the output gets written by a background thread, + the value may change asynchronously. Setting this + property always throws a NotSupportedException. + + + + + + This method always throws a NotSupportedException. + + + The buffer into which data would be read, IF THIS METHOD + ACTUALLY DID ANYTHING. + + + The offset within that data array at which to insert the + data that is read, IF THIS METHOD ACTUALLY DID + ANYTHING. + + + The number of bytes to write, IF THIS METHOD ACTUALLY DID + ANYTHING. + + nothing. + + + + This method always throws a NotSupportedException. + + + The offset to seek to.... + IF THIS METHOD ACTUALLY DID ANYTHING. + + + The reference specifying how to apply the offset.... IF + THIS METHOD ACTUALLY DID ANYTHING. + + nothing. It always throws. + + + + This method always throws a NotSupportedException. + + + The new value for the stream length.... IF + THIS METHOD ACTUALLY DID ANYTHING. + + + + + Map from a distance to a distance code. + + + No side effects. _dist_code[256] and _dist_code[257] are never used. + + + + + Describes how to flush the current deflate operation. + + + The different FlushType values are useful when using a Deflate in a streaming application. + + + + No flush at all. + + + Closes the current block, but doesn't flush it to + the output. Used internally only in hypothetical + scenarios. This was supposed to be removed by Zlib, but it is + still in use in some edge cases. + + + + + Use this during compression to specify that all pending output should be + flushed to the output buffer and the output should be aligned on a byte + boundary. You might use this in a streaming communication scenario, so that + the decompressor can get all input data available so far. When using this + with a ZlibCodec, AvailableBytesIn will be zero after the call if + enough output space has been provided before the call. Flushing will + degrade compression and so it should be used only when necessary. + + + + + Use this during compression to specify that all output should be flushed, as + with FlushType.Sync, but also, the compression state should be reset + so that decompression can restart from this point if previous compressed + data has been damaged or if random access is desired. Using + FlushType.Full too often can significantly degrade the compression. + + + + Signals the end of the compression/decompression stream. + + + + The compression level to be used when using a DeflateStream or ZlibStream with CompressionMode.Compress. + + + + + None means that the data will be simply stored, with no change at all. + If you are producing ZIPs for use on Mac OSX, be aware that archives produced with CompressionLevel.None + cannot be opened with the default zip reader. Use a different CompressionLevel. + + + + + Same as None. + + + + + The fastest but least effective compression. + + + + + A synonym for BestSpeed. + + + + + A little slower, but better, than level 1. + + + + + A little slower, but better, than level 2. + + + + + A little slower, but better, than level 3. + + + + + A little slower than level 4, but with better compression. + + + + + The default compression level, with a good balance of speed and compression efficiency. + + + + + A synonym for Default. + + + + + Pretty good compression! + + + + + Better compression than Level7! + + + + + The "best" compression, where best means greatest reduction in size of the input data stream. + This is also the slowest compression. + + + + + A synonym for BestCompression. + + + + + Describes options for how the compression algorithm is executed. Different strategies + work better on different sorts of data. The strategy parameter can affect the compression + ratio and the speed of compression but not the correctness of the compresssion. + + + + + The default strategy is probably the best for normal data. + + + + + The Filtered strategy is intended to be used most effectively with data produced by a + filter or predictor. By this definition, filtered data consists mostly of small + values with a somewhat random distribution. In this case, the compression algorithm + is tuned to compress them better. The effect of Filtered is to force more Huffman + coding and less string matching; it is a half-step between Default and HuffmanOnly. + + + + + Using HuffmanOnly will force the compressor to do Huffman encoding only, with no + string matching. + + + + + An enum to specify the direction of transcoding - whether to compress or decompress. + + + + + Used to specify that the stream should compress the data. + + + + + Used to specify that the stream should decompress the data. + + + + + A general purpose exception class for exceptions in the Zlib library. + + + + + The ZlibException class captures exception information generated + by the Zlib library. + + + + + This ctor collects a message attached to the exception. + + the message for the exception. + + + + Performs an unsigned bitwise right shift with the specified number + + Number to operate on + Ammount of bits to shift + The resulting number from the shift operation + + + + Reads a number of characters from the current source TextReader and writes + the data to the target array at the specified index. + + + The source TextReader to read from + Contains the array of characteres read from the source TextReader. + The starting index of the target array. + The maximum number of characters to read from the source TextReader. + + + The number of characters read. The number will be less than or equal to + count depending on the data available in the source TextReader. Returns -1 + if the end of the stream is reached. + + + + + Computes an Adler-32 checksum. + + + The Adler checksum is similar to a CRC checksum, but faster to compute, though less + reliable. It is used in producing RFC1950 compressed streams. The Adler checksum + is a required part of the "ZLIB" standard. Applications will almost never need to + use this class directly. + + + + + + + Calculates the Adler32 checksum. + + + + This is used within ZLIB. You probably don't need to use this directly. + + + + To compute an Adler32 checksum on a byte array: + + var adler = Adler.Adler32(0, null, 0, 0); + adler = Adler.Adler32(adler, buffer, index, length); + + + + + + Encoder and Decoder for ZLIB and DEFLATE (IETF RFC1950 and RFC1951). + + + + This class compresses and decompresses data according to the Deflate algorithm + and optionally, the ZLIB format, as documented in RFC 1950 - ZLIB and RFC 1951 - DEFLATE. + + + + + The buffer from which data is taken. + + + + + An index into the InputBuffer array, indicating where to start reading. + + + + + The number of bytes available in the InputBuffer, starting at NextIn. + + + Generally you should set this to InputBuffer.Length before the first Inflate() or Deflate() call. + The class will update this number as calls to Inflate/Deflate are made. + + + + + Total number of bytes read so far, through all calls to Inflate()/Deflate(). + + + + + Buffer to store output data. + + + + + An index into the OutputBuffer array, indicating where to start writing. + + + + + The number of bytes available in the OutputBuffer, starting at NextOut. + + + Generally you should set this to OutputBuffer.Length before the first Inflate() or Deflate() call. + The class will update this number as calls to Inflate/Deflate are made. + + + + + Total number of bytes written to the output so far, through all calls to Inflate()/Deflate(). + + + + + used for diagnostics, when something goes wrong! + + + + + The compression level to use in this codec. Useful only in compression mode. + + + + + The number of Window Bits to use. + + + This gauges the size of the sliding window, and hence the + compression effectiveness as well as memory consumption. It's best to just leave this + setting alone if you don't know what it is. The maximum value is 15 bits, which implies + a 32k window. + + + + + The compression strategy to use. + + + This is only effective in compression. The theory offered by ZLIB is that different + strategies could potentially produce significant differences in compression behavior + for different data sets. Unfortunately I don't have any good recommendations for how + to set it differently. When I tested changing the strategy I got minimally different + compression performance. It's best to leave this property alone if you don't have a + good feel for it. Or, you may want to produce a test harness that runs through the + different strategy options and evaluates them on different file types. If you do that, + let me know your results. + + + + + The Adler32 checksum on the data transferred through the codec so far. You probably don't need to look at this. + + + + + Create a ZlibCodec. + + + If you use this default constructor, you will later have to explicitly call + InitializeInflate() or InitializeDeflate() before using the ZlibCodec to compress + or decompress. + + + + + Create a ZlibCodec that either compresses or decompresses. + + + Indicates whether the codec should compress (deflate) or decompress (inflate). + + + + + Initialize the inflation state. + + + It is not necessary to call this before using the ZlibCodec to inflate data; + It is implicitly called when you call the constructor. + + Z_OK if everything goes well. + + + + Initialize the inflation state with an explicit flag to + govern the handling of RFC1950 header bytes. + + + + By default, the ZLIB header defined in RFC 1950 is expected. If + you want to read a zlib stream you should specify true for + expectRfc1950Header. If you have a deflate stream, you will want to specify + false. It is only necessary to invoke this initializer explicitly if you + want to specify false. + + + whether to expect an RFC1950 header byte + pair when reading the stream of data to be inflated. + + Z_OK if everything goes well. + + + + Initialize the ZlibCodec for inflation, with the specified number of window bits. + + The number of window bits to use. If you need to ask what that is, + then you shouldn't be calling this initializer. + Z_OK if all goes well. + + + + Initialize the inflation state with an explicit flag to govern the handling of + RFC1950 header bytes. + + + + If you want to read a zlib stream you should specify true for + expectRfc1950Header. In this case, the library will expect to find a ZLIB + header, as defined in RFC + 1950, in the compressed stream. If you will be reading a DEFLATE or + GZIP stream, which does not have such a header, you will want to specify + false. + + + whether to expect an RFC1950 header byte pair when reading + the stream of data to be inflated. + The number of window bits to use. If you need to ask what that is, + then you shouldn't be calling this initializer. + Z_OK if everything goes well. + + + + Inflate the data in the InputBuffer, placing the result in the OutputBuffer. + + + You must have set InputBuffer and OutputBuffer, NextIn and NextOut, and AvailableBytesIn and + AvailableBytesOut before calling this method. + + + + private void InflateBuffer() + { + int bufferSize = 1024; + byte[] buffer = new byte[bufferSize]; + ZlibCodec decompressor = new ZlibCodec(); + + Console.WriteLine("\n============================================"); + Console.WriteLine("Size of Buffer to Inflate: {0} bytes.", CompressedBytes.Length); + MemoryStream ms = new MemoryStream(DecompressedBytes); + + int rc = decompressor.InitializeInflate(); + + decompressor.InputBuffer = CompressedBytes; + decompressor.NextIn = 0; + decompressor.AvailableBytesIn = CompressedBytes.Length; + + decompressor.OutputBuffer = buffer; + + // pass 1: inflate + do + { + decompressor.NextOut = 0; + decompressor.AvailableBytesOut = buffer.Length; + rc = decompressor.Inflate(FlushType.None); + + if (rc != ZlibConstants.Z_OK && rc != ZlibConstants.Z_STREAM_END) + throw new Exception("inflating: " + decompressor.Message); + + ms.Write(decompressor.OutputBuffer, 0, buffer.Length - decompressor.AvailableBytesOut); + } + while (decompressor.AvailableBytesIn > 0 || decompressor.AvailableBytesOut == 0); + + // pass 2: finish and flush + do + { + decompressor.NextOut = 0; + decompressor.AvailableBytesOut = buffer.Length; + rc = decompressor.Inflate(FlushType.Finish); + + if (rc != ZlibConstants.Z_STREAM_END && rc != ZlibConstants.Z_OK) + throw new Exception("inflating: " + decompressor.Message); + + if (buffer.Length - decompressor.AvailableBytesOut > 0) + ms.Write(buffer, 0, buffer.Length - decompressor.AvailableBytesOut); + } + while (decompressor.AvailableBytesIn > 0 || decompressor.AvailableBytesOut == 0); + + decompressor.EndInflate(); + } + + + + The flush to use when inflating. + Z_OK if everything goes well. + + + + Ends an inflation session. + + + Call this after successively calling Inflate(). This will cause all buffers to be flushed. + After calling this you cannot call Inflate() without a intervening call to one of the + InitializeInflate() overloads. + + Z_OK if everything goes well. + + + + I don't know what this does! + + Z_OK if everything goes well. + + + + Initialize the ZlibCodec for deflation operation. + + + The codec will use the MAX window bits and the default level of compression. + + + + int bufferSize = 40000; + byte[] CompressedBytes = new byte[bufferSize]; + byte[] DecompressedBytes = new byte[bufferSize]; + + ZlibCodec compressor = new ZlibCodec(); + + compressor.InitializeDeflate(CompressionLevel.Default); + + compressor.InputBuffer = System.Text.ASCIIEncoding.ASCII.GetBytes(TextToCompress); + compressor.NextIn = 0; + compressor.AvailableBytesIn = compressor.InputBuffer.Length; + + compressor.OutputBuffer = CompressedBytes; + compressor.NextOut = 0; + compressor.AvailableBytesOut = CompressedBytes.Length; + + while (compressor.TotalBytesIn != TextToCompress.Length && compressor.TotalBytesOut < bufferSize) + { + compressor.Deflate(FlushType.None); + } + + while (true) + { + int rc= compressor.Deflate(FlushType.Finish); + if (rc == ZlibConstants.Z_STREAM_END) break; + } + + compressor.EndDeflate(); + + + + Z_OK if all goes well. You generally don't need to check the return code. + + + + Initialize the ZlibCodec for deflation operation, using the specified CompressionLevel. + + + The codec will use the maximum window bits (15) and the specified + CompressionLevel. It will emit a ZLIB stream as it compresses. + + The compression level for the codec. + Z_OK if all goes well. + + + + Initialize the ZlibCodec for deflation operation, using the specified CompressionLevel, + and the explicit flag governing whether to emit an RFC1950 header byte pair. + + + The codec will use the maximum window bits (15) and the specified CompressionLevel. + If you want to generate a zlib stream, you should specify true for + wantRfc1950Header. In this case, the library will emit a ZLIB + header, as defined in RFC + 1950, in the compressed stream. + + The compression level for the codec. + whether to emit an initial RFC1950 byte pair in the compressed stream. + Z_OK if all goes well. + + + + Initialize the ZlibCodec for deflation operation, using the specified CompressionLevel, + and the specified number of window bits. + + + The codec will use the specified number of window bits and the specified CompressionLevel. + + The compression level for the codec. + the number of window bits to use. If you don't know what this means, don't use this method. + Z_OK if all goes well. + + + + Initialize the ZlibCodec for deflation operation, using the specified + CompressionLevel, the specified number of window bits, and the explicit flag + governing whether to emit an RFC1950 header byte pair. + + + The compression level for the codec. + whether to emit an initial RFC1950 byte pair in the compressed stream. + the number of window bits to use. If you don't know what this means, don't use this method. + Z_OK if all goes well. + + + + Deflate one batch of data. + + + You must have set InputBuffer and OutputBuffer before calling this method. + + + + private void DeflateBuffer(CompressionLevel level) + { + int bufferSize = 1024; + byte[] buffer = new byte[bufferSize]; + ZlibCodec compressor = new ZlibCodec(); + + Console.WriteLine("\n============================================"); + Console.WriteLine("Size of Buffer to Deflate: {0} bytes.", UncompressedBytes.Length); + MemoryStream ms = new MemoryStream(); + + int rc = compressor.InitializeDeflate(level); + + compressor.InputBuffer = UncompressedBytes; + compressor.NextIn = 0; + compressor.AvailableBytesIn = UncompressedBytes.Length; + + compressor.OutputBuffer = buffer; + + // pass 1: deflate + do + { + compressor.NextOut = 0; + compressor.AvailableBytesOut = buffer.Length; + rc = compressor.Deflate(FlushType.None); + + if (rc != ZlibConstants.Z_OK && rc != ZlibConstants.Z_STREAM_END) + throw new Exception("deflating: " + compressor.Message); + + ms.Write(compressor.OutputBuffer, 0, buffer.Length - compressor.AvailableBytesOut); + } + while (compressor.AvailableBytesIn > 0 || compressor.AvailableBytesOut == 0); + + // pass 2: finish and flush + do + { + compressor.NextOut = 0; + compressor.AvailableBytesOut = buffer.Length; + rc = compressor.Deflate(FlushType.Finish); + + if (rc != ZlibConstants.Z_STREAM_END && rc != ZlibConstants.Z_OK) + throw new Exception("deflating: " + compressor.Message); + + if (buffer.Length - compressor.AvailableBytesOut > 0) + ms.Write(buffer, 0, buffer.Length - compressor.AvailableBytesOut); + } + while (compressor.AvailableBytesIn > 0 || compressor.AvailableBytesOut == 0); + + compressor.EndDeflate(); + + ms.Seek(0, SeekOrigin.Begin); + CompressedBytes = new byte[compressor.TotalBytesOut]; + ms.Read(CompressedBytes, 0, CompressedBytes.Length); + } + + + whether to flush all data as you deflate. Generally you will want to + use Z_NO_FLUSH here, in a series of calls to Deflate(), and then call EndDeflate() to + flush everything. + + Z_OK if all goes well. + + + + End a deflation session. + + + Call this after making a series of one or more calls to Deflate(). All buffers are flushed. + + Z_OK if all goes well. + + + + Reset a codec for another deflation session. + + + Call this to reset the deflation state. For example if a thread is deflating + non-consecutive blocks, you can call Reset() after the Deflate(Sync) of the first + block and before the next Deflate(None) of the second block. + + Z_OK if all goes well. + + + + Set the CompressionStrategy and CompressionLevel for a deflation session. + + the level of compression to use. + the strategy to use for compression. + Z_OK if all goes well. + + + + Set the dictionary to be used for either Inflation or Deflation. + + The dictionary bytes to use. + Z_OK if all goes well. + + + + A bunch of constants used in the Zlib interface. + + + + + The maximum number of window bits for the Deflate algorithm. + + + + + The default number of window bits for the Deflate algorithm. + + + + + indicates everything is A-OK + + + + + Indicates that the last operation reached the end of the stream. + + + + + The operation ended in need of a dictionary. + + + + + There was an error with the stream - not enough data, not open and readable, etc. + + + + + There was an error with the data - not enough data, bad data, etc. + + + + + There was an error with the working buffer. + + + + + The size of the working buffer used in the ZlibCodec class. + + + + + The minimum size of the working buffer used in the ZlibCodec class. + + + + + Represents a Zlib stream for compression or decompression. + + + + + The ZlibStream is a Decorator on a . It adds ZLIB compression or decompression to any + stream. + + + Using this stream, applications can compress or decompress data via + stream Read() and Write() operations. Either compresssion or + decompression can occur through either reading or writing. The compression + format used is ZLIB, which is documented in IETF RFC 1950, "ZLIB Compressed + Data Format Specification version 3.3". This implementation of ZLIB always uses + DEFLATE as the compression method. (see IETF RFC 1951, "DEFLATE + Compressed Data Format Specification version 1.3.") + + + The ZLIB format allows for varying compression methods, window sizes, and dictionaries. + This implementation always uses the DEFLATE compression method, a preset dictionary, + and 15 window bits by default. + + + + This class is similar to , except that it adds the + RFC1950 header and trailer bytes to a compressed stream when compressing, or expects + the RFC1950 header and trailer bytes when decompressing. It is also similar to the + . + + + + + + + + Create a ZlibStream using the specified CompressionMode. + + + + + When mode is CompressionMode.Compress, the ZlibStream + will use the default compression level. The "captive" stream will be + closed when the ZlibStream is closed. + + + + + + This example uses a ZlibStream to compress a file, and writes the + compressed data to another file. + + using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) + { + using (var raw = System.IO.File.Create(fileToCompress + ".zlib")) + { + using (Stream compressor = new ZlibStream(raw, CompressionMode.Compress)) + { + byte[] buffer = new byte[WORKING_BUFFER_SIZE]; + int n; + while ((n= input.Read(buffer, 0, buffer.Length)) != 0) + { + compressor.Write(buffer, 0, n); + } + } + } + } + + + Using input As Stream = File.OpenRead(fileToCompress) + Using raw As FileStream = File.Create(fileToCompress & ".zlib") + Using compressor As Stream = New ZlibStream(raw, CompressionMode.Compress) + Dim buffer As Byte() = New Byte(4096) {} + Dim n As Integer = -1 + Do While (n <> 0) + If (n > 0) Then + compressor.Write(buffer, 0, n) + End If + n = input.Read(buffer, 0, buffer.Length) + Loop + End Using + End Using + End Using + + + + The stream which will be read or written. + Indicates whether the ZlibStream will compress or decompress. + + + + Create a ZlibStream using the specified CompressionMode and + the specified CompressionLevel. + + + + + + When mode is CompressionMode.Decompress, the level parameter is ignored. + The "captive" stream will be closed when the ZlibStream is closed. + + + + + + This example uses a ZlibStream to compress data from a file, and writes the + compressed data to another file. + + + using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) + { + using (var raw = System.IO.File.Create(fileToCompress + ".zlib")) + { + using (Stream compressor = new ZlibStream(raw, + CompressionMode.Compress, + CompressionLevel.BestCompression)) + { + byte[] buffer = new byte[WORKING_BUFFER_SIZE]; + int n; + while ((n= input.Read(buffer, 0, buffer.Length)) != 0) + { + compressor.Write(buffer, 0, n); + } + } + } + } + + + + Using input As Stream = File.OpenRead(fileToCompress) + Using raw As FileStream = File.Create(fileToCompress & ".zlib") + Using compressor As Stream = New ZlibStream(raw, CompressionMode.Compress, CompressionLevel.BestCompression) + Dim buffer As Byte() = New Byte(4096) {} + Dim n As Integer = -1 + Do While (n <> 0) + If (n > 0) Then + compressor.Write(buffer, 0, n) + End If + n = input.Read(buffer, 0, buffer.Length) + Loop + End Using + End Using + End Using + + + + The stream to be read or written while deflating or inflating. + Indicates whether the ZlibStream will compress or decompress. + A tuning knob to trade speed for effectiveness. + + + + Create a ZlibStream using the specified CompressionMode, and + explicitly specify whether the captive stream should be left open after + Deflation or Inflation. + + + + + + When mode is CompressionMode.Compress, the ZlibStream will use + the default compression level. + + + + This constructor allows the application to request that the captive stream + remain open after the deflation or inflation occurs. By default, after + Close() is called on the stream, the captive stream is also + closed. In some cases this is not desired, for example if the stream is a + that will be re-read after + compression. Specify true for the parameter to leave the stream + open. + + + + See the other overloads of this constructor for example code. + + + + + The stream which will be read or written. This is called the + "captive" stream in other places in this documentation. + Indicates whether the ZlibStream will compress or decompress. + true if the application would like the stream to remain + open after inflation/deflation. + + + + Create a ZlibStream using the specified CompressionMode + and the specified CompressionLevel, and explicitly specify + whether the stream should be left open after Deflation or Inflation. + + + + + + This constructor allows the application to request that the captive + stream remain open after the deflation or inflation occurs. By + default, after Close() is called on the stream, the captive + stream is also closed. In some cases this is not desired, for example + if the stream is a that will be + re-read after compression. Specify true for the parameter to leave the stream open. + + + + When mode is CompressionMode.Decompress, the level parameter is + ignored. + + + + + + + This example shows how to use a ZlibStream to compress the data from a file, + and store the result into another file. The filestream remains open to allow + additional data to be written to it. + + + using (var output = System.IO.File.Create(fileToCompress + ".zlib")) + { + using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) + { + using (Stream compressor = new ZlibStream(output, CompressionMode.Compress, CompressionLevel.BestCompression, true)) + { + byte[] buffer = new byte[WORKING_BUFFER_SIZE]; + int n; + while ((n= input.Read(buffer, 0, buffer.Length)) != 0) + { + compressor.Write(buffer, 0, n); + } + } + } + // can write additional data to the output stream here + } + + + Using output As FileStream = File.Create(fileToCompress & ".zlib") + Using input As Stream = File.OpenRead(fileToCompress) + Using compressor As Stream = New ZlibStream(output, CompressionMode.Compress, CompressionLevel.BestCompression, True) + Dim buffer As Byte() = New Byte(4096) {} + Dim n As Integer = -1 + Do While (n <> 0) + If (n > 0) Then + compressor.Write(buffer, 0, n) + End If + n = input.Read(buffer, 0, buffer.Length) + Loop + End Using + End Using + ' can write additional data to the output stream here. + End Using + + + + The stream which will be read or written. + + Indicates whether the ZlibStream will compress or decompress. + + + true if the application would like the stream to remain open after + inflation/deflation. + + + + A tuning knob to trade speed for effectiveness. This parameter is + effective only when mode is CompressionMode.Compress. + + + + + This property sets the flush behavior on the stream. + Sorry, though, not sure exactly how to describe all the various settings. + + + + + The size of the working buffer for the compression codec. + + + + + The working buffer is used for all stream operations. The default size is + 1024 bytes. The minimum size is 128 bytes. You may get better performance + with a larger buffer. Then again, you might not. You would have to test + it. + + + + Set this before the first call to Read() or Write() on the + stream. If you try to set it afterwards, it will throw. + + + + + Returns the total number of bytes input so far. + + + Returns the total number of bytes output so far. + + + + Dispose the stream. + + + + This may or may not result in a Close() call on the captive + stream. See the constructors that have a leaveOpen parameter + for more information. + + + This method may be invoked in two distinct scenarios. If disposing + == true, the method has been called directly or indirectly by a + user's code, for example via the public Dispose() method. In this + case, both managed and unmanaged resources can be referenced and + disposed. If disposing == false, the method has been called by the + runtime from inside the object finalizer and this method should not + reference other objects; in that case only unmanaged resources must + be referenced or disposed. + + + + indicates whether the Dispose method was invoked by user code. + + + + + Indicates whether the stream can be read. + + + The return value depends on whether the captive stream supports reading. + + + + + Indicates whether the stream supports Seek operations. + + + Always returns false. + + + + + Indicates whether the stream can be written. + + + The return value depends on whether the captive stream supports writing. + + + + + Flush the stream. + + + + + Reading this property always throws a . + + + + + The position of the stream pointer. + + + + Setting this property always throws a . Reading will return the total bytes + written out, if used in writing, or the total bytes read in, if used in + reading. The count may refer to compressed bytes or uncompressed bytes, + depending on how you've used the stream. + + + + + Read data from the stream. + + + + + + If you wish to use the ZlibStream to compress data while reading, + you can create a ZlibStream with CompressionMode.Compress, + providing an uncompressed data stream. Then call Read() on that + ZlibStream, and the data read will be compressed. If you wish to + use the ZlibStream to decompress data while reading, you can create + a ZlibStream with CompressionMode.Decompress, providing a + readable compressed data stream. Then call Read() on that + ZlibStream, and the data will be decompressed as it is read. + + + + A ZlibStream can be used for Read() or Write(), but + not both. + + + + + + The buffer into which the read data should be placed. + + + the offset within that data array to put the first byte read. + + the number of bytes to read. + + the number of bytes read + + + + Calling this method always throws a . + + + The offset to seek to.... + IF THIS METHOD ACTUALLY DID ANYTHING. + + + The reference specifying how to apply the offset.... IF + THIS METHOD ACTUALLY DID ANYTHING. + + + nothing. This method always throws. + + + + Calling this method always throws a . + + + The new value for the stream length.... IF + THIS METHOD ACTUALLY DID ANYTHING. + + + + + Write data to the stream. + + + + + + If you wish to use the ZlibStream to compress data while writing, + you can create a ZlibStream with CompressionMode.Compress, + and a writable output stream. Then call Write() on that + ZlibStream, providing uncompressed data as input. The data sent to + the output stream will be the compressed form of the data written. If you + wish to use the ZlibStream to decompress data while writing, you + can create a ZlibStream with CompressionMode.Decompress, and a + writable output stream. Then call Write() on that stream, + providing previously compressed data. The data sent to the output stream + will be the decompressed form of the data written. + + + + A ZlibStream can be used for Read() or Write(), but not both. + + + The buffer holding data to write to the stream. + the offset within that data array to find the first byte to write. + the number of bytes to write. + + + + Compress a string into a byte array using ZLIB. + + + + Uncompress it with . + + + + + + + + A string to compress. The string will first be encoded + using UTF8, then compressed. + + + The string in compressed form + + + + Compress a byte array into a new byte array using ZLIB. + + + + Uncompress it with . + + + + + + + A buffer to compress. + + + The data in compressed form + + + + Uncompress a ZLIB-compressed byte array into a single string. + + + + + + + A buffer containing ZLIB-compressed data. + + + The uncompressed string + + + + Uncompress a ZLIB-compressed byte array into a byte array. + + + + + + + A buffer containing ZLIB-compressed data. + + + The data in uncompressed form + + + + This class exposes a set of COM-accessible wrappers for static + methods available on the ZipFile class. You don't need this + class unless you are using DotNetZip from a COM environment. + + + + + A wrapper for ZipFile.IsZipFile(string) + + The filename to of the zip file to check. + true if the file contains a valid zip file. + + + + A wrapper for ZipFile.IsZipFile(string, bool) + + + We cannot use "overloaded" Method names in COM interop. + So, here, we use a unique name. + + The filename to of the zip file to check. + true if the file contains a valid zip file. + + + + A wrapper for ZipFile.CheckZip(string) + + The filename to of the zip file to check. + + true if the named zip file checks OK. Otherwise, false. + + + + A COM-friendly wrapper for the static method . + + + The filename to of the zip file to check. + + The password to check. + + true if the named zip file checks OK. Otherwise, false. + + + + A wrapper for ZipFile.FixZipDirectory(string) + + The filename to of the zip file to fix. + + + + A wrapper for ZipFile.LibraryVersion + + + the version number on the DotNetZip assembly, formatted as a string. + + + + + An enum that provides the various encryption algorithms supported by this + library. + + + + + + PkzipWeak implies the use of Zip 2.0 encryption, which is known to be + weak and subvertible. + + + + A note on interoperability: Values of PkzipWeak and None are + specified in PKWARE's zip + specification, and are considered to be "standard". Zip archives + produced using these options will be interoperable with many other zip tools + and libraries, including Windows Explorer. + + + + Values of WinZipAes128 and WinZipAes256 are not part of the Zip + specification, but rather imply the use of a vendor-specific extension from + WinZip. If you want to produce interoperable Zip archives, do not use these + values. For example, if you produce a zip archive using WinZipAes256, you + will be able to open it in Windows Explorer on Windows XP and Vista, but you + will not be able to extract entries; trying this will lead to an "unspecified + error". For this reason, some people have said that a zip archive that uses + WinZip's AES encryption is not actually a zip archive at all. A zip archive + produced this way will be readable with the WinZip tool (Version 11 and + beyond). + + + + There are other third-party tools and libraries, both commercial and + otherwise, that support WinZip's AES encryption. These will be able to read + AES-encrypted zip archives produced by DotNetZip, and conversely applications + that use DotNetZip to read zip archives will be able to read AES-encrypted + archives produced by those tools or libraries. Consult the documentation for + those other tools and libraries to find out if WinZip's AES encryption is + supported. + + + + In case you care: According to the WinZip specification, the + actual AES key used is derived from the via an + algorithm that complies with RFC 2898, using an iteration + count of 1000. The algorithm is sometimes referred to as PBKDF2, which stands + for "Password Based Key Derivation Function #2". + + + + A word about password strength and length: The AES encryption technology is + very good, but any system is only as secure as the weakest link. If you want + to secure your data, be sure to use a password that is hard to guess. To make + it harder to guess (increase its "entropy"), you should make it longer. If + you use normal characters from an ASCII keyboard, a password of length 20 will + be strong enough that it will be impossible to guess. For more information on + that, I'd encourage you to read this + article. + + + + + + + No encryption at all. + + + + + Traditional or Classic pkzip encryption. + + + + + WinZip AES encryption (128 key bits). + + + + + WinZip AES encryption (256 key bits). + + + + + An encryption algorithm that is not supported by DotNetZip. + + + + + Delegate in which the application writes the ZipEntry content for the named entry. + + + The name of the entry that must be written. + The stream to which the entry data should be written. + + + When you add an entry and specify a WriteDelegate, via , the application + code provides the logic that writes the entry data directly into the zip file. + + + + + This example shows how to define a WriteDelegate that obtains a DataSet, and then + writes the XML for the DataSet into the zip archive. There's no need to + save the XML to a disk file first. + + + private void WriteEntry (String filename, Stream output) + { + DataSet ds1 = ObtainDataSet(); + ds1.WriteXml(output); + } + + private void Run() + { + using (var zip = new ZipFile()) + { + zip.AddEntry(zipEntryName, WriteEntry); + zip.Save(zipFileName); + } + } + + + + Private Sub WriteEntry (ByVal filename As String, ByVal output As Stream) + DataSet ds1 = ObtainDataSet() + ds1.WriteXml(stream) + End Sub + + Public Sub Run() + Using zip = New ZipFile + zip.AddEntry(zipEntryName, New WriteDelegate(AddressOf WriteEntry)) + zip.Save(zipFileName) + End Using + End Sub + + + + + + + Delegate in which the application opens the stream, just-in-time, for the named entry. + + + + The name of the ZipEntry that the application should open the stream for. + + + + When you add an entry via , the application code provides the logic that + opens and closes the stream for the given ZipEntry. + + + + + + + Delegate in which the application closes the stream, just-in-time, for the named entry. + + + + The name of the ZipEntry that the application should close the stream for. + + + The stream to be closed. + + + When you add an entry via , the application code provides the logic that + opens and closes the stream for the given ZipEntry. + + + + + + + Delegate for the callback by which the application tells the + library the CompressionLevel to use for a file. + + + + + Using this callback, the application can, for example, specify that + previously-compressed files (.mp3, .png, .docx, etc) should use a + CompressionLevel of None, or can set the compression level based + on any other factor. + + + + + + + In an EventArgs type, indicates which sort of progress event is being + reported. + + + There are events for reading, events for saving, and events for + extracting. This enumeration allows a single EventArgs type to be sued to + describe one of multiple subevents. For example, a SaveProgress event is + invoked before, after, and during the saving of a single entry. The value + of an enum with this type, specifies which event is being triggered. The + same applies to Extraction, Reading and Adding events. + + + + + Indicates that a Add() operation has started. + + + + + Indicates that an individual entry in the archive has been added. + + + + + Indicates that a Add() operation has completed. + + + + + Indicates that a Read() operation has started. + + + + + Indicates that an individual entry in the archive is about to be read. + + + + + Indicates that an individual entry in the archive has just been read. + + + + + Indicates that a Read() operation has completed. + + + + + The given event reports the number of bytes read so far + during a Read() operation. + + + + + Indicates that a Save() operation has started. + + + + + Indicates that an individual entry in the archive is about to be written. + + + + + Indicates that an individual entry in the archive has just been saved. + + + + + Indicates that a Save() operation has completed. + + + + + Indicates that the zip archive has been created in a + temporary location during a Save() operation. + + + + + Indicates that the temporary file is about to be renamed to the final archive + name during a Save() operation. + + + + + Indicates that the temporary file is has just been renamed to the final archive + name during a Save() operation. + + + + + Indicates that the self-extracting archive has been compiled + during a Save() operation. + + + + + The given event is reporting the number of source bytes that have run through the compressor so far + during a Save() operation. + + + + + Indicates that an entry is about to be extracted. + + + + + Indicates that an entry has just been extracted. + + + + + Indicates that extraction of an entry would overwrite an existing + filesystem file. You must use + + ExtractExistingFileAction.InvokeExtractProgressEvent in the call + to ZipEntry.Extract() in order to receive this event. + + + + + The given event is reporting the number of bytes written so far for + the current entry during an Extract() operation. + + + + + Indicates that an ExtractAll operation is about to begin. + + + + + Indicates that an ExtractAll operation has completed. + + + + + Indicates that an error has occurred while saving a zip file. + This generally means the file cannot be opened, because it has been + removed, or because it is locked by another process. It can also + mean that the file cannot be Read, because of a range lock conflict. + + + + + Provides information about the progress of a save, read, or extract operation. + This is a base class; you will probably use one of the classes derived from this one. + + + + + The total number of entries to be saved or extracted. + + + + + The name of the last entry saved or extracted. + + + + + In an event handler, set this to cancel the save or extract + operation that is in progress. + + + + + The type of event being reported. + + + + + Returns the archive name associated to this event. + + + + + The number of bytes read or written so far for this entry. + + + + + Total number of bytes that will be read or written for this entry. + This number will be -1 if the value cannot be determined. + + + + + Provides information about the progress of a Read operation. + + + + + Provides information about the progress of a Add operation. + + + + + Provides information about the progress of a save operation. + + + + + Constructor for the SaveProgressEventArgs. + + the name of the zip archive. + whether this is before saving the entry, or after + The total number of entries in the zip archive. + Number of entries that have been saved. + The entry involved in the event. + + + + Number of entries saved so far. + + + + + Provides information about the progress of the extract operation. + + + + + Constructor for the ExtractProgressEventArgs. + + the name of the zip archive. + whether this is before saving the entry, or after + The total number of entries in the zip archive. + Number of entries that have been extracted. + The entry involved in the event. + The location to which entries are extracted. + + + + Number of entries extracted so far. This is set only if the + EventType is Extracting_BeforeExtractEntry or Extracting_AfterExtractEntry, and + the Extract() is occurring witin the scope of a call to ExtractAll(). + + + + + Returns the extraction target location, a filesystem path. + + + + + Provides information about the an error that occurred while zipping. + + + + + Returns the exception that occurred, if any. + + + + + Returns the name of the file that caused the exception, if any. + + + + + Issued when an ZipEntry.ExtractWithPassword() method is invoked + with an incorrect password. + + + + + Default ctor. + + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The message in the exception. + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The message in the exception. + The innerException for this exception. + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The serialization info for the exception. + The streaming context from which to deserialize. + + + + Indicates that a read was attempted on a stream, and bad or incomplete data was + received. + + + + + Default ctor. + + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The message in the exception. + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The message in the exception. + The innerException for this exception. + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The serialization info for the exception. + The streaming context from which to deserialize. + + + + Issued when an CRC check fails upon extracting an entry from a zip archive. + + + + + Default ctor. + + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The message in the exception. + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The serialization info for the exception. + The streaming context from which to deserialize. + + + + Issued when errors occur saving a self-extracting archive. + + + + + Default ctor. + + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The message in the exception. + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The serialization info for the exception. + The streaming context from which to deserialize. + + + + Indicates that an operation was attempted on a ZipFile which was not possible + given the state of the instance. For example, if you call Save() on a ZipFile + which has no filename set, you can get this exception. + + + + + Default ctor. + + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The message in the exception. + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The message in the exception. + The innerException for this exception. + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The serialization info for the exception. + The streaming context from which to deserialize. + + + + Base class for all exceptions defined by and throw by the Zip library. + + + + + Default ctor. + + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The message in the exception. + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The message in the exception. + The innerException for this exception. + + + + Come on, you know how exceptions work. Why are you looking at this documentation? + + The serialization info for the exception. + The streaming context from which to deserialize. + + + + An enum for the options when extracting an entry would overwrite an existing file. + + + + + This enum describes the actions that the library can take when an + Extract() or ExtractWithPassword() method is called to extract an + entry to a filesystem, and the extraction would overwrite an existing filesystem + file. + + + + + + + Throw an exception when extraction would overwrite an existing file. (For + COM clients, this is a 0 (zero).) + + + + + When extraction would overwrite an existing file, overwrite the file silently. + The overwrite will happen even if the target file is marked as read-only. + (For COM clients, this is a 1.) + + + + + When extraction would overwrite an existing file, don't overwrite the file, silently. + (For COM clients, this is a 2.) + + + + + When extraction would overwrite an existing file, invoke the ExtractProgress + event, using an event type of . In + this way, the application can decide, just-in-time, whether to overwrite the + file. For example, a GUI application may wish to pop up a dialog to allow + the user to choose. You may want to examine the property before making + the decision. If, after your processing in the Extract progress event, you + want to NOT extract the file, set + on the ZipProgressEventArgs.CurrentEntry to DoNotOverwrite. + If you do want to extract the file, set ZipEntry.ExtractExistingFile + to OverwriteSilently. If you want to cancel the Extraction, set + ZipProgressEventArgs.Cancel to true. Cancelling differs from using + DoNotOverwrite in that a cancel will not extract any further entries, if + there are any. (For COM clients, the value of this enum is a 3.) + + + + + Collects general purpose utility methods. + + + + private null constructor + + + + Utility routine for transforming path names from filesystem format (on Windows that means backslashes) to + a format suitable for use within zipfiles. This means trimming the volume letter and colon (if any) And + swapping backslashes for forward slashes. + + source path. + transformed path + + + + Sanitize paths in zip files. This means making sure that relative paths in a zip file don't go outside + the top directory. Entries like something/../../../../Temp/evil.txt get sanitized to Temp/evil.txt + when extracting + + A path with forward slashes as directory separator + sanitized path + + + + Finds a signature in the zip stream. This is useful for finding + the end of a zip entry, for example, or the beginning of the next ZipEntry. + + + + + Scans through 64k at a time. + + + + If the method fails to find the requested signature, the stream Position + after completion of this method is unchanged. If the method succeeds in + finding the requested signature, the stream position after completion is + direct AFTER the signature found in the stream. + + + + The stream to search + The 4-byte signature to find + The number of bytes read + + + + Create a pseudo-random filename, suitable for use as a temporary + file, and open it. + + + + This method produces a filename of the form + DotNetZip-xxxxxxxx.tmp, where xxxxxxxx is replaced by randomly + chosen characters, and creates that file. + + + + + + Workitem 7889: handle ERROR_LOCK_VIOLATION during read + + + This could be gracefully handled with an extension attribute, but + This assembly used to be built for .NET 2.0, so could not use + extension methods. + + + + + A decorator stream. It wraps another stream, and performs bookkeeping + to keep track of the stream Position. + + + + In some cases, it is not possible to get the Position of a stream, let's + say, on a write-only output stream like ASP.NET's + Response.OutputStream, or on a different write-only stream + provided as the destination for the zip by the application. In this + case, programmers can use this counting stream to count the bytes read + or written. + + + Consider the scenario of an application that saves a self-extracting + archive (SFX), that uses a custom SFX stub. + + + Saving to a filesystem file, the application would open the + filesystem file (getting a FileStream), save the custom sfx stub + into it, and then call ZipFile.Save(), specifying the same + FileStream. ZipFile.Save() does the right thing for the zipentry + offsets, by inquiring the Position of the FileStream before writing + any data, and then adding that initial offset into any ZipEntry + offsets in the zip directory. Everything works fine. + + + Now suppose the application is an ASPNET application and it saves + directly to Response.OutputStream. It's not possible for DotNetZip to + inquire the Position, so the offsets for the SFX will be wrong. + + + The workaround is for the application to use this class to wrap + HttpResponse.OutputStream, then write the SFX stub and the ZipFile + into that wrapper stream. Because ZipFile.Save() can inquire the + Position, it will then do the right thing with the offsets. + + + + + + The constructor. + + The underlying stream + + + + Gets the wrapped stream. + + + + + The count of bytes written out to the stream. + + + + + the count of bytes that have been read from the stream. + + + + + Adjust the byte count on the stream. + + + + the number of bytes to subtract from the count. + + + + + Subtract delta from the count of bytes written to the stream. + This is necessary when seeking back, and writing additional data, + as happens in some cases when saving Zip files. + + + + + + The read method. + + The buffer to hold the data read from the stream. + the offset within the buffer to copy the first byte read. + the number of bytes to read. + the number of bytes read, after decryption and decompression. + + + + Write data into the stream. + + The buffer holding data to write to the stream. + the offset within that data array to find the first byte to write. + the number of bytes to write. + + + + Whether the stream can be read. + + + + + Whether it is possible to call Seek() on the stream. + + + + + Whether it is possible to call Write() on the stream. + + + + + Flushes the underlying stream. + + + + + The length of the underlying stream. + + + + + Returns the sum of number of bytes written, plus the initial + offset before writing. + + + + + The Position of the stream. + + + + + Seek in the stream. + + the offset point to seek to + the reference point from which to seek + The new position + + + + Set the length of the underlying stream. Be careful with this! + + + the length to set on the underlying stream. + + + + This is a helper class supporting WinZip AES encryption. + This class is intended for use only by the DotNetZip library. + + + + Most uses of the DotNetZip library will not involve direct calls into + the WinZipAesCrypto class. Instead, the WinZipAesCrypto class is + instantiated and used by the ZipEntry() class when WinZip AES + encryption or decryption on an entry is employed. + + + + + A stream that encrypts as it writes, or decrypts as it reads. The + Crypto is AES in CTR (counter) mode, which is compatible with the AES + encryption employed by WinZip 12.0. + + + + The AES/CTR encryption protocol used by WinZip works like this: + + - start with a counter, initialized to zero. + + - to encrypt, take the data by 16-byte blocks. For each block: + - apply the transform to the counter + - increement the counter + - XOR the result of the transform with the plaintext to + get the ciphertext. + - compute the mac on the encrypted bytes + - when finished with all blocks, store the computed MAC. + + - to decrypt, take the data by 16-byte blocks. For each block: + - compute the mac on the encrypted bytes, + - apply the transform to the counter + - increement the counter + - XOR the result of the transform with the ciphertext to + get the plaintext. + - when finished with all blocks, compare the computed MAC against + the stored MAC + + + + + + + The constructor. + + The underlying stream + To either encrypt or decrypt. + The pre-initialized WinZipAesCrypto object. + The maximum number of bytes to read from the stream. + + + + Returns the final HMAC-SHA1-80 for the data that was encrypted. + + + + + Close the stream. + + + + + Returns true if the stream can be read. + + + + + Always returns false. + + + + + Returns true if the CryptoMode is Encrypt. + + + + + Flush the content in the stream. + + + + + Getting this property throws a NotImplementedException. + + + + + Getting or Setting this property throws a NotImplementedException. + + + + + This method throws a NotImplementedException. + + + + + This method throws a NotImplementedException. + + + + + This class implements the "traditional" or "classic" PKZip encryption, + which today is considered to be weak. On the other hand it is + ubiquitous. This class is intended for use only by the DotNetZip + library. + + + + Most uses of the DotNetZip library will not involve direct calls into + the ZipCrypto class. Instead, the ZipCrypto class is instantiated and + used by the ZipEntry() class when encryption or decryption on an entry + is employed. If for some reason you really wanted to use a weak + encryption algorithm in some other application, you might use this + library. But you would be much better off using one of the built-in + strong encryption libraries in the .NET Framework, like the AES + algorithm or SHA. + + + + + The default constructor for ZipCrypto. + + + + This class is intended for internal use by the library only. It's + probably not useful to you. Seriously. Stop reading this + documentation. It's a waste of your time. Go do something else. + Check the football scores. Go get an ice cream with a friend. + Seriously. + + + + + + From AppNote.txt: + unsigned char decrypt_byte() + local unsigned short temp + temp :=- Key(2) | 2 + decrypt_byte := (temp * (temp ^ 1)) bitshift-right 8 + end decrypt_byte + + + + + Call this method on a cipher text to render the plaintext. You must + first initialize the cipher with a call to InitCipher. + + + + + var cipher = new ZipCrypto(); + cipher.InitCipher(Password); + // Decrypt the header. This has a side effect of "further initializing the + // encryption keys" in the traditional zip encryption. + byte[] DecryptedMessage = cipher.DecryptMessage(EncryptedMessage); + + + + The encrypted buffer. + + The number of bytes to encrypt. + Should be less than or equal to CipherText.Length. + + + The plaintext. + + + + This is the converse of DecryptMessage. It encrypts the plaintext + and produces a ciphertext. + + + The plain text buffer. + + + The number of bytes to encrypt. + Should be less than or equal to plainText.Length. + + + The ciphertext. + + + + This initializes the cipher with the given password. + See AppNote.txt for details. + + + + The passphrase for encrypting or decrypting with this cipher. + + + + + Step 1 - Initializing the encryption keys + ----------------------------------------- + Start with these keys: + Key(0) := 305419896 (0x12345678) + Key(1) := 591751049 (0x23456789) + Key(2) := 878082192 (0x34567890) + + Then, initialize the keys with a password: + + loop for i from 0 to length(password)-1 + update_keys(password(i)) + end loop + + Where update_keys() is defined as: + + update_keys(char): + Key(0) := crc32(key(0),char) + Key(1) := Key(1) + (Key(0) bitwiseAND 000000ffH) + Key(1) := Key(1) * 134775813 + 1 + Key(2) := crc32(key(2),key(1) rightshift 24) + end update_keys + + Where crc32(old_crc,char) is a routine that given a CRC value and a + character, returns an updated CRC value after applying the CRC-32 + algorithm described elsewhere in this document. + + + + + After the keys are initialized, then you can use the cipher to + encrypt the plaintext. + + + + Essentially we encrypt the password with the keys, then discard the + ciphertext for the password. This initializes the keys for later use. + + + + + + + A Stream for reading and concurrently decrypting data from a zip file, + or for writing and concurrently encrypting data to a zip file. + + + + The constructor. + The underlying stream + To either encrypt or decrypt. + The pre-initialized ZipCrypto object. + + + + Represents a single entry in a ZipFile. Typically, applications get a ZipEntry + by enumerating the entries within a ZipFile, or by adding an entry to a ZipFile. + + + + + True if the referenced entry is a directory. + + + + + Provides a human-readable string with information about the ZipEntry. + + + + + Reads one entry from the zip directory structure in the zip file. + + + + The zipfile for which a directory entry will be read. From this param, the + method gets the ReadStream and the expected text encoding + (ProvisionalAlternateEncoding) which is used if the entry is not marked + UTF-8. + + + + a list of previously seen entry names; used to prevent duplicates. + + + the entry read from the archive. + + + + Returns true if the passed-in value is a valid signature for a ZipDirEntry. + + the candidate 4-byte signature value. + true, if the signature is valid according to the PKWare spec. + + + + Default constructor. + + + Applications should never need to call this directly. It is exposed to + support COM Automation environments. + + + + + The time and date at which the file indicated by the ZipEntry was + last modified. + + + + + The DotNetZip library sets the LastModified value for an entry, equal to + the Last Modified time of the file in the filesystem. If an entry is + added from a stream, the library uses System.DateTime.Now for this + value, for the given entry. + + + + This property allows the application to retrieve and possibly set the + LastModified value on an entry, to an arbitrary value. values with a + setting of DateTimeKind.Unspecified are taken to be expressed as + DateTimeKind.Local. + + + + Be aware that because of the way PKWare's + Zip specification describes how times are stored in the zip file, + the full precision of the System.DateTime datatype is not stored + for the last modified time when saving zip files. For more information on + how times are formatted, see the PKZip specification. + + + + The actual last modified time of a file can be stored in multiple ways in + the zip file, and they are not mutually exclusive: + + + + + In the so-called "DOS" format, which has a 2-second precision. Values + are rounded to the nearest even second. For example, if the time on the + file is 12:34:43, then it will be stored as 12:34:44. This first value + is accessible via the LastModified property. This value is always + present in the metadata for each zip entry. In some cases the value is + invalid, or zero. + + + + In the so-called "Windows" or "NTFS" format, as an 8-byte integer + quantity expressed as the number of 1/10 milliseconds (in other words + the number of 100 nanosecond units) since January 1, 1601 (UTC). This + format is how Windows represents file times. This time is accessible + via the ModifiedTime property. + + + + In the "Unix" format, a 4-byte quantity specifying the number of seconds since + January 1, 1970 UTC. + + + + In an older format, now deprecated but still used by some current + tools. This format is also a 4-byte quantity specifying the number of + seconds since January 1, 1970 UTC. + + + + + + Zip tools and libraries will always at least handle (read or write) the + DOS time, and may also handle the other time formats. Keep in mind that + while the names refer to particular operating systems, there is nothing in + the time formats themselves that prevents their use on other operating + systems. + + + + When reading ZIP files, the DotNetZip library reads the Windows-formatted + time, if it is stored in the entry, and sets both LastModified and + ModifiedTime to that value. When writing ZIP files, the DotNetZip + library by default will write both time quantities. It can also emit the + Unix-formatted time if desired (See .) + + + + The last modified time of the file created upon a call to + ZipEntry.Extract() may be adjusted during extraction to compensate + for differences in how the .NET Base Class Library deals with daylight + saving time (DST) versus how the Windows filesystem deals with daylight + saving time. Raymond Chen provides + some good context. + + + + In a nutshell: Daylight savings time rules change regularly. In 2007, for + example, the inception week of DST changed. In 1977, DST was in place all + year round. In 1945, likewise. And so on. Win32 does not attempt to + guess which time zone rules were in effect at the time in question. It + will render a time as "standard time" and allow the app to change to DST + as necessary. .NET makes a different choice. + + + + Compare the output of FileInfo.LastWriteTime.ToString("f") with what you + see in the Windows Explorer property sheet for a file that was last + written to on the other side of the DST transition. For example, suppose + the file was last modified on October 17, 2003, during DST but DST is not + currently in effect. Explorer's file properties reports Thursday, October + 17, 2003, 8:45:38 AM, but .NETs FileInfo reports Thursday, October 17, + 2003, 9:45 AM. + + + + Win32 says, "Thursday, October 17, 2002 8:45:38 AM PST". Note: Pacific + STANDARD Time. Even though October 17 of that year occurred during Pacific + Daylight Time, Win32 displays the time as standard time because that's + what time it is NOW. + + + + .NET BCL assumes that the current DST rules were in place at the time in + question. So, .NET says, "Well, if the rules in effect now were also in + effect on October 17, 2003, then that would be daylight time" so it + displays "Thursday, October 17, 2003, 9:45 AM PDT" - daylight time. + + + + So .NET gives a value which is more intuitively correct, but is also + potentially incorrect, and which is not invertible. Win32 gives a value + which is intuitively incorrect, but is strictly correct. + + + + Because of this funkiness, this library adds one hour to the LastModified + time on the extracted file, if necessary. That is to say, if the time in + question had occurred in what the .NET Base Class Library assumed to be + DST. This assumption may be wrong given the constantly changing DST rules, + but it is the best we can do. + + + + + + + + Ability to set Last Modified DOS time to zero + (for using with EmitTimesInWindowsFormatWhenSaving+EmitTimesInUnixFormatWhenSaving setted to false) + some flasher hardware use as marker of first binary + + + + + Last Modified time for the file represented by the entry. + + + + + + This value corresponds to the "last modified" time in the NTFS file times + as described in the Zip + specification. When getting this property, the value may be + different from . When setting the property, + the property also gets set, but with a lower + precision. + + + + Let me explain. It's going to take a while, so get + comfortable. Originally, waaaaay back in 1989 when the ZIP specification + was originally described by the esteemed Mr. Phil Katz, the dominant + operating system of the time was MS-DOS. MSDOS stored file times with a + 2-second precision, because, c'mon, who is ever going to need better + resolution than THAT? And so ZIP files, regardless of the platform on + which the zip file was created, store file times in exactly the same format that DOS used + in 1989. + + + + Since then, the ZIP spec has evolved, but the internal format for file + timestamps remains the same. Despite the fact that the way times are + stored in a zip file is rooted in DOS heritage, any program on any + operating system can format a time in this way, and most zip tools and + libraries DO - they round file times to the nearest even second and store + it just like DOS did 25+ years ago. + + + + PKWare extended the ZIP specification to allow a zip file to store what + are called "NTFS Times" and "Unix(tm) times" for a file. These are the + last write, last access, and file creation + times of a particular file. These metadata are not actually specific + to NTFS or Unix. They are tracked for each file by NTFS and by various + Unix filesystems, but they are also tracked by other filesystems, too. + The key point is that the times are formatted in the zip file + in the same way that NTFS formats the time (ticks since win32 epoch), + or in the same way that Unix formats the time (seconds since Unix + epoch). As with the DOS time, any tool or library running on any + operating system is capable of formatting a time in one of these ways + and embedding it into the zip file. + + + + These extended times are higher precision quantities than the DOS time. + As described above, the (DOS) LastModified has a precision of 2 seconds. + The Unix time is stored with a precision of 1 second. The NTFS time is + stored with a precision of 0.0000001 seconds. The quantities are easily + convertible, except for the loss of precision you may incur. + + + + A zip archive can store the {C,A,M} times in NTFS format, in Unix format, + or not at all. Often a tool running on Unix or Mac will embed the times + in Unix format (1 second precision), while WinZip running on Windows might + embed the times in NTFS format (precision of of 0.0000001 seconds). When + reading a zip file with these "extended" times, in either format, + DotNetZip represents the values with the + ModifiedTime, AccessedTime and CreationTime + properties on the ZipEntry. + + + + While any zip application or library, regardless of the platform it + runs on, could use any of the time formats allowed by the ZIP + specification, not all zip tools or libraries do support all these + formats. Storing the higher-precision times for each entry is + optional for zip files, and many tools and libraries don't use the + higher precision quantities at all. The old DOS time, represented by + , is guaranteed to be present, though it + sometimes unset. + + + + Ok, getting back to the question about how the LastModified + property relates to this ModifiedTime + property... LastModified is always set, while + ModifiedTime is not. (The other times stored in the NTFS + times extension, CreationTime and AccessedTime also + may not be set on an entry that is read from an existing zip file.) + When reading a zip file, then LastModified takes the DOS time + that is stored with the file. If the DOS time has been stored as zero + in the zipfile, then this library will use DateTime.Now for the + LastModified value. If the ZIP file was created by an evolved + tool, then there will also be higher precision NTFS or Unix times in + the zip file. In that case, this library will read those times, and + set LastModified and ModifiedTime to the same value, the + one corresponding to the last write time of the file. If there are no + higher precision times stored for the entry, then ModifiedTime + remains unset (likewise AccessedTime and CreationTime), + and LastModified keeps its DOS time. + + + + When creating zip files with this library, by default the extended time + properties (ModifiedTime, AccessedTime, and + CreationTime) are set on the ZipEntry instance, and these data are + stored in the zip archive for each entry, in NTFS format. If you add an + entry from an actual filesystem file, then the entry gets the actual file + times for that file, to NTFS-level precision. If you add an entry from a + stream, or a string, then the times get the value DateTime.Now. In + this case LastModified and ModifiedTime will be identical, + to 2 seconds of precision. You can explicitly set the + CreationTime, AccessedTime, and ModifiedTime of an + entry using the property setters. If you want to set all of those + quantities, it's more efficient to use the method. Those + changes are not made permanent in the zip file until you call or one of its cousins. + + + + When creating a zip file, you can override the default behavior of + this library for formatting times in the zip file, disabling the + embedding of file times in NTFS format or enabling the storage of file + times in Unix format, or both. You may want to do this, for example, + when creating a zip file on Windows, that will be consumed on a Mac, + by an application that is not hip to the "NTFS times" format. To do + this, use the and + properties. A valid zip + file may store the file times in both formats. But, there are no + guarantees that a program running on Mac or Linux will gracefully + handle the NTFS-formatted times when Unix times are present, or that a + non-DotNetZip-powered application running on Windows will be able to + handle file times in Unix format. DotNetZip will always do something + reasonable; other libraries or tools may not. When in doubt, test. + + + + I'll bet you didn't think one person could type so much about time, eh? + And reading it was so enjoyable, too! Well, in appreciation, maybe you + should donate? + + + + + + + + + + + Last Access time for the file represented by the entry. + + + This value may or may not be meaningful. If the ZipEntry was read from an existing + Zip archive, this information may not be available. For an explanation of why, see + . + + + + + + + + The file creation time for the file represented by the entry. + + + + This value may or may not be meaningful. If the ZipEntry was read + from an existing zip archive, and the creation time was not set on the entry + when the zip file was created, then this property may be meaningless. For an + explanation of why, see . + + + + + + + + Sets the NTFS Creation, Access, and Modified times for the given entry. + + + + + When adding an entry from a file or directory, the Creation, Access, and + Modified times for the given entry are automatically set from the + filesystem values. When adding an entry from a stream or string, the + values are implicitly set to DateTime.Now. The application may wish to + set these values to some arbitrary value, before saving the archive, and + can do so using the various setters. If you want to set all of the times, + this method is more efficient. + + + + The values you set here will be retrievable with the , and properties. + + + + When this method is called, if both and are false, then the + EmitTimesInWindowsFormatWhenSaving flag is automatically set. + + + + DateTime values provided here without a DateTimeKind are assumed to be Local Time. + + + + the creation time of the entry. + the last access time of the entry. + the last modified time of the entry. + + + + + + + + + + Specifies whether the Creation, Access, and Modified times for the given + entry will be emitted in "Windows format" when the zip archive is saved. + + + + + An application creating a zip archive can use this flag to explicitly + specify that the file times for the entry should or should not be stored + in the zip archive in the format used by Windows. The default value of + this property is true. + + + + When adding an entry from a file or directory, the Creation (), Access (), and Modified + () times for the given entry are automatically + set from the filesystem values. When adding an entry from a stream or + string, all three values are implicitly set to DateTime.Now. Applications + can also explicitly set those times by calling . + + + + PKWARE's + zip specification describes multiple ways to format these times in a + zip file. One is the format Windows applications normally use: 100ns ticks + since Jan 1, 1601 UTC. The other is a format Unix applications typically + use: seconds since January 1, 1970 UTC. Each format can be stored in an + "extra field" in the zip entry when saving the zip archive. The former + uses an extra field with a Header Id of 0x000A, while the latter uses a + header ID of 0x5455. + + + + Not all zip tools and libraries can interpret these fields. Windows + compressed folders is one that can read the Windows Format timestamps, + while I believe the Infozip + tools can read the Unix format timestamps. Although the time values are + easily convertible, subject to a loss of precision, some tools and + libraries may be able to read only one or the other. DotNetZip can read or + write times in either or both formats. + + + + The times stored are taken from , , and . + + + + This property is not mutually exclusive from the property. It is + possible that a zip entry can embed the timestamps in both forms, one + form, or neither. But, there are no guarantees that a program running on + Mac or Linux will gracefully handle NTFS Formatted times, or that a + non-DotNetZip-powered application running on Windows will be able to + handle file times in Unix format. When in doubt, test. + + + + Normally you will use the ZipFile.EmitTimesInWindowsFormatWhenSaving + property, to specify the behavior for all entries in a zip, rather than + the property on each individual entry. + + + + + + + + + + + + + Specifies whether the Creation, Access, and Modified times for the given + entry will be emitted in "Unix(tm) format" when the zip archive is saved. + + + + + An application creating a zip archive can use this flag to explicitly + specify that the file times for the entry should or should not be stored + in the zip archive in the format used by Unix. By default this flag is + false, meaning the Unix-format times are not stored in the zip + archive. + + + + When adding an entry from a file or directory, the Creation (), Access (), and Modified + () times for the given entry are automatically + set from the filesystem values. When adding an entry from a stream or + string, all three values are implicitly set to DateTime.Now. Applications + can also explicitly set those times by calling . + + + + PKWARE's + zip specification describes multiple ways to format these times in a + zip file. One is the format Windows applications normally use: 100ns ticks + since Jan 1, 1601 UTC. The other is a format Unix applications typically + use: seconds since Jan 1, 1970 UTC. Each format can be stored in an + "extra field" in the zip entry when saving the zip archive. The former + uses an extra field with a Header Id of 0x000A, while the latter uses a + header ID of 0x5455. + + + + Not all tools and libraries can interpret these fields. Windows + compressed folders is one that can read the Windows Format timestamps, + while I believe the Infozip + tools can read the Unix format timestamps. Although the time values are + easily convertible, subject to a loss of precision, some tools and + libraries may be able to read only one or the other. DotNetZip can read or + write times in either or both formats. + + + + The times stored are taken from , , and . + + + + This property is not mutually exclusive from the property. It is + possible that a zip entry can embed the timestamps in both forms, one + form, or neither. But, there are no guarantees that a program running on + Mac or Linux will gracefully handle NTFS Formatted times, or that a + non-DotNetZip-powered application running on Windows will be able to + handle file times in Unix format. When in doubt, test. + + + + Normally you will use the ZipFile.EmitTimesInUnixFormatWhenSaving + property, to specify the behavior for all entries, rather than the + property on each individual entry. + + + + + + + + + + + + + The type of timestamp attached to the ZipEntry. + + + + This property is valid only for a ZipEntry that was read from a zip archive. + It indicates the type of timestamp attached to the entry. + + + + + + + + The file attributes for the entry. + + + + + + The attributes in NTFS include + ReadOnly, Archive, Hidden, System, and Indexed. When adding a + ZipEntry to a ZipFile, these attributes are set implicitly when + adding an entry from the filesystem. When adding an entry from a stream + or string, the Attributes are not set implicitly. Regardless of the way + an entry was added to a ZipFile, you can set the attributes + explicitly if you like. + + + + When reading a ZipEntry from a ZipFile, the attributes are + set according to the data stored in the ZipFile. If you extract the + entry from the archive to a filesystem file, DotNetZip will set the + attributes on the resulting file accordingly. + + + + The attributes can be set explicitly by the application. For example the + application may wish to set the FileAttributes.ReadOnly bit for all + entries added to an archive, so that on unpack, this attribute will be set + on the extracted file. Any changes you make to this property are made + permanent only when you call a Save() method on the ZipFile + instance that contains the ZipEntry. + + + + For example, an application may wish to zip up a directory and set the + ReadOnly bit on every file in the archive, so that upon later extraction, + the resulting files will be marked as ReadOnly. Not every extraction tool + respects these attributes, but if you unpack with DotNetZip, as for + example in a self-extracting archive, then the attributes will be set as + they are stored in the ZipFile. + + + + These attributes may not be interesting or useful if the resulting archive + is extracted on a non-Windows platform. How these attributes get used + upon extraction depends on the platform and tool used. + + + + + + + The name of the filesystem file, referred to by the ZipEntry. + + + + + This property specifies the thing-to-be-zipped on disk, and is set only + when the ZipEntry is being created from a filesystem file. If the + ZipFile is instantiated by reading an existing .zip archive, then + the LocalFileName will be null (Nothing in VB). + + + + When it is set, the value of this property may be different than , which is the path used in the archive itself. If you + call Zip.AddFile("foop.txt", AlternativeDirectory), then the path + used for the ZipEntry within the zip archive will be different + than this path. + + + + If the entry is being added from a stream, then this is null (Nothing in VB). + + + + + + + + The name of the file contained in the ZipEntry. + + + + + + This is the name of the entry in the ZipFile itself. When creating + a zip archive, if the ZipEntry has been created from a filesystem + file, via a call to or , or a related overload, the value + of this property is derived from the name of that file. The + FileName property does not include drive letters, and may include a + different directory path, depending on the value of the + directoryPathInArchive parameter used when adding the entry into + the ZipFile. + + + + In some cases there is no related filesystem file - for example when a + ZipEntry is created using or one of the similar overloads. In this case, the value of + this property is derived from the fileName and the directory path passed + to that method. + + + + When reading a zip file, this property takes the value of the entry name + as stored in the zip file. If you extract such an entry, the extracted + file will take the name given by this property. + + + + Applications can set this property when creating new zip archives or when + reading existing archives. When setting this property, the actual value + that is set will replace backslashes with forward slashes, in accordance + with the Zip + specification, for compatibility with Unix(tm) and ... get + this.... Amiga! + + + + If an application reads a ZipFile via or a related overload, and then explicitly + sets the FileName on an entry contained within the ZipFile, and + then calls , the application will effectively + rename the entry within the zip archive. + + + + If an application sets the value of FileName, then calls + Extract() on the entry, the entry is extracted to a file using the + newly set value as the filename. The FileName value is made + permanent in the zip archive only after a call to one of the + ZipFile.Save() methods on the ZipFile that contains the + ZipEntry. + + + + If an application attempts to set the FileName to a value that + would result in a duplicate entry in the ZipFile, an exception is + thrown. + + + + When a ZipEntry is contained within a ZipFile, applications + cannot rename the entry within the context of a foreach (For + Each in VB) loop, because of the way the ZipFile stores + entries. If you need to enumerate through all the entries and rename one + or more of them, use ZipFile.EntriesSorted as the + collection. See also, ZipFile.GetEnumerator(). + + + + + + + The stream that provides content for the ZipEntry. + + + + + + The application can use this property to set the input stream for an + entry on a just-in-time basis. Imagine a scenario where the application + creates a ZipFile comprised of content obtained from hundreds of + files, via calls to AddFile(). The DotNetZip library opens streams + on these files on a just-in-time basis, only when writing the entry out to + an external store within the scope of a ZipFile.Save() call. Only + one input stream is opened at a time, as each entry is being written out. + + + + Now imagine a different application that creates a ZipFile + with content obtained from hundreds of streams, added through . Normally the + application would supply an open stream to that call. But when large + numbers of streams are being added, this can mean many open streams at one + time, unnecessarily. + + + + To avoid this, call and specify delegates that open and close the stream at + the time of Save. + + + + + Setting the value of this property when the entry was not added from a + stream (for example, when the ZipEntry was added with or , or when the entry was added by + reading an existing zip archive) will throw an exception. + + + + + + + + A flag indicating whether the InputStream was provided Just-in-time. + + + + + + When creating a zip archive, an application can obtain content for one or + more of the ZipEntry instances from streams, using the method. At the time + of calling that method, the application can supply null as the value of + the stream parameter. By doing so, the application indicates to the + library that it will provide a stream for the entry on a just-in-time + basis, at the time one of the ZipFile.Save() methods is called and + the data for the various entries are being compressed and written out. + + + + In this case, the application can set the + property, typically within the SaveProgress event (event type: ) for that entry. + + + + The application will later want to call Close() and Dispose() on that + stream. In the SaveProgress event, when the event type is , the application can + do so. This flag indicates that the stream has been provided by the + application on a just-in-time basis and that it is the application's + responsibility to call Close/Dispose on that stream. + + + + + + + + An enum indicating the source of the ZipEntry. + + + + + The version of the zip engine needed to read the ZipEntry. + + + + + This is a readonly property, indicating the version of the Zip + specification that the extracting tool or library must support to + extract the given entry. Generally higher versions indicate newer + features. Older zip engines obviously won't know about new features, and + won't be able to extract entries that depend on those newer features. + + + + + value + Features + + + + 20 + a basic Zip Entry, potentially using PKZIP encryption. + + + + + 45 + The ZIP64 extension is used on the entry. + + + + + 46 + File is compressed using BZIP2 compression* + + + + 50 + File is encrypted using PkWare's DES, 3DES, (broken) RC2 or RC4 + + + + 51 + File is encrypted using PKWare's AES encryption or corrected RC2 encryption. + + + + 52 + File is encrypted using corrected RC2-64 encryption** + + + + 61 + File is encrypted using non-OAEP key wrapping*** + + + + 63 + File is compressed using LZMA, PPMd+, Blowfish, or Twofish + + + + + + There are other values possible, not listed here. DotNetZip supports + regular PKZip encryption, and ZIP64 extensions. DotNetZip cannot extract + entries that require a zip engine higher than 45. + + + + This value is set upon reading an existing zip file, or after saving a zip + archive. + + + + + + The comment attached to the ZipEntry. + + + + + Each entry in a zip file can optionally have a comment associated to + it. The comment might be displayed by a zip tool during extraction, for + example. + + + + By default, the Comment is encoded in IBM437 code page. You can + specify an alternative with and + . + + + + + + + + Indicates whether the entry requires ZIP64 extensions. + + + + + + This property is null (Nothing in VB) until a Save() method on the + containing instance has been called. The property is + non-null (HasValue is true) only after a Save() method has + been called. + + + + After the containing ZipFile has been saved, the Value of this + property is true if any of the following three conditions holds: the + uncompressed size of the entry is larger than 0xFFFFFFFF; the compressed + size of the entry is larger than 0xFFFFFFFF; the relative offset of the + entry within the zip archive is larger than 0xFFFFFFFF. These quantities + are not known until a Save() is attempted on the zip archive and + the compression is applied. + + + + If none of the three conditions holds, then the Value is false. + + + + A Value of false does not indicate that the entry, as saved in the + zip archive, does not use ZIP64. It merely indicates that ZIP64 is + not required. An entry may use ZIP64 even when not required if + the property on the containing + ZipFile instance is set to , or if + the property on the containing + ZipFile instance is set to + and the output stream was not seekable. + + + + + + + + Indicates whether the entry actually used ZIP64 extensions, as it was most + recently written to the output file or stream. + + + + + + This Nullable property is null (Nothing in VB) until a Save() + method on the containing instance has been + called. HasValue is true only after a Save() method has been + called. + + + + The value of this property for a particular ZipEntry may change + over successive calls to Save() methods on the containing ZipFile, + even if the file that corresponds to the ZipEntry does not. This + may happen if other entries contained in the ZipFile expand, + causing the offset for this particular entry to exceed 0xFFFFFFFF. + + + + + + + The bitfield for the entry as defined in the zip spec. You probably + never need to look at this. + + + + + You probably do not need to concern yourself with the contents of this + property, but in case you do: + + + + + bit + meaning + + + + 0 + set if encryption is used. + + + + 1-2 + + set to determine whether normal, max, fast deflation. DotNetZip library + always leaves these bits unset when writing (indicating "normal" + deflation"), but can read an entry with any value here. + + + + + 3 + + Indicates that the Crc32, Compressed and Uncompressed sizes are zero in the + local header. This bit gets set on an entry during writing a zip file, when + it is saved to a non-seekable output stream. + + + + + + 4 + reserved for "enhanced deflating". This library doesn't do enhanced deflating. + + + + 5 + set to indicate the zip is compressed patched data. This library doesn't do that. + + + + 6 + + set if PKWare's strong encryption is used (must also set bit 1 if bit 6 is + set). This bit is not set if WinZip's AES encryption is set. + + + + 7 + not used + + + + 8 + not used + + + + 9 + not used + + + + 10 + not used + + + + 11 + + Language encoding flag (EFS). If this bit is set, the filename and comment + fields for this file must be encoded using UTF-8. This library currently + does not support UTF-8. + + + + + 12 + Reserved by PKWARE for enhanced compression. + + + + 13 + + Used when encrypting the Central Directory to indicate selected data + values in the Local Header are masked to hide their actual values. See + the section in the Zip + specification describing the Strong Encryption Specification for + details. + + + + + 14 + Reserved by PKWARE. + + + + 15 + Reserved by PKWARE. + + + + + + + + + The compression method employed for this ZipEntry. + + + + + + The + Zip specification allows a variety of compression methods. This + library supports just two: 0x08 = Deflate. 0x00 = Store (no compression), + for reading or writing. + + + + When reading an entry from an existing zipfile, the value you retrieve + here indicates the compression method used on the entry by the original + creator of the zip. When writing a zipfile, you can specify either 0x08 + (Deflate) or 0x00 (None). If you try setting something else, you will get + an exception. + + + + You may wish to set CompressionMethod to CompressionMethod.None (0) + when zipping already-compressed data like a jpg, png, or mp3 file. + This can save time and cpu cycles. + + + + When setting this property on a ZipEntry that is read from an + existing zip file, calling ZipFile.Save() will cause the new + CompressionMethod to be used on the entry in the newly saved zip file. + + + + Setting this property may have the side effect of modifying the + CompressionLevel property. If you set the CompressionMethod to a + value other than None, and CompressionLevel is previously + set to None, then CompressionLevel will be set to + Default. + + + + + + + In this example, the first entry added to the zip archive uses the default + behavior - compression is used where it makes sense. The second entry, + the MP3 file, is added to the archive without being compressed. + + using (ZipFile zip = new ZipFile(ZipFileToCreate)) + { + ZipEntry e1= zip.AddFile(@"notes\Readme.txt"); + ZipEntry e2= zip.AddFile(@"music\StopThisTrain.mp3"); + e2.CompressionMethod = CompressionMethod.None; + zip.Save(); + } + + + + Using zip As New ZipFile(ZipFileToCreate) + zip.AddFile("notes\Readme.txt") + Dim e2 as ZipEntry = zip.AddFile("music\StopThisTrain.mp3") + e2.CompressionMethod = CompressionMethod.None + zip.Save + End Using + + + + + + Sets the compression level to be used for the entry when saving the zip + archive. This applies only for CompressionMethod = DEFLATE. + + + + + When using the DEFLATE compression method, Varying the compression + level used on entries can affect the size-vs-speed tradeoff when + compression and decompressing data streams or files. + + + + If you do not set this property, the default compression level is used, + which normally gives a good balance of compression efficiency and + compression speed. In some tests, using BestCompression can + double the time it takes to compress, while delivering just a small + increase in compression efficiency. This behavior will vary with the + type of data you compress. If you are in doubt, just leave this setting + alone, and accept the default. + + + + When setting this property on a ZipEntry that is read from an + existing zip file, calling ZipFile.Save() will cause the new + CompressionLevel to be used on the entry in the newly saved zip file. + + + + Setting this property may have the side effect of modifying the + CompressionMethod property. If you set the CompressionLevel + to a value other than None, CompressionMethod will be set + to Deflate, if it was previously None. + + + + Setting this property has no effect if the CompressionMethod is something + other than Deflate or None. + + + + + + + + The compressed size of the file, in bytes, within the zip archive. + + + + When reading a ZipFile, this value is read in from the existing + zip file. When creating or updating a ZipFile, the compressed + size is computed during compression. Therefore the value on a + ZipEntry is valid after a call to Save() (or one of its + overloads) in that case. + + + + + + + The size of the file, in bytes, before compression, or after extraction. + + + + When reading a ZipFile, this value is read in from the existing + zip file. When creating or updating a ZipFile, the uncompressed + size is computed during compression. Therefore the value on a + ZipEntry is valid after a call to Save() (or one of its + overloads) in that case. + + + + + + + The ratio of compressed size to uncompressed size of the ZipEntry. + + + + + This is a ratio of the compressed size to the uncompressed size of the + entry, expressed as a double in the range of 0 to 100+. A value of 100 + indicates no compression at all. It could be higher than 100 when the + compression algorithm actually inflates the data, as may occur for small + files, or uncompressible data that is encrypted. + + + + You could format it for presentation to a user via a format string of + "{3,5:F0}%" to see it as a percentage. + + + + If the size of the original uncompressed file is 0, implying a + denominator of 0, the return value will be zero. + + + + This property is valid after reading in an existing zip file, or after + saving the ZipFile that contains the ZipEntry. You cannot know the + effect of a compression transform until you try it. + + + + + + + The 32-bit CRC (Cyclic Redundancy Check) on the contents of the ZipEntry. + + + + + You probably don't need to concern yourself with this. It is used + internally by DotNetZip to verify files or streams upon extraction. + + The value is a 32-bit + CRC using 0xEDB88320 for the polynomial. This is the same CRC-32 used in + PNG, MPEG-2, and other protocols and formats. It is a read-only property; when + creating a Zip archive, the CRC for each entry is set only after a call to + Save() on the containing ZipFile. When reading an existing zip file, the value + of this property reflects the stored CRC for the entry. + + + + + + True if the entry is a directory (not a file). + This is a readonly property on the entry. + + + + + A derived property that is true if the entry uses encryption. + + + + + This is a readonly property on the entry. When reading a zip file, + the value for the ZipEntry is determined by the data read + from the zip file. After saving a ZipFile, the value of this + property for each ZipEntry indicates whether encryption was + actually used (which will have been true if the was set and the property + was something other than . + + + + + + Set this to specify which encryption algorithm to use for the entry when + saving it to a zip archive. + + + + + + Set this property in order to encrypt the entry when the ZipFile is + saved. When setting this property, you must also set a on the entry. If you set a value other than on this property and do not set a + Password then the entry will not be encrypted. The ZipEntry + data is encrypted as the ZipFile is saved, when you call or one of its cousins on the containing + ZipFile instance. You do not need to specify the Encryption + when extracting entries from an archive. + + + + The Zip specification from PKWare defines a set of encryption algorithms, + and the data formats for the zip archive that support them, and PKWare + supports those algorithms in the tools it produces. Other vendors of tools + and libraries, such as WinZip or Xceed, typically support a + subset of the algorithms specified by PKWare. These tools can + sometimes support additional different encryption algorithms and data + formats, not specified by PKWare. The AES Encryption specified and + supported by WinZip is the most popular example. This library supports a + subset of the complete set of algorithms specified by PKWare and other + vendors. + + + + There is no common, ubiquitous multi-vendor standard for strong encryption + within zip files. There is broad support for so-called "traditional" Zip + encryption, sometimes called Zip 2.0 encryption, as specified + by PKWare, but this encryption is considered weak and + breakable. This library currently supports the Zip 2.0 "weak" encryption, + and also a stronger WinZip-compatible AES encryption, using either 128-bit + or 256-bit key strength. If you want DotNetZip to support an algorithm + that is not currently supported, call the author of this library and maybe + we can talk business. + + + + The class also has a property. In most cases you will use + that property when setting encryption. This property takes + precedence over any Encryption set on the ZipFile itself. + Typically, you would use the per-entry Encryption when most entries in the + zip archive use one encryption algorithm, and a few entries use a + different one. If all entries in the zip file use the same Encryption, + then it is simpler to just set this property on the ZipFile itself, when + creating a zip archive. + + + + Some comments on updating archives: If you read a ZipFile, you can + modify the Encryption on an encrypted entry: you can remove encryption + from an entry that was encrypted; you can encrypt an entry that was not + encrypted previously; or, you can change the encryption algorithm. The + changes in encryption are not made permanent until you call Save() on the + ZipFile. To effect changes in encryption, the entry content is + streamed through several transformations, depending on the modification + the application has requested. For example if the entry is not encrypted + and the application sets Encryption to PkzipWeak, then at + the time of Save(), the original entry is read and decompressed, + then re-compressed and encrypted. Conversely, if the original entry is + encrypted with PkzipWeak encryption, and the application sets the + Encryption property to WinZipAes128, then at the time of + Save(), the original entry is decrypted via PKZIP encryption and + decompressed, then re-compressed and re-encrypted with AES. This all + happens automatically within the library, but it can be time-consuming for + large entries. + + + + Additionally, when updating archives, it is not possible to change the + password when changing the encryption algorithm. To change both the + algorithm and the password, you need to Save() the zipfile twice. First + set the Encryption to None, then call Save(). Then set the + Encryption to the new value (not "None"), then call Save() + once again. + + + + The WinZip AES encryption algorithms are not supported on the .NET Compact + Framework. + + + + + + This example creates a zip archive that uses encryption, and then extracts + entries from the archive. When creating the zip archive, the ReadMe.txt + file is zipped without using a password or encryption. The other file + uses encryption. + + + // Create a zip archive with AES Encryption. + using (ZipFile zip = new ZipFile()) + { + zip.AddFile("ReadMe.txt") + ZipEntry e1= zip.AddFile("2008-Regional-Sales-Report.pdf"); + e1.Encryption= EncryptionAlgorithm.WinZipAes256; + e1.Password= "Top.Secret.No.Peeking!"; + zip.Save("EncryptedArchive.zip"); + } + + // Extract a zip archive that uses AES Encryption. + // You do not need to specify the algorithm during extraction. + using (ZipFile zip = ZipFile.Read("EncryptedArchive.zip")) + { + // Specify the password that is used during extraction, for + // all entries that require a password: + zip.Password= "Top.Secret.No.Peeking!"; + zip.ExtractAll("extractDirectory"); + } + + + + ' Create a zip that uses Encryption. + Using zip As New ZipFile() + zip.AddFile("ReadMe.txt") + Dim e1 as ZipEntry + e1= zip.AddFile("2008-Regional-Sales-Report.pdf") + e1.Encryption= EncryptionAlgorithm.WinZipAes256 + e1.Password= "Top.Secret.No.Peeking!" + zip.Save("EncryptedArchive.zip") + End Using + + ' Extract a zip archive that uses AES Encryption. + ' You do not need to specify the algorithm during extraction. + Using (zip as ZipFile = ZipFile.Read("EncryptedArchive.zip")) + ' Specify the password that is used during extraction, for + ' all entries that require a password: + zip.Password= "Top.Secret.No.Peeking!" + zip.ExtractAll("extractDirectory") + End Using + + + + + + Thrown in the setter if EncryptionAlgorithm.Unsupported is specified. + + + ZipEntry.Password + ZipFile.Encryption + + + + The Password to be used when encrypting a ZipEntry upon + ZipFile.Save(), or when decrypting an entry upon Extract(). + + + + + This is a write-only property on the entry. Set this to request that the + entry be encrypted when writing the zip archive, or set it to specify the + password to be used when extracting an existing entry that is encrypted. + + + + The password set here is implicitly used to encrypt the entry during the + operation, or to decrypt during the or operation. If you set + the Password on a ZipEntry after calling Save(), there is no + effect. + + + + Consider setting the property when using a + password. Answering concerns that the standard password protection + supported by all zip tools is weak, WinZip has extended the ZIP + specification with a way to use AES Encryption to protect entries in the + Zip file. Unlike the "PKZIP 2.0" encryption specified in the PKZIP + specification, AES + Encryption uses a standard, strong, tested, encryption + algorithm. DotNetZip can create zip archives that use WinZip-compatible + AES encryption, if you set the property. But, + archives created that use AES encryption may not be readable by all other + tools and libraries. For example, Windows Explorer cannot read a + "compressed folder" (a zip file) that uses AES encryption, though it can + read a zip file that uses "PKZIP encryption." + + + + The class also has a + property. This property takes precedence over any password set on the + ZipFile itself. Typically, you would use the per-entry Password when most + entries in the zip archive use one password, and a few entries use a + different password. If all entries in the zip file use the same password, + then it is simpler to just set this property on the ZipFile itself, + whether creating a zip archive or extracting a zip archive. + + + + Some comments on updating archives: If you read a ZipFile, you + cannot modify the password on any encrypted entry, except by extracting + the entry with the original password (if any), removing the original entry + via , and then adding a new + entry with a new Password. + + + + For example, suppose you read a ZipFile, and there is an encrypted + entry. Setting the Password property on that ZipEntry and then + calling Save() on the ZipFile does not update the password + on that entry in the archive. Neither is an exception thrown. Instead, + what happens during the Save() is the existing entry is copied + through to the new zip archive, in its original encrypted form. Upon + re-reading that archive, the entry can be decrypted with its original + password. + + + + If you read a ZipFile, and there is an un-encrypted entry, you can set the + Password on the entry and then call Save() on the ZipFile, and get + encryption on that entry. + + + + + + + This example creates a zip file with two entries, and then extracts the + entries from the zip file. When creating the zip file, the two files are + added to the zip file using password protection. Each entry uses a + different password. During extraction, each file is extracted with the + appropriate password. + + + // create a file with encryption + using (ZipFile zip = new ZipFile()) + { + ZipEntry entry; + entry= zip.AddFile("Declaration.txt"); + entry.Password= "123456!"; + entry = zip.AddFile("Report.xls"); + entry.Password= "1Secret!"; + zip.Save("EncryptedArchive.zip"); + } + + // extract entries that use encryption + using (ZipFile zip = ZipFile.Read("EncryptedArchive.zip")) + { + ZipEntry entry; + entry = zip["Declaration.txt"]; + entry.Password = "123456!"; + entry.Extract("extractDir"); + entry = zip["Report.xls"]; + entry.Password = "1Secret!"; + entry.Extract("extractDir"); + } + + + + + Using zip As New ZipFile + Dim entry as ZipEntry + entry= zip.AddFile("Declaration.txt") + entry.Password= "123456!" + entry = zip.AddFile("Report.xls") + entry.Password= "1Secret!" + zip.Save("EncryptedArchive.zip") + End Using + + + ' extract entries that use encryption + Using (zip as ZipFile = ZipFile.Read("EncryptedArchive.zip")) + Dim entry as ZipEntry + entry = zip("Declaration.txt") + entry.Password = "123456!" + entry.Extract("extractDir") + entry = zip("Report.xls") + entry.Password = "1Secret!" + entry.Extract("extractDir") + End Using + + + + + + + ZipFile.Password + + + + The action the library should take when extracting a file that already exists. + + + + + This property affects the behavior of the Extract methods (one of the + Extract() or ExtractWithPassword() overloads), when + extraction would would overwrite an existing filesystem file. If you do + not set this property, the library throws an exception when extracting + an entry would overwrite an existing file. + + + + This property has no effect when extracting to a stream, or when the file to be + extracted does not already exist. + + + + + + + This example shows how to set the ExtractExistingFile property in + an ExtractProgress event, in response to user input. The + ExtractProgress event is invoked if and only if the + ExtractExistingFile property was previously set to + ExtractExistingFileAction.InvokeExtractProgressEvent. + + public static void ExtractProgress(object sender, ExtractProgressEventArgs e) + { + if (e.EventType == ZipProgressEventType.Extracting_BeforeExtractEntry) + Console.WriteLine("extract {0} ", e.CurrentEntry.FileName); + + else if (e.EventType == ZipProgressEventType.Extracting_ExtractEntryWouldOverwrite) + { + ZipEntry entry = e.CurrentEntry; + string response = null; + // Ask the user if he wants overwrite the file + do + { + Console.Write("Overwrite {0} in {1} ? (y/n/C) ", entry.FileName, e.ExtractLocation); + response = Console.ReadLine(); + Console.WriteLine(); + + } while (response != null && response[0]!='Y' && + response[0]!='N' && response[0]!='C'); + + if (response[0]=='C') + e.Cancel = true; + else if (response[0]=='Y') + entry.ExtractExistingFile = ExtractExistingFileAction.OverwriteSilently; + else + entry.ExtractExistingFile= ExtractExistingFileAction.DoNotOverwrite; + } + } + + + + + + The action to take when an error is encountered while + opening or reading files as they are saved into a zip archive. + + + + + Errors can occur within a call to ZipFile.Save, as the various files contained + in a ZipFile are being saved into the zip archive. During the + Save, DotNetZip will perform a File.Open on the file + associated to the ZipEntry, and then will read the entire contents of + the file as it is zipped. Either the open or the Read may fail, because + of lock conflicts or other reasons. Using this property, you can + specify the action to take when such errors occur. + + + + Typically you will NOT set this property on individual ZipEntry + instances. Instead, you will set the ZipFile.ZipErrorAction property on + the ZipFile instance, before adding any entries to the + ZipFile. If you do this, errors encountered on behalf of any of + the entries in the ZipFile will be handled the same way. + + + + But, if you use a handler, you will want + to set this property on the ZipEntry within the handler, to + communicate back to DotNetZip what you would like to do with the + particular error. + + + + + + + + + Indicates whether the entry was included in the most recent save. + + + An entry can be excluded or skipped from a save if there is an error + opening or reading the entry. + + + + + + A callback that allows the application to specify the compression to use + for a given entry that is about to be added to the zip archive. + + + + + See + + + + + + Set to indicate whether to use UTF-8 encoding for filenames and comments. + + + + + + If this flag is set, the comment and filename for the entry will be + encoded with UTF-8, as described in the Zip + specification, if necessary. "Necessary" means, the filename or + entry comment (if any) cannot be reflexively encoded and decoded using the + default code page, IBM437. + + + + Setting this flag to true is equivalent to setting to System.Text.Encoding.UTF8. + + + + This flag has no effect or relation to the text encoding used within the + file itself. + + + + + + + The text encoding to use for the FileName and Comment on this ZipEntry, + when the default encoding is insufficient. + + + + + + Don't use this property. See . + + + + + + + Specifies the alternate text encoding used by this ZipEntry + + + + The default text encoding used in Zip files for encoding filenames and + comments is IBM437, which is something like a superset of ASCII. In + cases where this is insufficient, applications can specify an + alternate encoding. + + + When creating a zip file, the usage of the alternate encoding is + governed by the property. + Typically you would set both properties to tell DotNetZip to employ an + encoding that is not IBM437 in the zipfile you are creating. + + + Keep in mind that because the ZIP specification states that the only + valid encodings to use are IBM437 and UTF-8, if you use something + other than that, then zip tools and libraries may not be able to + successfully read the zip archive you generate. + + + The zip specification states that applications should presume that + IBM437 is in use, except when a special bit is set, which indicates + UTF-8. There is no way to specify an arbitrary code page, within the + zip file itself. When you create a zip file encoded with gb2312 or + ibm861 or anything other than IBM437 or UTF-8, then the application + that reads the zip file needs to "know" which code page to use. In + some cases, the code page used when reading is chosen implicitly. For + example, WinRar uses the ambient code page for the host desktop + operating system. The pitfall here is that if you create a zip in + Copenhagen and send it to Tokyo, the reader of the zipfile may not be + able to decode successfully. + + + + This example shows how to create a zipfile encoded with a + language-specific encoding: + + using (var zip = new ZipFile()) + { + zip.AlternateEnoding = System.Text.Encoding.GetEncoding("ibm861"); + zip.AlternateEnodingUsage = ZipOption.Always; + zip.AddFileS(arrayOfFiles); + zip.Save("Myarchive-Encoded-in-IBM861.zip"); + } + + + + + + + Describes if and when this instance should apply + AlternateEncoding to encode the FileName and Comment, when + saving. + + + + + + Indicates whether an entry is marked as a text file. Be careful when + using on this property. Unless you have a good reason, you should + probably ignore this property. + + + + + The ZIP format includes a provision for specifying whether an entry in + the zip archive is a text or binary file. This property exposes that + metadata item. Be careful when using this property: It's not clear + that this property as a firm meaning, across tools and libraries. + + + + To be clear, when reading a zip file, the property value may or may + not be set, and its value may or may not be valid. Not all entries + that you may think of as "text" entries will be so marked, and entries + marked as "text" are not guaranteed in any way to be text entries. + Whether the value is set and set correctly depends entirely on the + application that produced the zip file. + + + + There are many zip tools available, and when creating zip files, some + of them "respect" the IsText metadata field, and some of them do not. + Unfortunately, even when an application tries to do "the right thing", + it's not always clear what "the right thing" is. + + + + There's no firm definition of just what it means to be "a text file", + and the zip specification does not help in this regard. Twenty years + ago, text was ASCII, each byte was less than 127. IsText meant, all + bytes in the file were less than 127. These days, it is not the case + that all text files have all bytes less than 127. Any unicode file + may have bytes that are above 0x7f. The zip specification has nothing + to say on this topic. Therefore, it's not clear what IsText really + means. + + + + This property merely tells a reading application what is stored in the + metadata for an entry, without guaranteeing its validity or its + meaning. + + + + When DotNetZip is used to create a zipfile, it attempts to set this + field "correctly." For example, if a file ends in ".txt", this field + will be set. Your application may override that default setting. When + writing a zip file, you must set the property before calling + Save() on the ZipFile. + + + + When reading a zip file, a more general way to decide just what kind + of file is contained in a particular entry is to use the file type + database stored in the operating system. The operating system stores + a table that says, a file with .jpg extension is a JPG image file, a + file with a .xml extension is an XML document, a file with a .txt is a + pure ASCII text document, and so on. To get this information on + Windows, you + need to read and parse the registry. + + + + + using (var zip = new ZipFile()) + { + var e = zip.UpdateFile("Descriptions.mme", ""); + e.IsText = true; + zip.Save(zipPath); + } + + + + Using zip As New ZipFile + Dim e2 as ZipEntry = zip.AddFile("Descriptions.mme", "") + e.IsText= True + zip.Save(zipPath) + End Using + + + + + Provides a string representation of the instance. + a string representation of the instance. + + + + Extract the entry to the filesystem, starting at the current + working directory. + + + + This method has a bunch of overloads! One of them is sure to + be the right one for you... If you don't like these, check + out the ExtractWithPassword() methods. + + + + + + + + + This method extracts an entry from a zip file into the current + working directory. The path of the entry as extracted is the full + path as specified in the zip archive, relative to the current + working directory. After the file is extracted successfully, the + file attributes and timestamps are set. + + + + The action taken when extraction an entry would overwrite an + existing file is determined by the property. + + + + Within the call to Extract(), the content for the entry is + written into a filesystem file, and then the last modified time of the + file is set according to the property on + the entry. See the remarks the property for + some details about the last modified time. + + + + + + + Extract the entry to a file in the filesystem, using the specified + behavior when extraction would overwrite an existing file. + + + + + See the remarks on the property, for some + details about how the last modified time of the file is set after + extraction. + + + + + The action to take if extraction would overwrite an existing file. + + + + + Extracts the entry to the specified stream. + + + + + The caller can specify any write-able stream, for example a , a , or ASP.NET's + Response.OutputStream. The content will be decrypted and + decompressed as necessary. If the entry is encrypted and no password + is provided, this method will throw. + + + The position on the stream is not reset by this method before it extracts. + You may want to call stream.Seek() before calling ZipEntry.Extract(). + + + + + the stream to which the entry should be extracted. + + + + + + Extract the entry to the filesystem, starting at the specified base + directory. + + + the pathname of the base directory + + + + + + This example extracts only the entries in a zip file that are .txt files, + into a directory called "textfiles". + + using (ZipFile zip = ZipFile.Read("PackedDocuments.zip")) + { + foreach (string s1 in zip.EntryFilenames) + { + if (s1.EndsWith(".txt")) + { + zip[s1].Extract("textfiles"); + } + } + } + + + Using zip As ZipFile = ZipFile.Read("PackedDocuments.zip") + Dim s1 As String + For Each s1 In zip.EntryFilenames + If s1.EndsWith(".txt") Then + zip(s1).Extract("textfiles") + End If + Next + End Using + + + + + + + Using this method, existing entries in the filesystem will not be + overwritten. If you would like to force the overwrite of existing + files, see the property, or call + . + + + + See the remarks on the property, for some + details about how the last modified time of the created file is set. + + + + + + Extract the entry to the filesystem, starting at the specified base + directory, and using the specified behavior when extraction would + overwrite an existing file. + + + + + See the remarks on the property, for some + details about how the last modified time of the created file is set. + + + + + + String sZipPath = "Airborne.zip"; + String sFilePath = "Readme.txt"; + String sRootFolder = "Digado"; + using (ZipFile zip = ZipFile.Read(sZipPath)) + { + if (zip.EntryFileNames.Contains(sFilePath)) + { + // use the string indexer on the zip file + zip[sFileName].Extract(sRootFolder, + ExtractExistingFileAction.OverwriteSilently); + } + } + + + + Dim sZipPath as String = "Airborne.zip" + Dim sFilePath As String = "Readme.txt" + Dim sRootFolder As String = "Digado" + Using zip As ZipFile = ZipFile.Read(sZipPath) + If zip.EntryFileNames.Contains(sFilePath) + ' use the string indexer on the zip file + zip(sFilePath).Extract(sRootFolder, _ + ExtractExistingFileAction.OverwriteSilently) + End If + End Using + + + + the pathname of the base directory + + The action to take if extraction would overwrite an existing file. + + + + + Extract the entry to the filesystem, using the current working directory + and the specified password. + + + + This method has a bunch of overloads! One of them is sure to be + the right one for you... + + + + + + + + + Existing entries in the filesystem will not be overwritten. If you + would like to force the overwrite of existing files, see the property, or call + . + + + + See the remarks on the property for some + details about how the "last modified" time of the created file is + set. + + + + + In this example, entries that use encryption are extracted using a + particular password. + + using (var zip = ZipFile.Read(FilePath)) + { + foreach (ZipEntry e in zip) + { + if (e.UsesEncryption) + e.ExtractWithPassword("Secret!"); + else + e.Extract(); + } + } + + + Using zip As ZipFile = ZipFile.Read(FilePath) + Dim e As ZipEntry + For Each e In zip + If (e.UsesEncryption) + e.ExtractWithPassword("Secret!") + Else + e.Extract + End If + Next + End Using + + + The Password to use for decrypting the entry. + + + + Extract the entry to the filesystem, starting at the specified base + directory, and using the specified password. + + + + + + + + Existing entries in the filesystem will not be overwritten. If you + would like to force the overwrite of existing files, see the property, or call + . + + + + See the remarks on the property, for some + details about how the last modified time of the created file is set. + + + + The pathname of the base directory. + The Password to use for decrypting the entry. + + + + Extract the entry to a file in the filesystem, relative to the + current directory, using the specified behavior when extraction + would overwrite an existing file. + + + + + See the remarks on the property, for some + details about how the last modified time of the created file is set. + + + + The Password to use for decrypting the entry. + + + The action to take if extraction would overwrite an existing file. + + + + + Extract the entry to the filesystem, starting at the specified base + directory, and using the specified behavior when extraction would + overwrite an existing file. + + + + See the remarks on the property, for some + details about how the last modified time of the created file is set. + + + the pathname of the base directory + + The action to take if extraction would + overwrite an existing file. + + The Password to use for decrypting the entry. + + + + Extracts the entry to the specified stream, using the specified + Password. For example, the caller could extract to Console.Out, or + to a MemoryStream. + + + + + The caller can specify any write-able stream, for example a , a , or ASP.NET's + Response.OutputStream. The content will be decrypted and + decompressed as necessary. If the entry is encrypted and no password + is provided, this method will throw. + + + The position on the stream is not reset by this method before it extracts. + You may want to call stream.Seek() before calling ZipEntry.Extract(). + + + + + + the stream to which the entry should be extracted. + + + The password to use for decrypting the entry. + + + + + Opens a readable stream corresponding to the zip entry in the + archive. The stream decompresses and decrypts as necessary, as it + is read. + + + + + + DotNetZip offers a variety of ways to extract entries from a zip + file. This method allows an application to extract an entry by + reading a . + + + + The return value is of type . Use it as you would any + stream for reading. When an application calls on that stream, it will + receive data from the zip entry that is decrypted and decompressed + as necessary. + + + + CrcCalculatorStream adds one additional feature: it keeps a + CRC32 checksum on the bytes of the stream as it is read. The CRC + value is available in the property on the + CrcCalculatorStream. When the read is complete, your + application + should check this CRC against the + property on the ZipEntry to validate the content of the + ZipEntry. You don't have to validate the entry using the CRC, but + you should, to verify integrity. Check the example for how to do + this. + + + + If the entry is protected with a password, then you need to provide + a password prior to calling , either by + setting the property on the entry, or the + property on the ZipFile + itself. Or, you can use , the + overload of OpenReader that accepts a password parameter. + + + + If you want to extract entry data into a write-able stream that is + already opened, like a , do not + use this method. Instead, use . + + + + Your application may use only one stream created by OpenReader() at + a time, and you should not call other Extract methods before + completing your reads on a stream obtained from OpenReader(). This + is because there is really only one source stream for the compressed + content. A call to OpenReader() seeks in the source stream, to the + beginning of the compressed content. A subsequent call to + OpenReader() on a different entry will seek to a different position + in the source stream, as will a call to Extract() or one of its + overloads. This will corrupt the state for the decompressing stream + from the original call to OpenReader(). + + + + The OpenReader() method works only when the ZipEntry is + obtained from an instance of ZipFile. This method will throw + an exception if the ZipEntry is obtained from a . + + + + + This example shows how to open a zip archive, then read in a named + entry via a stream. After the read loop is complete, the code + compares the calculated during the read loop with the expected CRC + on the ZipEntry, to verify the extraction. + + using (ZipFile zip = new ZipFile(ZipFileToRead)) + { + ZipEntry e1= zip["Elevation.mp3"]; + using (Ionic.Zlib.CrcCalculatorStream s = e1.OpenReader()) + { + byte[] buffer = new byte[4096]; + int n, totalBytesRead= 0; + do { + n = s.Read(buffer,0, buffer.Length); + totalBytesRead+=n; + } while (n>0); + if (s.Crc32 != e1.Crc32) + throw new Exception(string.Format("The Zip Entry failed the CRC Check. (0x{0:X8}!=0x{1:X8})", s.Crc32, e1.Crc32)); + if (totalBytesRead != e1.UncompressedSize) + throw new Exception(string.Format("We read an unexpected number of bytes. ({0}!={1})", totalBytesRead, e1.UncompressedSize)); + } + } + + + Using zip As New ZipFile(ZipFileToRead) + Dim e1 As ZipEntry = zip.Item("Elevation.mp3") + Using s As Ionic.Zlib.CrcCalculatorStream = e1.OpenReader + Dim n As Integer + Dim buffer As Byte() = New Byte(4096) {} + Dim totalBytesRead As Integer = 0 + Do + n = s.Read(buffer, 0, buffer.Length) + totalBytesRead = (totalBytesRead + n) + Loop While (n > 0) + If (s.Crc32 <> e1.Crc32) Then + Throw New Exception(String.Format("The Zip Entry failed the CRC Check. (0x{0:X8}!=0x{1:X8})", s.Crc32, e1.Crc32)) + End If + If (totalBytesRead <> e1.UncompressedSize) Then + Throw New Exception(String.Format("We read an unexpected number of bytes. ({0}!={1})", totalBytesRead, e1.UncompressedSize)) + End If + End Using + End Using + + + + The Stream for reading. + + + + Opens a readable stream for an encrypted zip entry in the archive. + The stream decompresses and decrypts as necessary, as it is read. + + + + + See the documentation on the method for + full details. This overload allows the application to specify a + password for the ZipEntry to be read. + + + + The password to use for decrypting the entry. + The Stream for reading. + + + + Pass in either basedir or s, but not both. + In other words, you can extract to a stream or to a directory (filesystem), but not both! + The Password param is required for encrypted entries. + + + + + Extract to a stream + In other words, you can extract to a stream or to a directory (filesystem), but not both! + The Password param is required for encrypted entries. + + + + + Validates that the args are consistent; returning whether the caller can return + because it's done, or not (caller should continue) + + + + + Validates that the args are consistent; returning whether the caller can return + because it's done, or not (caller should continue) + + + + + Reads one ZipEntry from the given stream. The content for + the entry does not get decompressed or decrypted. This method + basically reads metadata, and seeks. + + the ZipContainer this entry belongs to. + + true of this is the first entry being read from the stream. + + the ZipEntry read from the stream. + + + + Finds a particular segment in the given extra field. + This is used when modifying a previously-generated + extra field, in particular when removing the AES crypto + segment in the extra field. + + + + + At current cursor position in the stream, read the extra + field, and set the properties on the ZipEntry instance + appropriately. This can be called when processing the + Extra field in the Central Directory, or in the local + header. + + + + + generate and return a byte array that encodes the filename + for the entry. + + + + side effects: generate and store into _CommentBytes the + byte array for any comment attached to the entry. Also + sets _actualEncoding to indicate the actual encoding + used. The same encoding is used for both filename and + comment. + + + + + + Stores the position of the entry source stream, or, if the position is + already stored, seeks to that position. + + + + + This method is called in prep for reading the source stream. If PKZIP + encryption is used, then we need to calc the CRC32 before doing the + encryption, because the CRC is used in the 12th byte of the PKZIP + encryption header. So, we need to be able to seek backward in the source + when saving the ZipEntry. This method is called from the place that + calculates the CRC, and also from the method that does the encryption of + the file data. + + + + The first time through, this method sets the _sourceStreamOriginalPosition + field. Subsequent calls to this method seek to that position. + + + + + + Copy metadata that may have been changed by the app. We do this when + resetting the zipFile instance. If the app calls Save() on a ZipFile, then + tries to party on that file some more, we may need to Reset() it , which + means re-reading the entries and then copying the metadata. I think. + + + + + Set the input stream and get its length, if possible. The length is + used for progress updates, AND, to allow an optimization in case of + a stream/file of zero length. In that case we skip the Encrypt and + compression Stream. (like DeflateStream or BZip2OutputStream) + + + + + Prepare the given stream for output - wrap it in a CountingStream, and + then in a CRC stream, and an encryptor and deflator as appropriate. + + + + Previously this was used in ZipEntry.Write(), but in an effort to + introduce some efficiencies in that method I've refactored to put the + code inline. This method still gets called by ZipOutputStream. + + + + + + An enum that specifies the type of timestamp available on the ZipEntry. + + + + + + The last modified time of a file can be stored in multiple ways in + a zip file, and they are not mutually exclusive: + + + + + In the so-called "DOS" format, which has a 2-second precision. Values + are rounded to the nearest even second. For example, if the time on the + file is 12:34:43, then it will be stored as 12:34:44. This first value + is accessible via the LastModified property. This value is always + present in the metadata for each zip entry. In some cases the value is + invalid, or zero. + + + + In the so-called "Windows" or "NTFS" format, as an 8-byte integer + quantity expressed as the number of 1/10 milliseconds (in other words + the number of 100 nanosecond units) since January 1, 1601 (UTC). This + format is how Windows represents file times. This time is accessible + via the ModifiedTime property. + + + + In the "Unix" format, a 4-byte quantity specifying the number of seconds since + January 1, 1970 UTC. + + + + In an older format, now deprecated but still used by some current + tools. This format is also a 4-byte quantity specifying the number of + seconds since January 1, 1970 UTC. + + + + + + This bit field describes which of the formats were found in a ZipEntry that was read. + + + + + + + Default value. + + + + + A DOS timestamp with 2-second precision. + + + + + A Windows timestamp with 100-ns precision. + + + + + A Unix timestamp with 1-second precision. + + + + + A Unix timestamp with 1-second precision, stored in InfoZip v1 format. This + format is outdated and is supported for reading archives only. + + + + + The method of compression to use for a particular ZipEntry. + + + + PKWare's + ZIP Specification describes a number of distinct + cmopression methods that can be used within a zip + file. DotNetZip supports a subset of them. + + + + + No compression at all. For COM environments, the value is 0 (zero). + + + + + DEFLATE compression, as described in IETF RFC + 1951. This is the "normal" compression used in zip + files. For COM environments, the value is 8. + + + + + BZip2 compression, a compression algorithm developed by Julian Seward. + For COM environments, the value is 12. + + + + + An enum that specifies the source of the ZipEntry. + + + + + Default value. Invalid on a bonafide ZipEntry. + + + + + The entry was instantiated by calling AddFile() or another method that + added an entry from the filesystem. + + + + + The entry was instantiated via or + . + + + + + The ZipEntry was instantiated by reading a zipfile. + + + + + The content for the ZipEntry will be or was provided by the WriteDelegate. + + + + + The content for the ZipEntry will be obtained from the stream dispensed by the OpenDelegate. + The entry was instantiated via . + + + + + The content for the ZipEntry will be or was obtained from a ZipOutputStream. + + + + + An enum providing the options when an error occurs during opening or reading + of a file or directory that is being saved to a zip file. + + + + + This enum describes the actions that the library can take when an error occurs + opening or reading a file, as it is being saved into a Zip archive. + + + + In some cases an error will occur when DotNetZip tries to open a file to be + added to the zip archive. In other cases, an error might occur after the + file has been successfully opened, while DotNetZip is reading the file. + + + + The first problem might occur when calling AddDirectory() on a directory + that contains a Clipper .dbf file; the file is locked by Clipper and + cannot be opened by another process. An example of the second problem is + the ERROR_LOCK_VIOLATION that results when a file is opened by another + process, but not locked, and a range lock has been taken on the file. + Microsoft Outlook takes range locks on .PST files. + + + + + + Throw an exception when an error occurs while zipping. This is the default + behavior. (For COM clients, this is a 0 (zero).) + + + + + When an error occurs during zipping, for example a file cannot be opened, + skip the file causing the error, and continue zipping. (For COM clients, + this is a 1.) + + + + + When an error occurs during zipping, for example a file cannot be opened, + retry the operation that caused the error. Be careful with this option. If + the error is not temporary, the library will retry forever. (For COM + clients, this is a 2.) + + + + + When an error occurs, invoke the zipError event. The event type used is + . A typical use of this option: + a GUI application may wish to pop up a dialog to allow the user to view the + error that occurred, and choose an appropriate action. After your + processing in the error event, if you want to skip the file, set on the + ZipProgressEventArgs.CurrentEntry to Skip. If you want the + exception to be thrown, set ZipErrorAction on the CurrentEntry + to Throw. If you want to cancel the zip, set + ZipProgressEventArgs.Cancel to true. Cancelling differs from using + Skip in that a cancel will not save any further entries, if there are any. + (For COM clients, the value of this enum is a 3.) + + + + + The ZipFile type represents a zip archive file. + + + + + This is the main type in the DotNetZip class library. This class reads and + writes zip files, as defined in the specification + for zip files described by PKWare. The compression for this + implementation is provided by a managed-code version of Zlib, included with + DotNetZip in the classes in the Ionic.Zlib namespace. + + + + This class provides a general purpose zip file capability. Use it to read, + create, or update zip files. When you want to create zip files using a + Stream type to write the zip file, you may want to consider the class. + + + + Both the ZipOutputStream class and the ZipFile class can + be used to create zip files. Both of them support many of the common zip + features, including Unicode, different compression methods and levels, + and ZIP64. They provide very similar performance when creating zip + files. + + + + The ZipFile class is generally easier to use than + ZipOutputStream and should be considered a higher-level interface. For + example, when creating a zip file via calls to the PutNextEntry() and + Write() methods on the ZipOutputStream class, the caller is + responsible for opening the file, reading the bytes from the file, writing + those bytes into the ZipOutputStream, setting the attributes on the + ZipEntry, and setting the created, last modified, and last accessed + timestamps on the zip entry. All of these things are done automatically by a + call to ZipFile.AddFile(). + For this reason, the ZipOutputStream is generally recommended for use + only when your application emits arbitrary data, not necessarily data from a + filesystem file, directly into a zip file, and does so using a Stream + metaphor. + + + + Aside from the differences in programming model, there are other + differences in capability between the two classes. + + + + + ZipFile can be used to read and extract zip files, in addition to + creating zip files. ZipOutputStream cannot read zip files. If you want + to use a stream to read zip files, check out the class. + + + + ZipOutputStream does not support the creation of segmented or spanned + zip files. + + + + ZipOutputStream cannot produce a self-extracting archive. + + + + + Be aware that the ZipFile class implements the interface. In order for ZipFile to + produce a valid zip file, you use use it within a using clause (Using + in VB), or call the Dispose() method explicitly. See the examples + for how to employ a using clause. + + + + + + + Adds an item, either a file or a directory, to a zip file archive. + + + + + This method is handy if you are adding things to zip archive and don't + want to bother distinguishing between directories or files. Any files are + added as single entries. A directory added through this method is added + recursively: all files and subdirectories contained within the directory + are added to the ZipFile. + + + + The name of the item may be a relative path or a fully-qualified + path. Remember, the items contained in ZipFile instance get written + to the disk only when you call or a similar + save method. + + + + The directory name used for the file within the archive is the same + as the directory name (potentially a relative path) specified in the + . + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + + + + This method has two overloads. + + the name of the file or directory to add. + + The ZipEntry added. + + + + Adds an item, either a file or a directory, to a zip file archive, + explicitly specifying the directory path to be used in the archive. + + + + + If adding a directory, the add is recursive on all files and + subdirectories contained within it. + + + The name of the item may be a relative path or a fully-qualified path. + The item added by this call to the ZipFile is not read from the + disk nor written to the zip file archive until the application calls + Save() on the ZipFile. + + + + This version of the method allows the caller to explicitly specify the + directory path to be used in the archive, which would override the + "natural" path of the filesystem file. + + + + Encryption will be used on the file data if the Password has + been set on the ZipFile object, prior to calling this method. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + Thrown if the file or directory passed in does not exist. + + + the name of the file or directory to add. + + + + The name of the directory path to use within the zip archive. This path + need not refer to an extant directory in the current filesystem. If the + files within the zip are later extracted, this is the path used for the + extracted file. Passing null (Nothing in VB) will use the + path on the fileOrDirectoryName. Passing the empty string ("") will + insert the item at the root path within the archive. + + + + + + + + This example shows how to zip up a set of files into a flat hierarchy, + regardless of where in the filesystem the files originated. The resulting + zip archive will contain a toplevel directory named "flat", which itself + will contain files Readme.txt, MyProposal.docx, and Image1.jpg. A + subdirectory under "flat" called SupportFiles will contain all the files + in the "c:\SupportFiles" directory on disk. + + + String[] itemnames= { + "c:\\fixedContent\\Readme.txt", + "MyProposal.docx", + "c:\\SupportFiles", // a directory + "images\\Image1.jpg" + }; + + try + { + using (ZipFile zip = new ZipFile()) + { + for (int i = 1; i < itemnames.Length; i++) + { + // will add Files or Dirs, recurses and flattens subdirectories + zip.AddItem(itemnames[i],"flat"); + } + zip.Save(ZipToCreate); + } + } + catch (System.Exception ex1) + { + System.Console.Error.WriteLine("exception: {0}", ex1); + } + + + + Dim itemnames As String() = _ + New String() { "c:\fixedContent\Readme.txt", _ + "MyProposal.docx", _ + "SupportFiles", _ + "images\Image1.jpg" } + Try + Using zip As New ZipFile + Dim i As Integer + For i = 1 To itemnames.Length - 1 + ' will add Files or Dirs, recursing and flattening subdirectories. + zip.AddItem(itemnames(i), "flat") + Next i + zip.Save(ZipToCreate) + End Using + Catch ex1 As Exception + Console.Error.WriteLine("exception: {0}", ex1.ToString()) + End Try + + + The ZipEntry added. + + + + Adds a File to a Zip file archive. + + + + + This call collects metadata for the named file in the filesystem, + including the file attributes and the timestamp, and inserts that metadata + into the resulting ZipEntry. Only when the application calls Save() on + the ZipFile, does DotNetZip read the file from the filesystem and + then write the content to the zip file archive. + + + + This method will throw an exception if an entry with the same name already + exists in the ZipFile. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + + In this example, three files are added to a Zip archive. The ReadMe.txt + file will be placed in the root of the archive. The .png file will be + placed in a folder within the zip called photos\personal. The pdf file + will be included into a folder within the zip called Desktop. + + + try + { + using (ZipFile zip = new ZipFile()) + { + zip.AddFile("c:\\photos\\personal\\7440-N49th.png"); + zip.AddFile("c:\\Desktop\\2008-Regional-Sales-Report.pdf"); + zip.AddFile("ReadMe.txt"); + + zip.Save("Package.zip"); + } + } + catch (System.Exception ex1) + { + System.Console.Error.WriteLine("exception: " + ex1); + } + + + + Try + Using zip As ZipFile = New ZipFile + zip.AddFile("c:\photos\personal\7440-N49th.png") + zip.AddFile("c:\Desktop\2008-Regional-Sales-Report.pdf") + zip.AddFile("ReadMe.txt") + zip.Save("Package.zip") + End Using + Catch ex1 As Exception + Console.Error.WriteLine("exception: {0}", ex1.ToString) + End Try + + + + This method has two overloads. + + + + + + + The name of the file to add. It should refer to a file in the filesystem. + The name of the file may be a relative path or a fully-qualified path. + + The ZipEntry corresponding to the File added. + + + + Adds a File to a Zip file archive, potentially overriding the path to be + used within the zip archive. + + + + + The file added by this call to the ZipFile is not written to the + zip file archive until the application calls Save() on the ZipFile. + + + + This method will throw an exception if an entry with the same name already + exists in the ZipFile. + + + + This version of the method allows the caller to explicitly specify the + directory path to be used in the archive. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + + In this example, three files are added to a Zip archive. The ReadMe.txt + file will be placed in the root of the archive. The .png file will be + placed in a folder within the zip called images. The pdf file will be + included into a folder within the zip called files\docs, and will be + encrypted with the given password. + + + try + { + using (ZipFile zip = new ZipFile()) + { + // the following entry will be inserted at the root in the archive. + zip.AddFile("c:\\datafiles\\ReadMe.txt", ""); + // this image file will be inserted into the "images" directory in the archive. + zip.AddFile("c:\\photos\\personal\\7440-N49th.png", "images"); + // the following will result in a password-protected file called + // files\\docs\\2008-Regional-Sales-Report.pdf in the archive. + zip.Password = "EncryptMe!"; + zip.AddFile("c:\\Desktop\\2008-Regional-Sales-Report.pdf", "files\\docs"); + zip.Save("Archive.zip"); + } + } + catch (System.Exception ex1) + { + System.Console.Error.WriteLine("exception: {0}", ex1); + } + + + + Try + Using zip As ZipFile = New ZipFile + ' the following entry will be inserted at the root in the archive. + zip.AddFile("c:\datafiles\ReadMe.txt", "") + ' this image file will be inserted into the "images" directory in the archive. + zip.AddFile("c:\photos\personal\7440-N49th.png", "images") + ' the following will result in a password-protected file called + ' files\\docs\\2008-Regional-Sales-Report.pdf in the archive. + zip.Password = "EncryptMe!" + zip.AddFile("c:\Desktop\2008-Regional-Sales-Report.pdf", "files\documents") + zip.Save("Archive.zip") + End Using + Catch ex1 As Exception + Console.Error.WriteLine("exception: {0}", ex1) + End Try + + + + + + + + + The name of the file to add. The name of the file may be a relative path + or a fully-qualified path. + + + + Specifies a directory path to use to override any path in the fileName. + This path may, or may not, correspond to a real directory in the current + filesystem. If the files within the zip are later extracted, this is the + path used for the extracted file. Passing null (Nothing in + VB) will use the path on the fileName, if any. Passing the empty string + ("") will insert the item at the root path within the archive. + + + The ZipEntry corresponding to the file added. + + + + This method removes a collection of entries from the ZipFile. + + + + A collection of ZipEntry instances from this zip file to be removed. For + example, you can pass in an array of ZipEntry instances; or you can call + SelectEntries(), and then add or remove entries from that + ICollection<ZipEntry> (ICollection(Of ZipEntry) in VB), and pass + that ICollection to this method. + + + + + + + + This method removes a collection of entries from the ZipFile, by name. + + + + A collection of strings that refer to names of entries to be removed + from the ZipFile. For example, you can pass in an array or a + List of Strings that provide the names of entries to be removed. + + + + + + + + This method adds a set of files to the ZipFile. + + + + + Use this method to add a set of files to the zip archive, in one call. + For example, a list of files received from + System.IO.Directory.GetFiles() can be added to a zip archive in one + call. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to each + ZipEntry added. + + + + + The collection of names of the files to add. Each string should refer to a + file in the filesystem. The name of the file may be a relative path or a + fully-qualified path. + + + + This example shows how to create a zip file, and add a few files into it. + + String ZipFileToCreate = "archive1.zip"; + String DirectoryToZip = "c:\\reports"; + using (ZipFile zip = new ZipFile()) + { + // Store all files found in the top level directory, into the zip archive. + String[] filenames = System.IO.Directory.GetFiles(DirectoryToZip); + zip.AddFiles(filenames); + zip.Save(ZipFileToCreate); + } + + + + Dim ZipFileToCreate As String = "archive1.zip" + Dim DirectoryToZip As String = "c:\reports" + Using zip As ZipFile = New ZipFile + ' Store all files found in the top level directory, into the zip archive. + Dim filenames As String() = System.IO.Directory.GetFiles(DirectoryToZip) + zip.AddFiles(filenames) + zip.Save(ZipFileToCreate) + End Using + + + + + + + + Adds or updates a set of files in the ZipFile. + + + + + Any files that already exist in the archive are updated. Any files that + don't yet exist in the archive are added. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to each + ZipEntry added. + + + + + The collection of names of the files to update. Each string should refer to a file in + the filesystem. The name of the file may be a relative path or a fully-qualified path. + + + + + + Adds a set of files to the ZipFile, using the + specified directory path in the archive. + + + + + Any directory structure that may be present in the + filenames contained in the list is "flattened" in the + archive. Each file in the list is added to the archive in + the specified top-level directory. + + + + For ZipFile properties including , , , , , , and , their respective values at the + time of this call will be applied to each ZipEntry added. + + + + + The names of the files to add. Each string should refer to + a file in the filesystem. The name of the file may be a + relative path or a fully-qualified path. + + + + Specifies a directory path to use to override any path in the file name. + Th is path may, or may not, correspond to a real directory in the current + filesystem. If the files within the zip are later extracted, this is the + path used for the extracted file. Passing null (Nothing in + VB) will use the path on each of the fileNames, if any. Passing + the empty string ("") will insert the item at the root path within the + archive. + + + + + + + Adds a set of files to the ZipFile, using the specified directory + path in the archive, and preserving the full directory structure in the + filenames. + + + + + + Think of the as a "root" or + base directory used in the archive for the files that get added. when + is true, the hierarchy of files + found in the filesystem will be placed, with the hierarchy intact, + starting at that root in the archive. When preserveDirHierarchy + is false, the path hierarchy of files is flattned, and the flattened + set of files gets placed in the root within the archive as specified in + directoryPathInArchive. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to each + ZipEntry added. + + + + + + The names of the files to add. Each string should refer to a file in the + filesystem. The name of the file may be a relative path or a + fully-qualified path. + + + + Specifies a directory path to use as a prefix for each entry name. + This path may, or may not, correspond to a real directory in the current + filesystem. If the files within the zip are later extracted, this is the + path used for the extracted file. Passing null (Nothing in + VB) will use the path on each of the fileNames, if any. Passing + the empty string ("") will insert the item at the root path within the + archive. + + + + whether the entries in the zip archive will reflect the directory + hierarchy that is present in the various filenames. For example, if + includes two paths, + \Animalia\Chordata\Mammalia\Info.txt and + \Plantae\Magnoliophyta\Dicotyledon\Info.txt, then calling this method + with = false will + result in an exception because of a duplicate entry name, while + calling this method with = + true will result in the full direcory paths being included in + the entries added to the ZipFile. + + + + + + Adds or updates a set of files to the ZipFile, using the specified + directory path in the archive. + + + + + + Any files that already exist in the archive are updated. Any files that + don't yet exist in the archive are added. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to each + ZipEntry added. + + + + + The names of the files to add or update. Each string should refer to a + file in the filesystem. The name of the file may be a relative path or a + fully-qualified path. + + + + Specifies a directory path to use to override any path in the file name. + This path may, or may not, correspond to a real directory in the current + filesystem. If the files within the zip are later extracted, this is the + path used for the extracted file. Passing null (Nothing in + VB) will use the path on each of the fileNames, if any. Passing + the empty string ("") will insert the item at the root path within the + archive. + + + + + + + Adds or Updates a File in a Zip file archive. + + + + + This method adds a file to a zip archive, or, if the file already exists + in the zip archive, this method Updates the content of that given filename + in the zip archive. The UpdateFile method might more accurately be + called "AddOrUpdateFile". + + + + Upon success, there is no way for the application to learn whether the file + was added versus updated. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + This example shows how to Update an existing entry in a zipfile. The first + call to UpdateFile adds the file to the newly-created zip archive. The + second call to UpdateFile updates the content for that file in the zip + archive. + + + using (ZipFile zip1 = new ZipFile()) + { + // UpdateFile might more accurately be called "AddOrUpdateFile" + zip1.UpdateFile("MyDocuments\\Readme.txt"); + zip1.UpdateFile("CustomerList.csv"); + zip1.Comment = "This zip archive has been created."; + zip1.Save("Content.zip"); + } + + using (ZipFile zip2 = ZipFile.Read("Content.zip")) + { + zip2.UpdateFile("Updates\\Readme.txt"); + zip2.Comment = "This zip archive has been updated: The Readme.txt file has been changed."; + zip2.Save(); + } + + + + Using zip1 As New ZipFile + ' UpdateFile might more accurately be called "AddOrUpdateFile" + zip1.UpdateFile("MyDocuments\Readme.txt") + zip1.UpdateFile("CustomerList.csv") + zip1.Comment = "This zip archive has been created." + zip1.Save("Content.zip") + End Using + + Using zip2 As ZipFile = ZipFile.Read("Content.zip") + zip2.UpdateFile("Updates\Readme.txt") + zip2.Comment = "This zip archive has been updated: The Readme.txt file has been changed." + zip2.Save + End Using + + + + + + + + + The name of the file to add or update. It should refer to a file in the + filesystem. The name of the file may be a relative path or a + fully-qualified path. + + + + The ZipEntry corresponding to the File that was added or updated. + + + + + Adds or Updates a File in a Zip file archive. + + + + + This method adds a file to a zip archive, or, if the file already exists + in the zip archive, this method Updates the content of that given filename + in the zip archive. + + + + This version of the method allows the caller to explicitly specify the + directory path to be used in the archive. The entry to be added or + updated is found by using the specified directory path, combined with the + basename of the specified filename. + + + + Upon success, there is no way for the application to learn if the file was + added versus updated. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + + + + The name of the file to add or update. It should refer to a file in the + filesystem. The name of the file may be a relative path or a + fully-qualified path. + + + + Specifies a directory path to use to override any path in the + fileName. This path may, or may not, correspond to a real + directory in the current filesystem. If the files within the zip are + later extracted, this is the path used for the extracted file. Passing + null (Nothing in VB) will use the path on the + fileName, if any. Passing the empty string ("") will insert the + item at the root path within the archive. + + + + The ZipEntry corresponding to the File that was added or updated. + + + + + Add or update a directory in a zip archive. + + + + If the specified directory does not exist in the archive, then this method + is equivalent to calling AddDirectory(). If the specified + directory already exists in the archive, then this method updates any + existing entries, and adds any new entries. Any entries that are in the + zip archive but not in the specified directory, are left alone. In other + words, the contents of the zip file will be a union of the previous + contents and the new files. + + + + + + + + The path to the directory to be added to the zip archive, or updated in + the zip archive. + + + + The ZipEntry corresponding to the Directory that was added or updated. + + + + + Add or update a directory in the zip archive at the specified root + directory in the archive. + + + + If the specified directory does not exist in the archive, then this method + is equivalent to calling AddDirectory(). If the specified + directory already exists in the archive, then this method updates any + existing entries, and adds any new entries. Any entries that are in the + zip archive but not in the specified directory, are left alone. In other + words, the contents of the zip file will be a union of the previous + contents and the new files. + + + + + + + + The path to the directory to be added to the zip archive, or updated + in the zip archive. + + + + Specifies a directory path to use to override any path in the + directoryName. This path may, or may not, correspond to a real + directory in the current filesystem. If the files within the zip are + later extracted, this is the path used for the extracted file. Passing + null (Nothing in VB) will use the path on the + directoryName, if any. Passing the empty string ("") will insert + the item at the root path within the archive. + + + + The ZipEntry corresponding to the Directory that was added or updated. + + + + + Add or update a file or directory in the zip archive. + + + + + This is useful when the application is not sure or does not care if the + item to be added is a file or directory, and does not know or does not + care if the item already exists in the ZipFile. Calling this method + is equivalent to calling RemoveEntry() if an entry by the same name + already exists, followed calling by AddItem(). + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + + + + the path to the file or directory to be added or updated. + + + + + Add or update a file or directory. + + + + + This method is useful when the application is not sure or does not care if + the item to be added is a file or directory, and does not know or does not + care if the item already exists in the ZipFile. Calling this method + is equivalent to calling RemoveEntry(), if an entry by that name + exists, and then calling AddItem(). + + + + This version of the method allows the caller to explicitly specify the + directory path to be used for the item being added to the archive. The + entry or entries that are added or updated will use the specified + DirectoryPathInArchive. Extracting the entry from the archive will + result in a file stored in that directory path. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + + + + The path for the File or Directory to be added or updated. + + + Specifies a directory path to use to override any path in the + itemName. This path may, or may not, correspond to a real + directory in the current filesystem. If the files within the zip are + later extracted, this is the path used for the extracted file. Passing + null (Nothing in VB) will use the path on the + itemName, if any. Passing the empty string ("") will insert the + item at the root path within the archive. + + + + + Adds a named entry into the zip archive, taking content for the entry + from a string. + + + + Calling this method creates an entry using the given fileName and + directory path within the archive. There is no need for a file by the + given name to exist in the filesystem; the name is used within the zip + archive only. The content for the entry is encoded using the default text + encoding for the machine. + + + + The content of the file, should it be extracted from the zip. + + + + The name, including any path, to use for the entry within the archive. + + + The ZipEntry added. + + + + This example shows how to add an entry to the zipfile, using a string as + content for that entry. + + + string Content = "This string will be the content of the Readme.txt file in the zip archive."; + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddFile("MyDocuments\\Resume.doc", "files"); + zip1.AddEntry("Readme.txt", Content); + zip1.Comment = "This zip file was created at " + System.DateTime.Now.ToString("G"); + zip1.Save("Content.zip"); + } + + + + Public Sub Run() + Dim Content As String = "This string will be the content of the Readme.txt file in the zip archive." + Using zip1 As ZipFile = New ZipFile + zip1.AddEntry("Readme.txt", Content) + zip1.AddFile("MyDocuments\Resume.doc", "files") + zip1.Comment = ("This zip file was created at " & DateTime.Now.ToString("G")) + zip1.Save("Content.zip") + End Using + End Sub + + + + + + Adds a named entry into the zip archive, taking content for the entry + from a string, and using the specified text encoding. + + + + + + Calling this method creates an entry using the given fileName and + directory path within the archive. There is no need for a file by the + given name to exist in the filesystem; the name is used within the zip + archive only. + + + + The content for the entry, a string value, is encoded using the given + text encoding. A BOM (byte-order-mark) is emitted into the file, if the + Encoding parameter is set for that. + + + + Most Encoding classes support a constructor that accepts a boolean, + indicating whether to emit a BOM or not. For example see . + + + + + + The name, including any path, to use within the archive for the entry. + + + + The content of the file, should it be extracted from the zip. + + + + The text encoding to use when encoding the string. Be aware: This is + distinct from the text encoding used to encode the fileName, as specified + in . + + + The ZipEntry added. + + + + + Create an entry in the ZipFile using the given Stream + as input. The entry will have the given filename. + + + + + + The application should provide an open, readable stream; in this case it + will be read during the call to or one of + its overloads. + + + + The passed stream will be read from its current position. If + necessary, callers should set the position in the stream before + calling AddEntry(). This might be appropriate when using this method + with a MemoryStream, for example. + + + + In cases where a large number of streams will be added to the + ZipFile, the application may wish to avoid maintaining all of the + streams open simultaneously. To handle this situation, the application + should use the + overload. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + + This example adds a single entry to a ZipFile via a Stream. + + + + String zipToCreate = "Content.zip"; + String fileNameInArchive = "Content-From-Stream.bin"; + using (System.IO.Stream streamToRead = MyStreamOpener()) + { + using (ZipFile zip = new ZipFile()) + { + ZipEntry entry= zip.AddEntry(fileNameInArchive, streamToRead); + zip.AddFile("Readme.txt"); + zip.Save(zipToCreate); // the stream is read implicitly here + } + } + + + + Dim zipToCreate As String = "Content.zip" + Dim fileNameInArchive As String = "Content-From-Stream.bin" + Using streamToRead as System.IO.Stream = MyStreamOpener() + Using zip As ZipFile = New ZipFile() + Dim entry as ZipEntry = zip.AddEntry(fileNameInArchive, streamToRead) + zip.AddFile("Readme.txt") + zip.Save(zipToCreate) '' the stream is read implicitly, here + End Using + End Using + + + + + + + The name, including any path, which is shown in the zip file for the added + entry. + + + The input stream from which to grab content for the file + + The ZipEntry added. + + + + Add a ZipEntry for which content is written directly by the application. + + + + + When the application needs to write the zip entry data, use this + method to add the ZipEntry. For example, in the case that the + application wishes to write the XML representation of a DataSet into + a ZipEntry, the application can use this method to do so. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + About progress events: When using the WriteDelegate, DotNetZip does + not issue any SaveProgress events with EventType = + Saving_EntryBytesRead. (This is because it is the + application's code that runs in WriteDelegate - there's no way for + DotNetZip to know when to issue a EntryBytesRead event.) + Applications that want to update a progress bar or similar status + indicator should do so from within the WriteDelegate + itself. DotNetZip will issue the other SaveProgress events, + including + Saving_Started, + + Saving_BeforeWriteEntry, and + Saving_AfterWriteEntry. + + + + Note: When you use PKZip encryption, it's normally necessary to + compute the CRC of the content to be encrypted, before compressing or + encrypting it. Therefore, when using PKZip encryption with a + WriteDelegate, the WriteDelegate CAN BE called twice: once to compute + the CRC, and the second time to potentially compress and + encrypt. Surprising, but true. This is because PKWARE specified that + the encryption initialization data depends on the CRC. + If this happens, for each call of the delegate, your + application must stream the same entry data in its entirety. If your + application writes different data during the second call, it will + result in a corrupt zip file. + + + + The double-read behavior happens with all types of entries, not only + those that use WriteDelegate. It happens if you add an entry from a + filesystem file, or using a string, or a stream, or an opener/closer + pair. But in those cases, DotNetZip takes care of reading twice; in + the case of the WriteDelegate, the application code gets invoked + twice. Be aware. + + + + As you can imagine, this can cause performance problems for large + streams, and it can lead to correctness problems when you use a + WriteDelegate. This is a pretty big pitfall. There are two + ways to avoid it. First, and most preferred: don't use PKZIP + encryption. If you use the WinZip AES encryption, this problem + doesn't occur, because the encryption protocol doesn't require the CRC + up front. Second: if you do choose to use PKZIP encryption, write out + to a non-seekable stream (like standard output, or the + Response.OutputStream in an ASP.NET application). In this case, + DotNetZip will use an alternative encryption protocol that does not + rely on the CRC of the content. This also implies setting bit 3 in + the zip entry, which still presents problems for some zip tools. + + + + In the future I may modify DotNetZip to *always* use bit 3 when PKZIP + encryption is in use. This seems like a win overall, but there will + be some work involved. If you feel strongly about it, visit the + DotNetZip forums and vote up the Workitem + tracking this issue. + + + + + the name of the entry to add + the delegate which will write the entry content + the ZipEntry added + + + + This example shows an application filling a DataSet, then saving the + contents of that DataSet as XML, into a ZipEntry in a ZipFile, using an + anonymous delegate in C#. The DataSet XML is never saved to a disk file. + + + var c1= new System.Data.SqlClient.SqlConnection(connstring1); + var da = new System.Data.SqlClient.SqlDataAdapter() + { + SelectCommand= new System.Data.SqlClient.SqlCommand(strSelect, c1) + }; + + DataSet ds1 = new DataSet(); + da.Fill(ds1, "Invoices"); + + using(Ionic.Zip.ZipFile zip = new Ionic.Zip.ZipFile()) + { + zip.AddEntry(zipEntryName, (name,stream) => ds1.WriteXml(stream) ); + zip.Save(zipFileName); + } + + + + + + This example uses an anonymous method in C# as the WriteDelegate to provide + the data for the ZipEntry. The example is a bit contrived - the + AddFile() method is a simpler way to insert the contents of a file + into an entry in a zip file. On the other hand, if there is some sort of + processing or transformation of the file contents required before writing, + the application could use the WriteDelegate to do it, in this way. + + + using (var input = File.Open(filename, FileMode.Open, FileAccess.Read, FileShare.ReadWrite )) + { + using(Ionic.Zip.ZipFile zip = new Ionic.Zip.ZipFile()) + { + zip.AddEntry(zipEntryName, (name,output) => + { + byte[] buffer = new byte[BufferSize]; + int n; + while ((n = input.Read(buffer, 0, buffer.Length)) != 0) + { + // could transform the data here... + output.Write(buffer, 0, n); + // could update a progress bar here + } + }); + + zip.Save(zipFileName); + } + } + + + + + + This example uses a named delegate in VB to write data for the given + ZipEntry (VB9 does not have anonymous delegates). The example here is a bit + contrived - a simpler way to add the contents of a file to a ZipEntry is to + simply use the appropriate AddFile() method. The key scenario for + which the WriteDelegate makes sense is saving a DataSet, in XML + format, to the zip file. The DataSet can write XML to a stream, and the + WriteDelegate is the perfect place to write into the zip file. There may be + other data structures that can write to a stream, but cannot be read as a + stream. The WriteDelegate would be appropriate for those cases as + well. + + + Private Sub WriteEntry (ByVal name As String, ByVal output As Stream) + Using input As FileStream = File.Open(filename, FileMode.Open, FileAccess.Read, FileShare.ReadWrite) + Dim n As Integer = -1 + Dim buffer As Byte() = New Byte(BufferSize){} + Do While n <> 0 + n = input.Read(buffer, 0, buffer.Length) + output.Write(buffer, 0, n) + Loop + End Using + End Sub + + Public Sub Run() + Using zip = New ZipFile + zip.AddEntry(zipEntryName, New WriteDelegate(AddressOf WriteEntry)) + zip.Save(zipFileName) + End Using + End Sub + + + + + + Add an entry, for which the application will provide a stream + containing the entry data, on a just-in-time basis. + + + + + In cases where the application wishes to open the stream that + holds the content for the ZipEntry, on a just-in-time basis, the + application can use this method. The application provides an + opener delegate that will be called by the DotNetZip library to + obtain a readable stream that can be read to get the bytes for + the given entry. Typically, this delegate opens a stream. + Optionally, the application can provide a closer delegate as + well, which will be called by DotNetZip when all bytes have been + read from the entry. + + + + These delegates are called from within the scope of the call to + ZipFile.Save(). + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + + This example uses anonymous methods in C# to open and close the + source stream for the content for a zip entry. + + + using(Ionic.Zip.ZipFile zip = new Ionic.Zip.ZipFile()) + { + zip.AddEntry(zipEntryName, + (name) => File.Open(filename, FileMode.Open, FileAccess.Read, FileShare.ReadWrite ), + (name, stream) => stream.Close() + ); + + zip.Save(zipFileName); + } + + + + + + + This example uses delegates in VB.NET to open and close the + the source stream for the content for a zip entry. VB 9.0 lacks + support for "Sub" lambda expressions, and so the CloseDelegate must + be an actual, named Sub. + + + + Function MyStreamOpener(ByVal entryName As String) As Stream + '' This simply opens a file. You probably want to do somethinig + '' more involved here: open a stream to read from a database, + '' open a stream on an HTTP connection, and so on. + Return File.OpenRead(entryName) + End Function + + Sub MyStreamCloser(entryName As String, stream As Stream) + stream.Close() + End Sub + + Public Sub Run() + Dim dirToZip As String = "fodder" + Dim zipFileToCreate As String = "Archive.zip" + Dim opener As OpenDelegate = AddressOf MyStreamOpener + Dim closer As CloseDelegate = AddressOf MyStreamCloser + Dim numFilestoAdd As Int32 = 4 + Using zip As ZipFile = New ZipFile + Dim i As Integer + For i = 0 To numFilesToAdd - 1 + zip.AddEntry(String.Format("content-{0:000}.txt"), opener, closer) + Next i + zip.Save(zipFileToCreate) + End Using + End Sub + + + + + the name of the entry to add + + the delegate that will be invoked by ZipFile.Save() to get the + readable stream for the given entry. ZipFile.Save() will call + read on this stream to obtain the data for the entry. This data + will then be compressed and written to the newly created zip + file. + + + the delegate that will be invoked to close the stream. This may + be null (Nothing in VB), in which case no call is makde to close + the stream. + + the ZipEntry added + + + + + Updates the given entry in the ZipFile, using the given + string as content for the ZipEntry. + + + + + + Calling this method is equivalent to removing the ZipEntry for + the given file name and directory path, if it exists, and then calling + . See the documentation for + that method for further explanation. The string content is encoded + using the default encoding for the machine. This encoding is distinct + from the encoding used for the filename itself. See + . + + + + + + The name, including any path, to use within the archive for the entry. + + + + The content of the file, should it be extracted from the zip. + + + The ZipEntry added. + + + + + Updates the given entry in the ZipFile, using the given string as + content for the ZipEntry. + + + + Calling this method is equivalent to removing the ZipEntry for the + given file name and directory path, if it exists, and then calling . See the + documentation for that method for further explanation. + + + + The name, including any path, to use within the archive for the entry. + + + + The content of the file, should it be extracted from the zip. + + + + The text encoding to use when encoding the string. Be aware: This is + distinct from the text encoding used to encode the filename. See . + + + The ZipEntry added. + + + + + Updates the given entry in the ZipFile, using the given delegate + as the source for content for the ZipEntry. + + + + Calling this method is equivalent to removing the ZipEntry for the + given file name and directory path, if it exists, and then calling . See the + documentation for that method for further explanation. + + + + The name, including any path, to use within the archive for the entry. + + + the delegate which will write the entry content. + + The ZipEntry added. + + + + + Updates the given entry in the ZipFile, using the given delegates + to open and close the stream that provides the content for the ZipEntry. + + + + Calling this method is equivalent to removing the ZipEntry for the + given file name and directory path, if it exists, and then calling . See the + documentation for that method for further explanation. + + + + The name, including any path, to use within the archive for the entry. + + + + the delegate that will be invoked to open the stream + + + the delegate that will be invoked to close the stream + + + The ZipEntry added or updated. + + + + + Updates the given entry in the ZipFile, using the given stream as + input, and the given filename and given directory Path. + + + + + Calling the method is equivalent to calling RemoveEntry() if an + entry by the same name already exists, and then calling AddEntry() + with the given fileName and stream. + + + + The stream must be open and readable during the call to + ZipFile.Save. You can dispense the stream on a just-in-time basis + using the property. Check the + documentation of that property for more information. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to the + ZipEntry added. + + + + + + + + + The name, including any path, to use within the archive for the entry. + + + The input stream from which to read file data. + The ZipEntry added. + + + + Add an entry into the zip archive using the given filename and + directory path within the archive, and the given content for the + file. No file is created in the filesystem. + + + The data to use for the entry. + + + The name, including any path, to use within the archive for the entry. + + + The ZipEntry added. + + + + Updates the given entry in the ZipFile, using the given byte + array as content for the entry. + + + + Calling this method is equivalent to removing the ZipEntry + for the given filename and directory path, if it exists, and then + calling . See the + documentation for that method for further explanation. + + + + The name, including any path, to use within the archive for the entry. + + + The content to use for the ZipEntry. + + The ZipEntry added. + + + + + Adds the contents of a filesystem directory to a Zip file archive. + + + + + + The name of the directory may be a relative path or a fully-qualified + path. Any files within the named directory are added to the archive. Any + subdirectories within the named directory are also added to the archive, + recursively. + + + + Top-level entries in the named directory will appear as top-level entries + in the zip archive. Entries in subdirectories in the named directory will + result in entries in subdirectories in the zip archive. + + + + If you want the entries to appear in a containing directory in the zip + archive itself, then you should call the AddDirectory() overload that + allows you to explicitly specify a directory path for use in the archive. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to each + ZipEntry added. + + + + + + + + + + This method has 2 overloads. + + The name of the directory to add. + The ZipEntry added. + + + + Adds the contents of a filesystem directory to a Zip file archive, + overriding the path to be used for entries in the archive. + + + + + The name of the directory may be a relative path or a fully-qualified + path. The add operation is recursive, so that any files or subdirectories + within the name directory are also added to the archive. + + + + Top-level entries in the named directory will appear as top-level entries + in the zip archive. Entries in subdirectories in the named directory will + result in entries in subdirectories in the zip archive. + + + + For ZipFile properties including , , , , , + , and , their + respective values at the time of this call will be applied to each + ZipEntry added. + + + + + + + In this code, calling the ZipUp() method with a value of "c:\reports" for + the directory parameter will result in a zip file structure in which all + entries are contained in a toplevel "reports" directory. + + + + public void ZipUp(string targetZip, string directory) + { + using (var zip = new ZipFile()) + { + zip.AddDirectory(directory, System.IO.Path.GetFileName(directory)); + zip.Save(targetZip); + } + } + + + + + + + + The name of the directory to add. + + + Specifies a directory path to use to override any path in the + DirectoryName. This path may, or may not, correspond to a real directory + in the current filesystem. If the zip is later extracted, this is the + path used for the extracted file or directory. Passing null + (Nothing in VB) or the empty string ("") will insert the items at + the root path within the archive. + + + The ZipEntry added. + + + + Creates a directory in the zip archive. + + + + + + Use this when you want to create a directory in the archive but there is + no corresponding filesystem representation for that directory. + + + + You will probably not need to do this in your code. One of the only times + you will want to do this is if you want an empty directory in the zip + archive. The reason: if you add a file to a zip archive that is stored + within a multi-level directory, all of the directory tree is implicitly + created in the zip archive. + + + + + + The name of the directory to create in the archive. + + The ZipEntry added. + + + + Checks a zip file to see if its directory is consistent. + + + + + + In cases of data error, the directory within a zip file can get out + of synch with the entries in the zip file. This method checks the + given zip file and returns true if this has occurred. + + + This method may take a long time to run for large zip files. + + + This method is not supported in the Reduced version of DotNetZip. + + + + Developers using COM can use the ComHelper.CheckZip(String) + method. + + + + + The filename to of the zip file to check. + + true if the named zip file checks OK. Otherwise, false. + + + + + + + Checks a zip file to see if its directory is consistent, + and optionally fixes the directory if necessary. + + + + + + In cases of data error, the directory within a zip file can get out of + synch with the entries in the zip file. This method checks the given + zip file, and returns true if this has occurred. It also optionally + fixes the zipfile, saving the fixed copy in Name_Fixed.zip. + + + + This method may take a long time to run for large zip files. It + will take even longer if the file actually needs to be fixed, and if + fixIfNecessary is true. + + + + This method is not supported in the Reduced version of DotNetZip. + + + + + The filename to of the zip file to check. + + If true, the method will fix the zip file if + necessary. + + + a TextWriter in which messages generated while checking will be written. + + + true if the named zip is OK; false if the file needs to be fixed. + + + + + + + Rewrite the directory within a zipfile. + + + + + + In cases of data error, the directory in a zip file can get out of + synch with the entries in the zip file. This method attempts to fix + the zip file if this has occurred. + + + This can take a long time for large zip files. + + This won't work if the zip file uses a non-standard + code page - neither IBM437 nor UTF-8. + + + This method is not supported in the Reduced or Compact Framework + versions of DotNetZip. + + + + Developers using COM can use the ComHelper.FixZipDirectory(String) + method. + + + + + The filename to of the zip file to fix. + + + + + + + Verify the password on a zip file. + + + + + Keep in mind that passwords in zipfiles are applied to + zip entries, not to the entire zip file. So testing a + zipfile for a particular password doesn't work in the + general case. On the other hand, it's often the case + that a single password will be used on all entries in a + zip file. This method works for that case. + + + There is no way to check a password without doing the + decryption. So this code decrypts and extracts the given + zipfile into + + + + The filename to of the zip file to fix. + + The password to check. + + a bool indicating whether the password matches. + + + + Provides a human-readable string with information about the ZipFile. + + + + + The information string contains 10 lines or so, about each ZipEntry, + describing whether encryption is in use, the compressed and uncompressed + length of the entry, the offset of the entry, and so on. As a result the + information string can be very long for zip files that contain many + entries. + + + This information is mostly useful for diagnostic purposes. + + + + + + Indicates whether to perform a full scan of the zip file when reading it. + + + + + + You almost never want to use this property. + + + + When reading a zip file, if this flag is true (True in + VB), the entire zip archive will be scanned and searched for entries. + For large archives, this can take a very, long time. The much more + efficient default behavior is to read the zip directory, which is + stored at the end of the zip file. But, in some cases the directory is + corrupted and you need to perform a full scan of the zip file to + determine the contents of the zip file. This property lets you do + that, when necessary. + + + + This flag is effective only when calling . Normally you would read a ZipFile with the + static ZipFile.Read + method. But you can't set the FullScan property on the + ZipFile instance when you use a static factory method like + ZipFile.Read. + + + + + + + This example shows how to read a zip file using the full scan approach, + and then save it, thereby producing a corrected zip file. + + + using (var zip = new ZipFile()) + { + zip.FullScan = true; + zip.Initialize(zipFileName); + zip.Save(newName); + } + + + + Using zip As New ZipFile + zip.FullScan = True + zip.Initialize(zipFileName) + zip.Save(newName) + End Using + + + + + + + Whether to sort the ZipEntries before saving the file. + + + + The default is false. If you have a large number of zip entries, the sort + alone can consume significant time. + + + + + using (var zip = new ZipFile()) + { + zip.AddFiles(filesToAdd); + zip.SortEntriesBeforeSaving = true; + zip.Save(name); + } + + + + Using zip As New ZipFile + zip.AddFiles(filesToAdd) + zip.SortEntriesBeforeSaving = True + zip.Save(name) + End Using + + + + + + + Indicates whether NTFS Reparse Points, like junctions, should be + traversed during calls to AddDirectory(). + + + + By default, calls to AddDirectory() will traverse NTFS reparse + points, like mounted volumes, and directory junctions. An example + of a junction is the "My Music" directory in Windows Vista. In some + cases you may not want DotNetZip to traverse those directories. In + that case, set this property to false. + + + + + using (var zip = new ZipFile()) + { + zip.AddDirectoryWillTraverseReparsePoints = false; + zip.AddDirectory(dirToZip,"fodder"); + zip.Save(zipFileToCreate); + } + + + + + + Size of the IO buffer used while saving. + + + + + + First, let me say that you really don't need to bother with this. It is + here to allow for optimizations that you probably won't make! It will work + fine if you don't set or get this property at all. Ok? + + + + Now that we have that out of the way, the fine print: This + property affects the size of the buffer that is used for I/O for each + entry contained in the zip file. When a file is read in to be compressed, + it uses a buffer given by the size here. When you update a zip file, the + data for unmodified entries is copied from the first zip file to the + other, through a buffer given by the size here. + + + + Changing the buffer size affects a few things: first, for larger buffer + sizes, the memory used by the ZipFile, obviously, will be larger + during I/O operations. This may make operations faster for very much + larger files. Last, for any given entry, when you use a larger buffer + there will be fewer progress events during I/O operations, because there's + one progress event generated for each time the buffer is filled and then + emptied. + + + + The default buffer size is 8k. Increasing the buffer size may speed + things up as you compress larger files. But there are no hard-and-fast + rules here, eh? You won't know til you test it. And there will be a + limit where ever larger buffers actually slow things down. So as I said + in the beginning, it's probably best if you don't set or get this property + at all. + + + + + + This example shows how you might set a large buffer size for efficiency when + dealing with zip entries that are larger than 1gb. + + using (ZipFile zip = new ZipFile()) + { + zip.SaveProgress += this.zip1_SaveProgress; + zip.AddDirectory(directoryToZip, ""); + zip.UseZip64WhenSaving = Zip64Option.Always; + zip.BufferSize = 65536*8; // 65536 * 8 = 512k + zip.Save(ZipFileToCreate); + } + + + + + + Size of the work buffer to use for the ZLIB codec during compression. + + + + + When doing ZLIB or Deflate compression, the library fills a buffer, + then passes it to the compressor for compression. Then the library + reads out the compressed bytes. This happens repeatedly until there + is no more uncompressed data to compress. This property sets the + size of the buffer that will be used for chunk-wise compression. In + order for the setting to take effect, your application needs to set + this property before calling one of the ZipFile.Save() + overloads. + + + Setting this affects the performance and memory efficiency of + compression and decompression. For larger files, setting this to a + larger size may improve compression performance, but the exact + numbers vary depending on available memory, the size of the streams + you are compressing, and a bunch of other variables. I don't have + good firm recommendations on how to set it. You'll have to test it + yourself. Or just leave it alone and accept the default. + + + + + + Indicates whether extracted files should keep their paths as + stored in the zip archive. + + + + + This property affects Extraction. It is not used when creating zip + archives. + + + + With this property set to false, the default, extracting entries + from a zip file will create files in the filesystem that have the full + path associated to the entry within the zip file. With this property set + to true, extracting entries from the zip file results in files + with no path: the folders are "flattened." + + + + An example: suppose the zip file contains entries /directory1/file1.txt and + /directory2/file2.txt. With FlattenFoldersOnExtract set to false, + the files created will be \directory1\file1.txt and \directory2\file2.txt. + With the property set to true, the files created are file1.txt and file2.txt. + + + + + + + The compression strategy to use for all entries. + + + + Set the Strategy used by the ZLIB-compatible compressor, when + compressing entries using the DEFLATE method. Different compression + strategies work better on different sorts of data. The strategy + parameter can affect the compression ratio and the speed of + compression but not the correctness of the compresssion. For more + information see Ionic.Zlib.CompressionStrategy. + + + + + The name of the ZipFile, on disk. + + + + + + When the ZipFile instance was created by reading an archive using + one of the ZipFile.Read methods, this property represents the name + of the zip file that was read. When the ZipFile instance was + created by using the no-argument constructor, this value is null + (Nothing in VB). + + + + If you use the no-argument constructor, and you then explicitly set this + property, when you call , this name will + specify the name of the zip file created. Doing so is equivalent to + calling . When instantiating a + ZipFile by reading from a stream or byte array, the Name + property remains null. When saving to a stream, the Name + property is implicitly set to null. + + + + + + Sets the compression level to be used for entries subsequently added to + the zip archive. + + + + + Varying the compression level used on entries can affect the + size-vs-speed tradeoff when compression and decompressing data streams + or files. + + + + As with some other properties on the ZipFile class, like , , and , setting this property on a ZipFile + instance will cause the specified CompressionLevel to be used on all + items that are subsequently added to the + ZipFile instance. If you set this property after you have added + items to the ZipFile, but before you have called Save(), + those items will not use the specified compression level. + + + + If you do not set this property, the default compression level is used, + which normally gives a good balance of compression efficiency and + compression speed. In some tests, using BestCompression can + double the time it takes to compress, while delivering just a small + increase in compression efficiency. This behavior will vary with the + type of data you compress. If you are in doubt, just leave this setting + alone, and accept the default. + + + + + + The compression method for the zipfile. + + + + By default, the compression method is CompressionMethod.Deflate. + + + + + + + A comment attached to the zip archive. + + + + + + This property is read/write. It allows the application to specify a + comment for the ZipFile, or read the comment for the + ZipFile. After setting this property, changes are only made + permanent when you call a Save() method. + + + + According to PKWARE's + zip specification, the comment is not encrypted, even if there is a + password set on the zip file. + + + + The specification does not describe how to indicate the encoding used + on a comment string. Many "compliant" zip tools and libraries use + IBM437 as the code page for comments; DotNetZip, too, follows that + practice. On the other hand, there are situations where you want a + Comment to be encoded with something else, for example using code page + 950 "Big-5 Chinese". To fill that need, DotNetZip will encode the + comment following the same procedure it follows for encoding + filenames: (a) if is + Never, it uses the default encoding (IBM437). (b) if is Always, it always uses the + alternate encoding (). (c) if is AsNecessary, it uses the + alternate encoding only if the default encoding is not sufficient for + encoding the comment - in other words if decoding the result does not + produce the original string. This decision is taken at the time of + the call to ZipFile.Save(). + + + + When creating a zip archive using this library, it is possible to change + the value of between each + entry you add, and between adding entries and the call to + Save(). Don't do this. It will likely result in a zip file that is + not readable by any tool or application. For best interoperability, leave + alone, or specify it only + once, before adding any entries to the ZipFile instance. + + + + + + + Specifies whether the Creation, Access, and Modified times for entries + added to the zip file will be emitted in “Windows format” + when the zip archive is saved. + + + + + An application creating a zip archive can use this flag to explicitly + specify that the file times for the entries should or should not be stored + in the zip archive in the format used by Windows. By default this flag is + true, meaning the Windows-format times are stored in the zip + archive. + + + + When adding an entry from a file or directory, the Creation (), Access (), and Modified () times for the given entry are + automatically set from the filesystem values. When adding an entry from a + stream or string, all three values are implicitly set to + DateTime.Now. Applications can also explicitly set those times by + calling . + + + + PKWARE's + zip specification describes multiple ways to format these times in a + zip file. One is the format Windows applications normally use: 100ns ticks + since January 1, 1601 UTC. The other is a format Unix applications typically + use: seconds since January 1, 1970 UTC. Each format can be stored in an + "extra field" in the zip entry when saving the zip archive. The former + uses an extra field with a Header Id of 0x000A, while the latter uses a + header ID of 0x5455, although you probably don't need to know that. + + + + Not all tools and libraries can interpret these fields. Windows + compressed folders is one that can read the Windows Format timestamps, + while I believe the Infozip + tools can read the Unix format timestamps. Some tools and libraries + may be able to read only one or the other. DotNetZip can read or write + times in either or both formats. + + + + The times stored are taken from , , and . + + + + The value set here applies to all entries subsequently added to the + ZipFile. + + + + This property is not mutually exclusive of the property. It is possible and + legal and valid to produce a zip file that contains timestamps encoded in + the Unix format as well as in the Windows format, in addition to the LastModified time attached to each + entry in the archive, a time that is always stored in "DOS format". And, + notwithstanding the names PKWare uses for these time formats, any of them + can be read and written by any computer, on any operating system. But, + there are no guarantees that a program running on Mac or Linux will + gracefully handle a zip file with "Windows" formatted times, or that an + application that does not use DotNetZip but runs on Windows will be able to + handle file times in Unix format. + + + + When in doubt, test. Sorry, I haven't got a complete list of tools and + which sort of timestamps they can use and will tolerate. If you get any + good information and would like to pass it on, please do so and I will + include that information in this documentation. + + + + + This example shows how to save a zip file that contains file timestamps + in a format normally used by Unix. + + using (var zip = new ZipFile()) + { + // produce a zip file the Mac will like + zip.EmitTimesInWindowsFormatWhenSaving = false; + zip.EmitTimesInUnixFormatWhenSaving = true; + zip.AddDirectory(directoryToZip, "files"); + zip.Save(outputFile); + } + + + + Using zip As New ZipFile + '' produce a zip file the Mac will like + zip.EmitTimesInWindowsFormatWhenSaving = False + zip.EmitTimesInUnixFormatWhenSaving = True + zip.AddDirectory(directoryToZip, "files") + zip.Save(outputFile) + End Using + + + + + + + + + Specifies whether the Creation, Access, and Modified times + for entries added to the zip file will be emitted in "Unix(tm) + format" when the zip archive is saved. + + + + + An application creating a zip archive can use this flag to explicitly + specify that the file times for the entries should or should not be stored + in the zip archive in the format used by Unix. By default this flag is + false, meaning the Unix-format times are not stored in the zip + archive. + + + + When adding an entry from a file or directory, the Creation (), Access (), and Modified () times for the given entry are + automatically set from the filesystem values. When adding an entry from a + stream or string, all three values are implicitly set to DateTime.Now. + Applications can also explicitly set those times by calling . + + + + PKWARE's + zip specification describes multiple ways to format these times in a + zip file. One is the format Windows applications normally use: 100ns ticks + since January 1, 1601 UTC. The other is a format Unix applications + typically use: seconds since January 1, 1970 UTC. Each format can be + stored in an "extra field" in the zip entry when saving the zip + archive. The former uses an extra field with a Header Id of 0x000A, while + the latter uses a header ID of 0x5455, although you probably don't need to + know that. + + + + Not all tools and libraries can interpret these fields. Windows + compressed folders is one that can read the Windows Format timestamps, + while I believe the Infozip + tools can read the Unix format timestamps. Some tools and libraries may be + able to read only one or the other. DotNetZip can read or write times in + either or both formats. + + + + The times stored are taken from , , and . + + + + This property is not mutually exclusive of the property. It is possible and + legal and valid to produce a zip file that contains timestamps encoded in + the Unix format as well as in the Windows format, in addition to the LastModified time attached to each + entry in the zip archive, a time that is always stored in "DOS + format". And, notwithstanding the names PKWare uses for these time + formats, any of them can be read and written by any computer, on any + operating system. But, there are no guarantees that a program running on + Mac or Linux will gracefully handle a zip file with "Windows" formatted + times, or that an application that does not use DotNetZip but runs on + Windows will be able to handle file times in Unix format. + + + + When in doubt, test. Sorry, I haven't got a complete list of tools and + which sort of timestamps they can use and will tolerate. If you get any + good information and would like to pass it on, please do so and I will + include that information in this documentation. + + + + + + + + + Indicates whether verbose output is sent to the during AddXxx() and + ReadXxx() operations. + + + + This is a synthetic property. It returns true if the is non-null. + + + + + Returns true if an entry by the given name exists in the ZipFile. + + + the name of the entry to find + true if an entry with the given name exists; otherwise false. + + + + + Indicates whether to perform case-sensitive matching on the filename when + retrieving entries in the zipfile via the string-based indexer. + + + + The default value is false, which means don't do case-sensitive + matching. In other words, retrieving zip["ReadMe.Txt"] is the same as + zip["readme.txt"]. It really makes sense to set this to true only + if you are not running on Windows, which has case-insensitive + filenames. But since this library is not built for non-Windows platforms, + in most cases you should just leave this property alone. + + + + + Indicates whether to ignore duplicate files (report only the first entry) + when loading a zipfile. + + + + The default value is false, which will try to make all files + available (duplicates will have a "copy" suffix appended to their name). + Setting this to true prior to using Initialize to read a + zipfile will prevent this and instead just ignore the duplicates. + + + + + Indicates whether to encode entry filenames and entry comments using Unicode + (UTF-8). + + + + + The + PKWare zip specification provides for encoding file names and file + comments in either the IBM437 code page, or in UTF-8. This flag selects + the encoding according to that specification. By default, this flag is + false, and filenames and comments are encoded into the zip file in the + IBM437 codepage. Setting this flag to true will specify that filenames + and comments that cannot be encoded with IBM437 will be encoded with + UTF-8. + + + + Zip files created with strict adherence to the PKWare specification with + respect to UTF-8 encoding can contain entries with filenames containing + any combination of Unicode characters, including the full range of + characters from Chinese, Latin, Hebrew, Greek, Cyrillic, and many other + alphabets. However, because at this time, the UTF-8 portion of the PKWare + specification is not broadly supported by other zip libraries and + utilities, such zip files may not be readable by your favorite zip tool or + archiver. In other words, interoperability will decrease if you set this + flag to true. + + + + In particular, Zip files created with strict adherence to the PKWare + specification with respect to UTF-8 encoding will not work well with + Explorer in Windows XP or Windows Vista, because Windows compressed + folders, as far as I know, do not support UTF-8 in zip files. Vista can + read the zip files, but shows the filenames incorrectly. Unpacking from + Windows Vista Explorer will result in filenames that have rubbish + characters in place of the high-order UTF-8 bytes. + + + + Also, zip files that use UTF-8 encoding will not work well with Java + applications that use the java.util.zip classes, as of v5.0 of the Java + runtime. The Java runtime does not correctly implement the PKWare + specification in this regard. + + + + As a result, we have the unfortunate situation that "correct" behavior by + the DotNetZip library with regard to Unicode encoding of filenames during + zip creation will result in zip files that are readable by strictly + compliant and current tools (for example the most recent release of the + commercial WinZip tool); but these zip files will not be readable by + various other tools or libraries, including Windows Explorer. + + + + The DotNetZip library can read and write zip files with UTF8-encoded + entries, according to the PKware spec. If you use DotNetZip for both + creating and reading the zip file, and you use UTF-8, there will be no + loss of information in the filenames. For example, using a self-extractor + created by this library will allow you to unpack files correctly with no + loss of information in the filenames. + + + + If you do not set this flag, it will remain false. If this flag is false, + your ZipFile will encode all filenames and comments using the + IBM437 codepage. This can cause "loss of information" on some filenames, + but the resulting zipfile will be more interoperable with other + utilities. As an example of the loss of information, diacritics can be + lost. The o-tilde character will be down-coded to plain o. The c with a + cedilla (Unicode 0xE7) used in Portugese will be downcoded to a c. + Likewise, the O-stroke character (Unicode 248), used in Danish and + Norwegian, will be down-coded to plain o. Chinese characters cannot be + represented in codepage IBM437; when using the default encoding, Chinese + characters in filenames will be represented as ?. These are all examples + of "information loss". + + + + The loss of information associated to the use of the IBM437 encoding is + inconvenient, and can also lead to runtime errors. For example, using + IBM437, any sequence of 4 Chinese characters will be encoded as ????. If + your application creates a ZipFile, then adds two files, each with + names of four Chinese characters each, this will result in a duplicate + filename exception. In the case where you add a single file with a name + containing four Chinese characters, calling Extract() on the entry that + has question marks in the filename will result in an exception, because + the question mark is not legal for use within filenames on Windows. These + are just a few examples of the problems associated to loss of information. + + + + This flag is independent of the encoding of the content within the entries + in the zip file. Think of the zip file as a container - it supports an + encoding. Within the container are other "containers" - the file entries + themselves. The encoding within those entries is independent of the + encoding of the zip archive container for those entries. + + + + Rather than specify the encoding in a binary fashion using this flag, an + application can specify an arbitrary encoding via the property. Setting the encoding + explicitly when creating zip archives will result in non-compliant zip + files that, curiously, are fairly interoperable. The challenge is, the + PKWare specification does not provide for a way to specify that an entry + in a zip archive uses a code page that is neither IBM437 nor UTF-8. + Therefore if you set the encoding explicitly when creating a zip archive, + you must take care upon reading the zip archive to use the same code page. + If you get it wrong, the behavior is undefined and may result in incorrect + filenames, exceptions, stomach upset, hair loss, and acne. + + + + + + + Specify whether to use ZIP64 extensions when saving a zip archive. + + + + + + When creating a zip file, the default value for the property is . is + safest, in the sense that you will not get an Exception if a pre-ZIP64 + limit is exceeded. + + + + You may set the property at any time before calling Save(). + + + + When reading a zip file via the Zipfile.Read() method, DotNetZip + will properly read ZIP64-endowed zip archives, regardless of the value of + this property. DotNetZip will always read ZIP64 archives. This property + governs only whether DotNetZip will write them. Therefore, when updating + archives, be careful about setting this property after reading an archive + that may use ZIP64 extensions. + + + + An interesting question is, if you have set this property to + AsNecessary, and then successfully saved, does the resulting + archive use ZIP64 extensions or not? To learn this, check the property, after calling Save(). + + + + Have you thought about + donating? + + + + + + + + Indicates whether the archive requires ZIP64 extensions. + + + + + + This property is null (or Nothing in VB) if the archive has + not been saved, and there are fewer than 65334 ZipEntry items + contained in the archive. + + + + The Value is true if any of the following four conditions holds: + the uncompressed size of any entry is larger than 0xFFFFFFFF; the + compressed size of any entry is larger than 0xFFFFFFFF; the relative + offset of any entry within the zip archive is larger than 0xFFFFFFFF; or + there are more than 65534 entries in the archive. (0xFFFFFFFF = + 4,294,967,295). The result may not be known until a Save() is attempted + on the zip archive. The Value of this + property may be set only AFTER one of the Save() methods has been called. + + + + If none of the four conditions holds, and the archive has been saved, then + the Value is false. + + + + A Value of false does not indicate that the zip archive, as saved, + does not use ZIP64. It merely indicates that ZIP64 is not required. An + archive may use ZIP64 even when not required if the property is set to , or if the property is set to and the output stream was not + seekable. Use the property to determine if + the most recent Save() method resulted in an archive that utilized + the ZIP64 extensions. + + + + + + + + + Indicates whether the most recent Save() operation used ZIP64 extensions. + + + + + The use of ZIP64 extensions within an archive is not always necessary, and + for interoperability concerns, it may be desired to NOT use ZIP64 if + possible. The property can be + set to use ZIP64 extensions only when necessary. In those cases, + Sometimes applications want to know whether a Save() actually used ZIP64 + extensions. Applications can query this read-only property to learn + whether ZIP64 has been used in a just-saved ZipFile. + + + + The value is null (or Nothing in VB) if the archive has not + been saved. + + + + Non-null values (HasValue is true) indicate whether ZIP64 + extensions were used during the most recent Save() operation. The + ZIP64 extensions may have been used as required by any particular entry + because of its uncompressed or compressed size, or because the archive is + larger than 4294967295 bytes, or because there are more than 65534 entries + in the archive, or because the UseZip64WhenSaving property was set + to , or because the + UseZip64WhenSaving property was set to and the output stream was not seekable. + The value of this property does not indicate the reason the ZIP64 + extensions were used. + + + + + + + + + Indicates whether the most recent Read() operation read a zip file that uses + ZIP64 extensions. + + + + This property will return null (Nothing in VB) if you've added an entry after reading + the zip file. + + + + + The text encoding to use when writing new entries to the ZipFile, + for those entries that cannot be encoded with the default (IBM437) + encoding; or, the text encoding that was used when reading the entries + from the ZipFile. + + + + + In its + zip specification, PKWare describes two options for encoding + filenames and comments: using IBM437 or UTF-8. But, some archiving tools + or libraries do not follow the specification, and instead encode + characters using the system default code page. For example, WinRAR when + run on a machine in Shanghai may encode filenames with the Big-5 Chinese + (950) code page. This behavior is contrary to the Zip specification, but + it occurs anyway. + + + + When using DotNetZip to write zip archives that will be read by one of + these other archivers, set this property to specify the code page to use + when encoding the and for each ZipEntry in the zip file, for + values that cannot be encoded with the default codepage for zip files, + IBM437. This is why this property is "provisional". In all cases, IBM437 + is used where possible, in other words, where no loss of data would + result. It is possible, therefore, to have a given entry with a + Comment encoded in IBM437 and a FileName encoded with the + specified "provisional" codepage. + + + + Be aware that a zip file created after you've explicitly set the property to a value other than + IBM437 may not be compliant to the PKWare specification, and may not be + readable by compliant archivers. On the other hand, many (most?) + archivers are non-compliant and can read zip files created in arbitrary + code pages. The trick is to use or specify the proper codepage when + reading the zip. + + + + When creating a zip archive using this library, it is possible to change + the value of between each + entry you add, and between adding entries and the call to + Save(). Don't do this. It will likely result in a zipfile that is + not readable. For best interoperability, either leave alone, or specify it only once, + before adding any entries to the ZipFile instance. There is one + exception to this recommendation, described later. + + + + When using an arbitrary, non-UTF8 code page for encoding, there is no + standard way for the creator application - whether DotNetZip, WinZip, + WinRar, or something else - to formally specify in the zip file which + codepage has been used for the entries. As a result, readers of zip files + are not able to inspect the zip file and determine the codepage that was + used for the entries contained within it. It is left to the application + or user to determine the necessary codepage when reading zip files encoded + this way. In other words, if you explicitly specify the codepage when you + create the zipfile, you must explicitly specify the same codepage when + reading the zipfile. + + + + The way you specify the code page to use when reading a zip file varies + depending on the tool or library you use to read the zip. In DotNetZip, + you use a ZipFile.Read() method that accepts an encoding parameter. It + isn't possible with Windows Explorer, as far as I know, to specify an + explicit codepage to use when reading a zip. If you use an incorrect + codepage when reading a zipfile, you will get entries with filenames that + are incorrect, and the incorrect filenames may even contain characters + that are not legal for use within filenames in Windows. Extracting entries + with illegal characters in the filenames will lead to exceptions. It's too + bad, but this is just the way things are with code pages in zip + files. Caveat Emptor. + + + + Example: Suppose you create a zipfile that contains entries with + filenames that have Danish characters. If you use equal to "iso-8859-1" (cp 28591), + the filenames will be correctly encoded in the zip. But, to read that + zipfile correctly, you have to specify the same codepage at the time you + read it. If try to read that zip file with Windows Explorer or another + application that is not flexible with respect to the codepage used to + decode filenames in zipfiles, you will get a filename like "Inf�.txt". + + + + When using DotNetZip to read a zip archive, and the zip archive uses an + arbitrary code page, you must specify the encoding to use before or when + the Zipfile is READ. This means you must use a ZipFile.Read() + method that allows you to specify a System.Text.Encoding parameter. Setting + the ProvisionalAlternateEncoding property after your application has read in + the zip archive will not affect the entry names of entries that have already + been read in. + + + + And now, the exception to the rule described above. One strategy for + specifying the code page for a given zip file is to describe the code page + in a human-readable form in the Zip comment. For example, the comment may + read "Entries in this archive are encoded in the Big5 code page". For + maximum interoperability, the zip comment in this case should be encoded + in the default, IBM437 code page. In this case, the zip comment is + encoded using a different page than the filenames. To do this, Specify + ProvisionalAlternateEncoding to your desired region-specific code + page, once before adding any entries, and then reset + ProvisionalAlternateEncoding to IBM437 before setting the property and calling Save(). + + + + + This example shows how to read a zip file using the Big-5 Chinese code page + (950), and extract each entry in the zip file. For this code to work as + desired, the Zipfile must have been created using the big5 code page + (CP950). This is typical, for example, when using WinRar on a machine with + CP950 set as the default code page. In that case, the names of entries + within the Zip archive will be stored in that code page, and reading the zip + archive must be done using that code page. If the application did not use + the correct code page in ZipFile.Read(), then names of entries within the + zip archive would not be correctly retrieved. + + using (var zip = ZipFile.Read(zipFileName, System.Text.Encoding.GetEncoding("big5"))) + { + // retrieve and extract an entry using a name encoded with CP950 + zip[MyDesiredEntry].Extract("unpack"); + } + + + + Using zip As ZipFile = ZipFile.Read(ZipToExtract, System.Text.Encoding.GetEncoding("big5")) + ' retrieve and extract an entry using a name encoded with CP950 + zip(MyDesiredEntry).Extract("unpack") + End Using + + + + DefaultEncoding + + + + A Text Encoding to use when encoding the filenames and comments for + all the ZipEntry items, during a ZipFile.Save() operation. + + + + Whether the encoding specified here is used during the save depends + on . + + + + + + A flag that tells if and when this instance should apply + AlternateEncoding to encode the filenames and comments associated to + of ZipEntry objects contained within this instance. + + + + + Gets or sets the TextWriter to which status messages are delivered + for the instance. + + + + If the TextWriter is set to a non-null value, then verbose output is sent + to the TextWriter during Add, Read, Save and + Extract operations. Typically, console applications might use + Console.Out and graphical or headless applications might use a + System.IO.StringWriter. The output of this is suitable for viewing + by humans. + + + + + In this example, a console application instantiates a ZipFile, then + sets the StatusMessageTextWriter to Console.Out. At that + point, all verbose status messages for that ZipFile are sent to the + console. + + + + using (ZipFile zip= ZipFile.Read(FilePath)) + { + zip.StatusMessageTextWriter= System.Console.Out; + // messages are sent to the console during extraction + zip.ExtractAll(); + } + + + + Using zip As ZipFile = ZipFile.Read(FilePath) + zip.StatusMessageTextWriter= System.Console.Out + 'Status Messages will be sent to the console during extraction + zip.ExtractAll() + End Using + + + + In this example, a Windows Forms application instantiates a + ZipFile, then sets the StatusMessageTextWriter to a + StringWriter. At that point, all verbose status messages for that + ZipFile are sent to the StringWriter. + + + + var sw = new System.IO.StringWriter(); + using (ZipFile zip= ZipFile.Read(FilePath)) + { + zip.StatusMessageTextWriter= sw; + zip.ExtractAll(); + } + Console.WriteLine("{0}", sw.ToString()); + + + + Dim sw as New System.IO.StringWriter + Using zip As ZipFile = ZipFile.Read(FilePath) + zip.StatusMessageTextWriter= sw + zip.ExtractAll() + End Using + 'Status Messages are now available in sw + + + + + + + Gets or sets the name for the folder to store the temporary file + this library writes when saving a zip archive. + + + + + This library will create a temporary file when saving a Zip archive to a + file. This file is written when calling one of the Save() methods + that does not save to a stream, or one of the SaveSelfExtractor() + methods. + + + + By default, the library will create the temporary file in the directory + specified for the file itself, via the property or via + the method. + + + + Setting this property allows applications to override this default + behavior, so that the library will create the temporary file in the + specified folder. For example, to have the library create the temporary + file in the current working directory, regardless where the ZipFile + is saved, specfy ".". To revert to the default behavior, set this + property to null (Nothing in VB). + + + + When setting the property to a non-null value, the folder specified must + exist; if it does not an exception is thrown. The application should have + write and delete permissions on the folder. The permissions are not + explicitly checked ahead of time; if the application does not have the + appropriate rights, an exception will be thrown at the time Save() + is called. + + + + There is no temporary file created when reading a zip archive. When + saving to a Stream, there is no temporary file created. For example, if + the application is an ASP.NET application and calls Save() + specifying the Response.OutputStream as the output stream, there is + no temporary file created. + + + + + Thrown when setting the property if the directory does not exist. + + + + + + Sets the password to be used on the ZipFile instance. + + + + + + When writing a zip archive, this password is applied to the entries, not + to the zip archive itself. It applies to any ZipEntry subsequently + added to the ZipFile, using one of the AddFile, + AddDirectory, AddEntry, or AddItem methods, etc. + When reading a zip archive, this property applies to any entry + subsequently extracted from the ZipFile using one of the Extract + methods on the ZipFile class. + + + + When writing a zip archive, keep this in mind: though the password is set + on the ZipFile object, according to the Zip spec, the "directory" of the + archive - in other words the list of entries or files contained in the archive - is + not encrypted with the password, or protected in any way. If you set the + Password property, the password actually applies to individual entries + that are added to the archive, subsequent to the setting of this property. + The list of filenames in the archive that is eventually created will + appear in clear text, but the contents of the individual files are + encrypted. This is how Zip encryption works. + + + + One simple way around this limitation is to simply double-wrap sensitive + filenames: Store the files in a zip file, and then store that zip file + within a second, "outer" zip file. If you apply a password to the outer + zip file, then readers will be able to see that the outer zip file + contains an inner zip file. But readers will not be able to read the + directory or file list of the inner zip file. + + + + If you set the password on the ZipFile, and then add a set of files + to the archive, then each entry is encrypted with that password. You may + also want to change the password between adding different entries. If you + set the password, add an entry, then set the password to null + (Nothing in VB), and add another entry, the first entry is + encrypted and the second is not. If you call AddFile(), then set + the Password property, then call ZipFile.Save, the file + added will not be password-protected, and no warning will be generated. + + + + When setting the Password, you may also want to explicitly set the property, to specify how to encrypt the entries added + to the ZipFile. If you set the Password to a non-null value and do not + set , then PKZip 2.0 ("Weak") encryption is used. + This encryption is relatively weak but is very interoperable. If you set + the password to a null value (Nothing in VB), Encryption is + reset to None. + + + + All of the preceding applies to writing zip archives, in other words when + you use one of the Save methods. To use this property when reading or an + existing ZipFile, do the following: set the Password property on the + ZipFile, then call one of the Extract() overloads on the . In this case, the entry is extracted using the + Password that is specified on the ZipFile instance. If you + have not set the Password property, then the password is + null, and the entry is extracted with no password. + + + + If you set the Password property on the ZipFile, then call + Extract() an entry that has not been encrypted with a password, the + password is not used for that entry, and the ZipEntry is extracted + as normal. In other words, the password is used only if necessary. + + + + The class also has a Password property. It takes precedence + over this property on the ZipFile. Typically, you would use the + per-entry Password when most entries in the zip archive use one password, + and a few entries use a different password. If all entries in the zip + file use the same password, then it is simpler to just set this property + on the ZipFile itself, whether creating a zip archive or extracting + a zip archive. + + + + + + + This example creates a zip file, using password protection for the + entries, and then extracts the entries from the zip file. When creating + the zip file, the Readme.txt file is not protected with a password, but + the other two are password-protected as they are saved. During extraction, + each file is extracted with the appropriate password. + + + // create a file with encryption + using (ZipFile zip = new ZipFile()) + { + zip.AddFile("ReadMe.txt"); + zip.Password= "!Secret1"; + zip.AddFile("MapToTheSite-7440-N49th.png"); + zip.AddFile("2008-Regional-Sales-Report.pdf"); + zip.Save("EncryptedArchive.zip"); + } + + // extract entries that use encryption + using (ZipFile zip = ZipFile.Read("EncryptedArchive.zip")) + { + zip.Password= "!Secret1"; + zip.ExtractAll("extractDir"); + } + + + + + Using zip As New ZipFile + zip.AddFile("ReadMe.txt") + zip.Password = "123456!" + zip.AddFile("MapToTheSite-7440-N49th.png") + zip.Password= "!Secret1"; + zip.AddFile("2008-Regional-Sales-Report.pdf") + zip.Save("EncryptedArchive.zip") + End Using + + + ' extract entries that use encryption + Using (zip as ZipFile = ZipFile.Read("EncryptedArchive.zip")) + zip.Password= "!Secret1" + zip.ExtractAll("extractDir") + End Using + + + + + + ZipFile.Encryption + ZipEntry.Password + + + + The action the library should take when extracting a file that already + exists. + + + + + This property affects the behavior of the Extract methods (one of the + Extract() or ExtractWithPassword() overloads), when + extraction would would overwrite an existing filesystem file. If you do + not set this property, the library throws an exception when extracting an + entry would overwrite an existing file. + + + + This property has no effect when extracting to a stream, or when the file + to be extracted does not already exist. + + + + + + + The action the library should take when an error is encountered while + opening or reading files as they are saved into a zip archive. + + + + + Errors can occur as a file is being saved to the zip archive. For + example, the File.Open may fail, or a File.Read may fail, because of + lock conflicts or other reasons. + + + + The first problem might occur after having called AddDirectory() on a + directory that contains a Clipper .dbf file; the file is locked by + Clipper and cannot be opened for read by another process. An example of + the second problem might occur when trying to zip a .pst file that is in + use by Microsoft Outlook. Outlook locks a range on the file, which allows + other processes to open the file, but not read it in its entirety. + + + + This property tells DotNetZip what you would like to do in the case of + these errors. The primary options are: ZipErrorAction.Throw to + throw an exception (this is the default behavior if you don't set this + property); ZipErrorAction.Skip to Skip the file for which there + was an error and continue saving; ZipErrorAction.Retry to Retry + the entry that caused the problem; or + ZipErrorAction.InvokeErrorEvent to invoke an event handler. + + + + This property is implicitly set to ZipErrorAction.InvokeErrorEvent + if you add a handler to the event. If you set + this property to something other than + ZipErrorAction.InvokeErrorEvent, then the ZipError + event is implicitly cleared. What it means is you can set one or the + other (or neither), depending on what you want, but you never need to set + both. + + + + As with some other properties on the ZipFile class, like , , and , setting this property on a ZipFile + instance will cause the specified ZipErrorAction to be used on all + items that are subsequently added to the + ZipFile instance. If you set this property after you have added + items to the ZipFile, but before you have called Save(), + those items will not use the specified error handling action. + + + + If you want to handle any errors that occur with any entry in the zip + file in the same way, then set this property once, before adding any + entries to the zip archive. + + + + If you set this property to ZipErrorAction.Skip and you'd like to + learn which files may have been skipped after a Save(), you can + set the on the ZipFile before + calling Save(). A message will be emitted into that writer for + each skipped file, if any. + + + + + + This example shows how to tell DotNetZip to skip any files for which an + error is generated during the Save(). + + Public Sub SaveZipFile() + Dim SourceFolder As String = "fodder" + Dim DestFile As String = "eHandler.zip" + Dim sw as New StringWriter + Using zipArchive As ZipFile = New ZipFile + ' Tell DotNetZip to skip any files for which it encounters an error + zipArchive.ZipErrorAction = ZipErrorAction.Skip + zipArchive.StatusMessageTextWriter = sw + zipArchive.AddDirectory(SourceFolder) + zipArchive.Save(DestFile) + End Using + ' examine sw here to see any messages + End Sub + + + + + + + + + + The Encryption to use for entries added to the ZipFile. + + + + + Set this when creating a zip archive, or when updating a zip archive. The + specified Encryption is applied to the entries subsequently added to the + ZipFile instance. Applications do not need to set the + Encryption property when reading or extracting a zip archive. + + + + If you set this to something other than EncryptionAlgorithm.None, you + will also need to set the . + + + + As with some other properties on the ZipFile class, like and , setting this + property on a ZipFile instance will cause the specified + EncryptionAlgorithm to be used on all items + that are subsequently added to the ZipFile instance. In other + words, if you set this property after you have added items to the + ZipFile, but before you have called Save(), those items will + not be encrypted or protected with a password in the resulting zip + archive. To get a zip archive with encrypted entries, set this property, + along with the property, before calling + AddFile, AddItem, or AddDirectory (etc.) on the + ZipFile instance. + + + + If you read a ZipFile, you can modify the Encryption on an + encrypted entry, only by setting the Encryption property on the + ZipEntry itself. Setting the Encryption property on the + ZipFile, once it has been created via a call to + ZipFile.Read(), does not affect entries that were previously read. + + + + For example, suppose you read a ZipFile, and there is an encrypted + entry. Setting the Encryption property on that ZipFile and + then calling Save() on the ZipFile does not update the + Encryption used for the entries in the archive. Neither is an + exception thrown. Instead, what happens during the Save() is that + all previously existing entries are copied through to the new zip archive, + with whatever encryption and password that was used when originally + creating the zip archive. Upon re-reading that archive, to extract + entries, applications should use the original password or passwords, if + any. + + + + Suppose an application reads a ZipFile, and there is an encrypted + entry. Setting the Encryption property on that ZipFile and + then adding new entries (via AddFile(), AddEntry(), etc) + and then calling Save() on the ZipFile does not update the + Encryption on any of the entries that had previously been in the + ZipFile. The Encryption property applies only to the + newly-added entries. + + + + + + + This example creates a zip archive that uses encryption, and then extracts + entries from the archive. When creating the zip archive, the ReadMe.txt + file is zipped without using a password or encryption. The other files + use encryption. + + + + // Create a zip archive with AES Encryption. + using (ZipFile zip = new ZipFile()) + { + zip.AddFile("ReadMe.txt"); + zip.Encryption= EncryptionAlgorithm.WinZipAes256; + zip.Password= "Top.Secret.No.Peeking!"; + zip.AddFile("7440-N49th.png"); + zip.AddFile("2008-Regional-Sales-Report.pdf"); + zip.Save("EncryptedArchive.zip"); + } + + // Extract a zip archive that uses AES Encryption. + // You do not need to specify the algorithm during extraction. + using (ZipFile zip = ZipFile.Read("EncryptedArchive.zip")) + { + zip.Password= "Top.Secret.No.Peeking!"; + zip.ExtractAll("extractDirectory"); + } + + + + ' Create a zip that uses Encryption. + Using zip As New ZipFile() + zip.Encryption= EncryptionAlgorithm.WinZipAes256 + zip.Password= "Top.Secret.No.Peeking!" + zip.AddFile("ReadMe.txt") + zip.AddFile("7440-N49th.png") + zip.AddFile("2008-Regional-Sales-Report.pdf") + zip.Save("EncryptedArchive.zip") + End Using + + ' Extract a zip archive that uses AES Encryption. + ' You do not need to specify the algorithm during extraction. + Using (zip as ZipFile = ZipFile.Read("EncryptedArchive.zip")) + zip.Password= "Top.Secret.No.Peeking!" + zip.ExtractAll("extractDirectory") + End Using + + + + + ZipFile.Password + ZipEntry.Encryption + + + + A callback that allows the application to specify the compression level + to use for entries subsequently added to the zip archive. + + + + + + With this callback, the DotNetZip library allows the application to + determine whether compression will be used, at the time of the + Save. This may be useful if the application wants to favor + speed over size, and wants to defer the decision until the time of + Save. + + + + Typically applications set the property on + the ZipFile or on each ZipEntry to determine the level of + compression used. This is done at the time the entry is added to the + ZipFile. Setting the property to + Ionic.Zlib.CompressionLevel.None means no compression will be used. + + + + This callback allows the application to defer the decision on the + CompressionLevel to use, until the time of the call to + ZipFile.Save(). The callback is invoked once per ZipEntry, + at the time the data for the entry is being written out as part of a + Save() operation. The application can use whatever criteria it + likes in determining the level to return. For example, an application may + wish that no .mp3 files should be compressed, because they are already + compressed and the extra compression is not worth the CPU time incurred, + and so can return None for all .mp3 entries. + + + + The library determines whether compression will be attempted for an entry + this way: If the entry is a zero length file, or a directory, no + compression is used. Otherwise, if this callback is set, it is invoked + and the CompressionLevel is set to the return value. If this + callback has not been set, then the previously set value for + CompressionLevel is used. + + + + + + + The maximum size of an output segment, when saving a split Zip file. + + + + Make sure you do not read from this field if you've set the value using + + + + Set this to a non-zero value before calling or to specify that the ZipFile should be saved as a + split archive, also sometimes called a spanned archive. Some also + call them multi-file archives. + + + + A split zip archive is saved in a set of discrete filesystem files, + rather than in a single file. This is handy when transmitting the + archive in email or some other mechanism that has a limit to the size of + each file. The first file in a split archive will be named + basename.z01, the second will be named basename.z02, and + so on. The final file is named basename.zip. According to the zip + specification from PKWare, the minimum value is 65536, for a 64k segment + size. The maximum number of segments allows in a split archive is 99. + + + + The value of this property determines the maximum size of a split + segment when writing a split archive. For example, suppose you have a + ZipFile that would save to a single file of 200k. If you set the + MaxOutputSegmentSize to 65536 before calling Save(), you + will get four distinct output files. On the other hand if you set this + property to 256k, then you will get a single-file archive for that + ZipFile. + + + + The size of each split output file will be as large as possible, up to + the maximum size set here. The zip specification requires that some data + fields in a zip archive may not span a split boundary, and an output + segment may be smaller than the maximum if necessary to avoid that + problem. Also, obviously the final segment of the archive may be smaller + than the maximum segment size. Segments will never be larger than the + value set with this property. + + + + You can save a split Zip file only when saving to a regular filesystem + file. It's not possible to save a split zip file as a self-extracting + archive, nor is it possible to save a split zip file to a stream. When + saving to a SFX or to a Stream, this property is ignored. + + + + About interoperability: Split or spanned zip files produced by DotNetZip + can be read by WinZip or PKZip, and vice-versa. Segmented zip files may + not be readable by other tools, if those other tools don't support zip + spanning or splitting. When in doubt, test. I don't believe Windows + Explorer can extract a split archive. + + + + This property has no effect when reading a split archive. You can read + a split archive in the normal way with DotNetZip. + + + + When saving a zip file, if you want a regular zip file rather than a + split zip file, don't set this property, or set it to Zero. + + + + If you read a split archive, with and + then subsequently call ZipFile.Save(), unless you set this + property before calling Save(), you will get a normal, + single-file archive. + + + + + + + + The maximum size of an output segment, when saving a split Zip file. + + + + If you set this value, make sure you do not accidently use in your code + + + + Set this to a non-zero value before calling or to specify that the ZipFile should be saved as a + split archive, also sometimes called a spanned archive. Some also + call them multi-file archives. + + + + A split zip archive is saved in a set of discrete filesystem files, + rather than in a single file. This is handy when transmitting the + archive in email or some other mechanism that has a limit to the size of + each file. The first file in a split archive will be named + basename.z01, the second will be named basename.z02, and + so on. The final file is named basename.zip. According to the zip + specification from PKWare, the minimum value is 65536, for a 64k segment + size. The maximum number of segments allows in a split archive is 99. + + + + The value of this property determines the maximum size of a split + segment when writing a split archive. For example, suppose you have a + ZipFile that would save to a single file of 200k. If you set the + MaxOutputSegmentSize to 65536 before calling Save(), you + will get four distinct output files. On the other hand if you set this + property to 256k, then you will get a single-file archive for that + ZipFile. + + + + The size of each split output file will be as large as possible, up to + the maximum size set here. The zip specification requires that some data + fields in a zip archive may not span a split boundary, and an output + segment may be smaller than the maximum if necessary to avoid that + problem. Also, obviously the final segment of the archive may be smaller + than the maximum segment size. Segments will never be larger than the + value set with this property. + + + + You can save a split Zip file only when saving to a regular filesystem + file. It's not possible to save a split zip file as a self-extracting + archive, nor is it possible to save a split zip file to a stream. When + saving to a SFX or to a Stream, this property is ignored. + + + + About interoperability: Split or spanned zip files produced by DotNetZip + can be read by WinZip or PKZip, and vice-versa. Segmented zip files may + not be readable by other tools, if those other tools don't support zip + spanning or splitting. When in doubt, test. I don't believe Windows + Explorer can extract a split archive. + + + + This property has no effect when reading a split archive. You can read + a split archive in the normal way with DotNetZip. + + + + When saving a zip file, if you want a regular zip file rather than a + split zip file, don't set this property, or set it to Zero. + + + + If you read a split archive, with and + then subsequently call ZipFile.Save(), unless you set this + property before calling Save(), you will get a normal, + single-file archive. + + + + + + + + Returns the number of segments used in the most recent Save() operation. + + + + This is normally zero, unless you have set the property. If you have set , and then you save a file, after the call to + Save() completes, you can read this value to learn the number of segments that + were created. + + + If you call Save("Archive.zip"), and it creates 5 segments, then you + will have filesystem files named Archive.z01, Archive.z02, Archive.z03, + Archive.z04, and Archive.zip, and the value of this property will be 5. + + + + + + + The size threshold for an entry, above which a parallel deflate is used. + + + + + + DotNetZip will use multiple threads to compress any ZipEntry, + if the entry is larger than the given size. Zero means "always + use parallel deflate", while -1 means "never use parallel + deflate". The default value for this property is 512k. Aside + from the special values of 0 and 1, the minimum value is 65536. + + + + If the entry size cannot be known before compression, as with a + read-forward stream, then Parallel deflate will never be + performed, unless the value of this property is zero. + + + + A parallel deflate operations will speed up the compression of + large files, on computers with multiple CPUs or multiple CPU + cores. For files above 1mb, on a dual core or dual-cpu (2p) + machine, the time required to compress the file can be 70% of the + single-threaded deflate. For very large files on 4p machines the + compression can be done in 30% of the normal time. The downside + is that parallel deflate consumes extra memory during the deflate, + and the deflation is not as effective. + + + + Parallel deflate tends to yield slightly less compression when + compared to as single-threaded deflate; this is because the original + data stream is split into multiple independent buffers, each of which + is compressed in parallel. But because they are treated + independently, there is no opportunity to share compression + dictionaries. For that reason, a deflated stream may be slightly + larger when compressed using parallel deflate, as compared to a + traditional single-threaded deflate. Sometimes the increase over the + normal deflate is as much as 5% of the total compressed size. For + larger files it can be as small as 0.1%. + + + + Multi-threaded compression does not give as much an advantage when + using Encryption. This is primarily because encryption tends to slow + down the entire pipeline. Also, multi-threaded compression gives less + of an advantage when using lower compression levels, for example . You may have to + perform some tests to determine the best approach for your situation. + + + + + + + + + + The maximum number of buffer pairs to use when performing + parallel compression. + + + + + This property sets an upper limit on the number of memory + buffer pairs to create when performing parallel + compression. The implementation of the parallel + compression stream allocates multiple buffers to + facilitate parallel compression. As each buffer fills up, + the stream uses + ThreadPool.QueueUserWorkItem() to compress those + buffers in a background threadpool thread. After a buffer + is compressed, it is re-ordered and written to the output + stream. + + + + A higher number of buffer pairs enables a higher degree of + parallelism, which tends to increase the speed of compression on + multi-cpu computers. On the other hand, a higher number of buffer + pairs also implies a larger memory consumption, more active worker + threads, and a higher cpu utilization for any compression. This + property enables the application to limit its memory consumption and + CPU utilization behavior depending on requirements. + + + + For each compression "task" that occurs in parallel, there are 2 + buffers allocated: one for input and one for output. This property + sets a limit for the number of pairs. The total amount of storage + space allocated for buffering will then be (N*S*2), where N is the + number of buffer pairs, S is the size of each buffer (). By default, DotNetZip allocates 4 buffer + pairs per CPU core, so if your machine has 4 cores, and you retain + the default buffer size of 128k, then the + ParallelDeflateOutputStream will use 4 * 4 * 2 * 128kb of buffer + memory in total, or 4mb, in blocks of 128kb. If you then set this + property to 8, then the number will be 8 * 2 * 128kb of buffer + memory, or 2mb. + + + + CPU utilization will also go up with additional buffers, because a + larger number of buffer pairs allows a larger number of background + threads to compress in parallel. If you find that parallel + compression is consuming too much memory or CPU, you can adjust this + value downward. + + + + The default value is 16. Different values may deliver better or + worse results, depending on your priorities and the dynamic + performance characteristics of your storage and compute resources. + + + + This property is not the number of buffer pairs to use; it is an + upper limit. An illustration: Suppose you have an application that + uses the default value of this property (which is 16), and it runs + on a machine with 2 CPU cores. In that case, DotNetZip will allocate + 4 buffer pairs per CPU core, for a total of 8 pairs. The upper + limit specified by this property has no effect. + + + + The application can set this value at any time + before calling ZipFile.Save(). + + + + + + + + Provides a string representation of the instance. + a string representation of the instance. + + + + Returns the version number on the DotNetZip assembly. + + + + + This property is exposed as a convenience. Callers could also get the + version value by retrieving GetName().Version on the + System.Reflection.Assembly object pointing to the DotNetZip + assembly. But sometimes it is not clear which assembly is being loaded. + This property makes it clear. + + + This static property is primarily useful for diagnostic purposes. + + + + + + Creates a new ZipFile instance, using the specified filename. + + + + + Applications can use this constructor to create a new ZipFile for writing, + or to slurp in an existing zip archive for read and update purposes. + + + + To create a new zip archive, an application can call this constructor, + passing the name of a file that does not exist. The name may be a fully + qualified path. Then the application can add directories or files to the + ZipFile via AddDirectory(), AddFile(), AddItem() + and then write the zip archive to the disk by calling Save(). The + zip file is not actually opened and written to the disk until the + application calls ZipFile.Save(). At that point the new zip file + with the given name is created. + + + + If you won't know the name of the Zipfile until the time you call + ZipFile.Save(), or if you plan to save to a stream (which has no + name), then you should use the no-argument constructor. + + + + The application can also call this constructor to read an existing zip + archive. passing the name of a valid zip file that does exist. But, it's + better form to use the static method, + passing the name of the zip file, because using ZipFile.Read() in + your code communicates very clearly what you are doing. In either case, + the file is then read into the ZipFile instance. The app can then + enumerate the entries or can modify the zip file, for example adding + entries, removing entries, changing comments, and so on. + + + + One advantage to this parameterized constructor: it allows applications to + use the same code to add items to a zip archive, regardless of whether the + zip file exists. + + + + Instances of the ZipFile class are not multi-thread safe. You may + not party on a single instance with multiple threads. You may have + multiple threads that each use a distinct ZipFile instance, or you + can synchronize multi-thread access to a single instance. + + + + By the way, since DotNetZip is so easy to use, don't you think you should + donate $5 or $10? + + + + + + Thrown if name refers to an existing file that is not a valid zip file. + + + + This example shows how to create a zipfile, and add a few files into it. + + String ZipFileToCreate = "archive1.zip"; + String DirectoryToZip = "c:\\reports"; + using (ZipFile zip = new ZipFile()) + { + // Store all files found in the top level directory, into the zip archive. + String[] filenames = System.IO.Directory.GetFiles(DirectoryToZip); + zip.AddFiles(filenames, "files"); + zip.Save(ZipFileToCreate); + } + + + + Dim ZipFileToCreate As String = "archive1.zip" + Dim DirectoryToZip As String = "c:\reports" + Using zip As ZipFile = New ZipFile() + Dim filenames As String() = System.IO.Directory.GetFiles(DirectoryToZip) + zip.AddFiles(filenames, "files") + zip.Save(ZipFileToCreate) + End Using + + + + The filename to use for the new zip archive. + + + + + Creates a new ZipFile instance, using the specified name for the + filename, and the specified Encoding. + + + + + See the documentation on the ZipFile + constructor that accepts a single string argument for basic + information on all the ZipFile constructors. + + + + The Encoding is used as the default alternate encoding for entries with + filenames or comments that cannot be encoded with the IBM437 code page. + This is equivalent to setting the property on the ZipFile + instance after construction. + + + + Instances of the ZipFile class are not multi-thread safe. You may + not party on a single instance with multiple threads. You may have + multiple threads that each use a distinct ZipFile instance, or you + can synchronize multi-thread access to a single instance. + + + + + + Thrown if name refers to an existing file that is not a valid zip file. + + + The filename to use for the new zip archive. + The Encoding is used as the default alternate + encoding for entries with filenames or comments that cannot be encoded + with the IBM437 code page. + + + + Create a zip file, without specifying a target filename or stream to save to. + + + + + See the documentation on the ZipFile + constructor that accepts a single string argument for basic + information on all the ZipFile constructors. + + + + After instantiating with this constructor and adding entries to the + archive, the application should call or + to save to a file or a + stream, respectively. The application can also set the + property and then call the no-argument method. (This + is the preferred approach for applications that use the library through + COM interop.) If you call the no-argument method + without having set the Name of the ZipFile, either through + the parameterized constructor or through the explicit property , the + Save() will throw, because there is no place to save the file. + + + Instances of the ZipFile class are not multi-thread safe. You may + have multiple threads that each use a distinct ZipFile instance, or + you can synchronize multi-thread access to a single instance. + + + + + This example creates a Zip archive called Backup.zip, containing all the files + in the directory DirectoryToZip. Files within subdirectories are not zipped up. + + using (ZipFile zip = new ZipFile()) + { + // Store all files found in the top level directory, into the zip archive. + // note: this code does not recurse subdirectories! + String[] filenames = System.IO.Directory.GetFiles(DirectoryToZip); + zip.AddFiles(filenames, "files"); + zip.Save("Backup.zip"); + } + + + + Using zip As New ZipFile + ' Store all files found in the top level directory, into the zip archive. + ' note: this code does not recurse subdirectories! + Dim filenames As String() = System.IO.Directory.GetFiles(DirectoryToZip) + zip.AddFiles(filenames, "files") + zip.Save("Backup.zip") + End Using + + + + + + Create a zip file, specifying a text Encoding, but without specifying a + target filename or stream to save to. + + + + + See the documentation on the ZipFile + constructor that accepts a single string argument for basic + information on all the ZipFile constructors. + + + + + + The Encoding is used as the default alternate encoding for entries with + filenames or comments that cannot be encoded with the IBM437 code page. + + + + + Creates a new ZipFile instance, using the specified name for the + filename, and the specified status message writer. + + + + + See the documentation on the ZipFile + constructor that accepts a single string argument for basic + information on all the ZipFile constructors. + + + + This version of the constructor allows the caller to pass in a TextWriter, + to which verbose messages will be written during extraction or creation of + the zip archive. A console application may wish to pass + System.Console.Out to get messages on the Console. A graphical or headless + application may wish to capture the messages in a different + TextWriter, for example, a StringWriter, and then display + the messages in a TextBox, or generate an audit log of ZipFile operations. + + + + To encrypt the data for the files added to the ZipFile instance, + set the Password property after creating the ZipFile instance. + + + + Instances of the ZipFile class are not multi-thread safe. You may + not party on a single instance with multiple threads. You may have + multiple threads that each use a distinct ZipFile instance, or you + can synchronize multi-thread access to a single instance. + + + + + + Thrown if name refers to an existing file that is not a valid zip file. + + + + + using (ZipFile zip = new ZipFile("Backup.zip", Console.Out)) + { + // Store all files found in the top level directory, into the zip archive. + // note: this code does not recurse subdirectories! + // Status messages will be written to Console.Out + String[] filenames = System.IO.Directory.GetFiles(DirectoryToZip); + zip.AddFiles(filenames); + zip.Save(); + } + + + + Using zip As New ZipFile("Backup.zip", Console.Out) + ' Store all files found in the top level directory, into the zip archive. + ' note: this code does not recurse subdirectories! + ' Status messages will be written to Console.Out + Dim filenames As String() = System.IO.Directory.GetFiles(DirectoryToZip) + zip.AddFiles(filenames) + zip.Save() + End Using + + + + The filename to use for the new zip archive. + A TextWriter to use for writing + verbose status messages. + + + + Creates a new ZipFile instance, using the specified name for the + filename, the specified status message writer, and the specified Encoding. + + + + + This constructor works like the ZipFile + constructor that accepts a single string argument. See that + reference for detail on what this constructor does. + + + + This version of the constructor allows the caller to pass in a + TextWriter, and an Encoding. The TextWriter will collect + verbose messages that are generated by the library during extraction or + creation of the zip archive. A console application may wish to pass + System.Console.Out to get messages on the Console. A graphical or + headless application may wish to capture the messages in a different + TextWriter, for example, a StringWriter, and then display + the messages in a TextBox, or generate an audit log of + ZipFile operations. + + + + The Encoding is used as the default alternate encoding for entries + with filenames or comments that cannot be encoded with the IBM437 code + page. This is a equivalent to setting the property on the ZipFile + instance after construction. + + + + To encrypt the data for the files added to the ZipFile instance, + set the Password property after creating the ZipFile + instance. + + + + Instances of the ZipFile class are not multi-thread safe. You may + not party on a single instance with multiple threads. You may have + multiple threads that each use a distinct ZipFile instance, or you + can synchronize multi-thread access to a single instance. + + + + + + Thrown if fileName refers to an existing file that is not a valid zip file. + + + The filename to use for the new zip archive. + A TextWriter to use for writing verbose + status messages. + + The Encoding is used as the default alternate encoding for entries with + filenames or comments that cannot be encoded with the IBM437 code page. + + + + + Initialize a ZipFile instance by reading in a zip file. + + + + + + This method is primarily useful from COM Automation environments, when + reading or extracting zip files. In COM, it is not possible to invoke + parameterized constructors for a class. A COM Automation application can + update a zip file by using the default (no argument) + constructor, then calling Initialize() to read the contents + of an on-disk zip archive into the ZipFile instance. + + + + .NET applications are encouraged to use the ZipFile.Read() methods + for better clarity. + + + + the name of the existing zip file to read in. + + + + This is an integer indexer into the Zip archive. + + + + + This property is read-only. + + + + Internally, the ZipEntry instances that belong to the + ZipFile are stored in a Dictionary. When you use this + indexer the first time, it creates a read-only + List<ZipEntry> from the Dictionary.Values Collection. + If at any time you modify the set of entries in the ZipFile, + either by adding an entry, removing an entry, or renaming an + entry, a new List will be created, and the numeric indexes for the + remaining entries may be different. + + + + This means you cannot rename any ZipEntry from + inside an enumeration of the zip file. + + + + The index value. + + + + + + The ZipEntry within the Zip archive at the specified index. If the + entry does not exist in the archive, this indexer throws. + + + + + + This is a name-based indexer into the Zip archive. + + + + + This property is read-only. + + + + The property on the ZipFile + determines whether retrieval via this indexer is done via case-sensitive + comparisons. By default, retrieval is not case sensitive. This makes + sense on Windows, in which filesystems are not case sensitive. + + + + Regardless of case-sensitivity, it is not always the case that + this[value].FileName == value. In other words, the FileName + property of the ZipEntry retrieved with this indexer, may or may + not be equal to the index value. + + + + This is because DotNetZip performs a normalization of filenames passed to + this indexer, before attempting to retrieve the item. That normalization + includes: removal of a volume letter and colon, swapping backward slashes + for forward slashes. So, zip["dir1\\entry1.txt"].FileName == + "dir1/entry.txt". + + + + Directory entries in the zip file may be retrieved via this indexer only + with names that have a trailing slash. DotNetZip automatically appends a + trailing slash to the names of any directory entries added to a zip. + + + + + + This example extracts only the entries in a zip file that are .txt files. + + using (ZipFile zip = ZipFile.Read("PackedDocuments.zip")) + { + foreach (string s1 in zip.EntryFilenames) + { + if (s1.EndsWith(".txt")) + zip[s1].Extract("textfiles"); + } + } + + + Using zip As ZipFile = ZipFile.Read("PackedDocuments.zip") + Dim s1 As String + For Each s1 In zip.EntryFilenames + If s1.EndsWith(".txt") Then + zip(s1).Extract("textfiles") + End If + Next + End Using + + + + + + Thrown if the caller attempts to assign a non-null value to the indexer. + + + + The name of the file, including any directory path, to retrieve from the + zip. The filename match is not case-sensitive by default; you can use the + property to change this behavior. The + pathname can use forward-slashes or backward slashes. + + + + The ZipEntry within the Zip archive, given by the specified + filename. If the named entry does not exist in the archive, this indexer + returns null (Nothing in VB). + + + + + + The list of filenames for the entries contained within the zip archive. + + + + According to the ZIP specification, the names of the entries use forward + slashes in pathnames. If you are scanning through the list, you may have + to swap forward slashes for backslashes. + + + + + + This example shows one way to test if a filename is already contained + within a zip archive. + + String zipFileToRead= "PackedDocuments.zip"; + string candidate = "DatedMaterial.xps"; + using (ZipFile zip = new ZipFile(zipFileToRead)) + { + if (zip.EntryFilenames.Contains(candidate)) + Console.WriteLine("The file '{0}' exists in the zip archive '{1}'", + candidate, + zipFileName); + else + Console.WriteLine("The file, '{0}', does not exist in the zip archive '{1}'", + candidate, + zipFileName); + Console.WriteLine(); + } + + + Dim zipFileToRead As String = "PackedDocuments.zip" + Dim candidate As String = "DatedMaterial.xps" + Using zip As ZipFile.Read(ZipFileToRead) + If zip.EntryFilenames.Contains(candidate) Then + Console.WriteLine("The file '{0}' exists in the zip archive '{1}'", _ + candidate, _ + zipFileName) + Else + Console.WriteLine("The file, '{0}', does not exist in the zip archive '{1}'", _ + candidate, _ + zipFileName) + End If + Console.WriteLine + End Using + + + + + The list of strings for the filenames contained within the Zip archive. + + + + + + Returns the readonly collection of entries in the Zip archive. + + + + + + If there are no entries in the current ZipFile, the value returned is a + non-null zero-element collection. If there are entries in the zip file, + the elements are returned in no particular order. + + + This is the implied enumerator on the ZipFile class. If you use a + ZipFile instance in a context that expects an enumerator, you will + get this collection. + + + + + + + Returns a readonly collection of entries in the Zip archive, sorted by FileName. + + + + If there are no entries in the current ZipFile, the value returned + is a non-null zero-element collection. If there are entries in the zip + file, the elements are returned sorted by the name of the entry. + + + + + This example fills a Windows Forms ListView with the entries in a zip file. + + + using (ZipFile zip = ZipFile.Read(zipFile)) + { + foreach (ZipEntry entry in zip.EntriesSorted) + { + ListViewItem item = new ListViewItem(n.ToString()); + n++; + string[] subitems = new string[] { + entry.FileName.Replace("/","\\"), + entry.LastModified.ToString("yyyy-MM-dd HH:mm:ss"), + entry.UncompressedSize.ToString(), + String.Format("{0,5:F0}%", entry.CompressionRatio), + entry.CompressedSize.ToString(), + (entry.UsesEncryption) ? "Y" : "N", + String.Format("{0:X8}", entry.Crc)}; + + foreach (String s in subitems) + { + ListViewItem.ListViewSubItem subitem = new ListViewItem.ListViewSubItem(); + subitem.Text = s; + item.SubItems.Add(subitem); + } + + this.listView1.Items.Add(item); + } + } + + + + + + + + Returns the number of entries in the Zip archive. + + + + + Removes the given ZipEntry from the zip archive. + + + + + After calling RemoveEntry, the application must call Save to + make the changes permanent. + + + + + Thrown if the specified ZipEntry does not exist in the ZipFile. + + + + In this example, all entries in the zip archive dating from before + December 31st, 2007, are removed from the archive. This is actually much + easier if you use the RemoveSelectedEntries method. But I needed an + example for RemoveEntry, so here it is. + + String ZipFileToRead = "ArchiveToModify.zip"; + System.DateTime Threshold = new System.DateTime(2007,12,31); + using (ZipFile zip = ZipFile.Read(ZipFileToRead)) + { + var EntriesToRemove = new System.Collections.Generic.List<ZipEntry>(); + foreach (ZipEntry e in zip) + { + if (e.LastModified < Threshold) + { + // We cannot remove the entry from the list, within the context of + // an enumeration of said list. + // So we add the doomed entry to a list to be removed later. + EntriesToRemove.Add(e); + } + } + + // actually remove the doomed entries. + foreach (ZipEntry zombie in EntriesToRemove) + zip.RemoveEntry(zombie); + + zip.Comment= String.Format("This zip archive was updated at {0}.", + System.DateTime.Now.ToString("G")); + + // save with a different name + zip.Save("Archive-Updated.zip"); + } + + + + Dim ZipFileToRead As String = "ArchiveToModify.zip" + Dim Threshold As New DateTime(2007, 12, 31) + Using zip As ZipFile = ZipFile.Read(ZipFileToRead) + Dim EntriesToRemove As New System.Collections.Generic.List(Of ZipEntry) + Dim e As ZipEntry + For Each e In zip + If (e.LastModified < Threshold) Then + ' We cannot remove the entry from the list, within the context of + ' an enumeration of said list. + ' So we add the doomed entry to a list to be removed later. + EntriesToRemove.Add(e) + End If + Next + + ' actually remove the doomed entries. + Dim zombie As ZipEntry + For Each zombie In EntriesToRemove + zip.RemoveEntry(zombie) + Next + zip.Comment = String.Format("This zip archive was updated at {0}.", DateTime.Now.ToString("G")) + 'save as a different name + zip.Save("Archive-Updated.zip") + End Using + + + + + The ZipEntry to remove from the zip. + + + + + + + + Removes the ZipEntry with the given filename from the zip archive. + + + + + After calling RemoveEntry, the application must call Save to + make the changes permanent. + + + + + + Thrown if the ZipFile is not updatable. + + + + Thrown if a ZipEntry with the specified filename does not exist in + the ZipFile. + + + + + This example shows one way to remove an entry with a given filename from + an existing zip archive. + + + String zipFileToRead= "PackedDocuments.zip"; + string candidate = "DatedMaterial.xps"; + using (ZipFile zip = ZipFile.Read(zipFileToRead)) + { + if (zip.EntryFilenames.Contains(candidate)) + { + zip.RemoveEntry(candidate); + zip.Comment= String.Format("The file '{0}' has been removed from this archive.", + Candidate); + zip.Save(); + } + } + + + Dim zipFileToRead As String = "PackedDocuments.zip" + Dim candidate As String = "DatedMaterial.xps" + Using zip As ZipFile = ZipFile.Read(zipFileToRead) + If zip.EntryFilenames.Contains(candidate) Then + zip.RemoveEntry(candidate) + zip.Comment = String.Format("The file '{0}' has been removed from this archive.", Candidate) + zip.Save + End If + End Using + + + + + The name of the file, including any directory path, to remove from the zip. + The filename match is not case-sensitive by default; you can use the + CaseSensitiveRetrieval property to change this behavior. The + pathname can use forward-slashes or backward slashes. + + + + + + Closes the read and write streams associated + to the ZipFile, if necessary. + + + + The Dispose() method is generally employed implicitly, via a using(..) {..} + statement. (Using...End Using in VB) If you do not employ a using + statement, insure that your application calls Dispose() explicitly. For + example, in a Powershell application, or an application that uses the COM + interop interface, you must call Dispose() explicitly. + + + + This example extracts an entry selected by name, from the Zip file to the + Console. + + using (ZipFile zip = ZipFile.Read(zipfile)) + { + foreach (ZipEntry e in zip) + { + if (WantThisEntry(e.FileName)) + zip.Extract(e.FileName, Console.OpenStandardOutput()); + } + } // Dispose() is called implicitly here. + + + + Using zip As ZipFile = ZipFile.Read(zipfile) + Dim e As ZipEntry + For Each e In zip + If WantThisEntry(e.FileName) Then + zip.Extract(e.FileName, Console.OpenStandardOutput()) + End If + Next + End Using ' Dispose is implicity called here + + + + + + Disposes any managed resources, if the flag is set, then marks the + instance disposed. This method is typically not called explicitly from + application code. + + + + Applications should call the no-arg Dispose method. + + + + indicates whether the method should dispose streams or not. + + + + + Default size of the buffer used for IO. + + + + + An event handler invoked when a Save() starts, before and after each + entry has been written to the archive, when a Save() completes, and + during other Save events. + + + + + Depending on the particular event, different properties on the parameter are set. The following + table summarizes the available EventTypes and the conditions under + which this event handler is invoked with a + SaveProgressEventArgs with the given EventType. + + + + + value of EntryType + Meaning and conditions + + + + ZipProgressEventType.Saving_Started + Fired when ZipFile.Save() begins. + + + + + ZipProgressEventType.Saving_BeforeSaveEntry + + Fired within ZipFile.Save(), just before writing data for each + particular entry. + + + + + ZipProgressEventType.Saving_AfterSaveEntry + + Fired within ZipFile.Save(), just after having finished writing data + for each particular entry. + + + + + ZipProgressEventType.Saving_Completed + Fired when ZipFile.Save() has completed. + + + + + ZipProgressEventType.Saving_AfterSaveTempArchive + + Fired after the temporary file has been created. This happens only + when saving to a disk file. This event will not be invoked when + saving to a stream. + + + + + ZipProgressEventType.Saving_BeforeRenameTempArchive + + Fired just before renaming the temporary file to the permanent + location. This happens only when saving to a disk file. This event + will not be invoked when saving to a stream. + + + + + ZipProgressEventType.Saving_AfterRenameTempArchive + + Fired just after renaming the temporary file to the permanent + location. This happens only when saving to a disk file. This event + will not be invoked when saving to a stream. + + + + + ZipProgressEventType.Saving_AfterCompileSelfExtractor + + Fired after a self-extracting archive has finished compiling. This + EventType is used only within SaveSelfExtractor(). + + + + + ZipProgressEventType.Saving_BytesRead + + Set during the save of a particular entry, to update progress of the + Save(). When this EventType is set, the BytesTransferred is the + number of bytes that have been read from the source stream. The + TotalBytesToTransfer is the number of bytes in the uncompressed + file. + + + + + + + + + This example uses an anonymous method to handle the + SaveProgress event, by updating a progress bar. + + + progressBar1.Value = 0; + progressBar1.Max = listbox1.Items.Count; + using (ZipFile zip = new ZipFile()) + { + // listbox1 contains a list of filenames + zip.AddFiles(listbox1.Items); + + // do the progress bar: + zip.SaveProgress += (sender, e) => { + if (e.EventType == ZipProgressEventType.Saving_BeforeWriteEntry) { + progressBar1.PerformStep(); + } + }; + + zip.Save(fs); + } + + + + + This example uses a named method as the + SaveProgress event handler, to update the user, in a + console-based application. + + + static bool justHadByteUpdate= false; + public static void SaveProgress(object sender, SaveProgressEventArgs e) + { + if (e.EventType == ZipProgressEventType.Saving_Started) + Console.WriteLine("Saving: {0}", e.ArchiveName); + + else if (e.EventType == ZipProgressEventType.Saving_Completed) + { + justHadByteUpdate= false; + Console.WriteLine(); + Console.WriteLine("Done: {0}", e.ArchiveName); + } + + else if (e.EventType == ZipProgressEventType.Saving_BeforeWriteEntry) + { + if (justHadByteUpdate) + Console.WriteLine(); + Console.WriteLine(" Writing: {0} ({1}/{2})", + e.CurrentEntry.FileName, e.EntriesSaved, e.EntriesTotal); + justHadByteUpdate= false; + } + + else if (e.EventType == ZipProgressEventType.Saving_EntryBytesRead) + { + if (justHadByteUpdate) + Console.SetCursorPosition(0, Console.CursorTop); + Console.Write(" {0}/{1} ({2:N0}%)", e.BytesTransferred, e.TotalBytesToTransfer, + e.BytesTransferred / (0.01 * e.TotalBytesToTransfer )); + justHadByteUpdate= true; + } + } + + public static ZipUp(string targetZip, string directory) + { + using (var zip = new ZipFile()) { + zip.SaveProgress += SaveProgress; + zip.AddDirectory(directory); + zip.Save(targetZip); + } + } + + + + + Public Sub ZipUp(ByVal targetZip As String, ByVal directory As String) + Using zip As ZipFile = New ZipFile + AddHandler zip.SaveProgress, AddressOf MySaveProgress + zip.AddDirectory(directory) + zip.Save(targetZip) + End Using + End Sub + + Private Shared justHadByteUpdate As Boolean = False + + Public Shared Sub MySaveProgress(ByVal sender As Object, ByVal e As SaveProgressEventArgs) + If (e.EventType Is ZipProgressEventType.Saving_Started) Then + Console.WriteLine("Saving: {0}", e.ArchiveName) + + ElseIf (e.EventType Is ZipProgressEventType.Saving_Completed) Then + justHadByteUpdate = False + Console.WriteLine + Console.WriteLine("Done: {0}", e.ArchiveName) + + ElseIf (e.EventType Is ZipProgressEventType.Saving_BeforeWriteEntry) Then + If justHadByteUpdate Then + Console.WriteLine + End If + Console.WriteLine(" Writing: {0} ({1}/{2})", e.CurrentEntry.FileName, e.EntriesSaved, e.EntriesTotal) + justHadByteUpdate = False + + ElseIf (e.EventType Is ZipProgressEventType.Saving_EntryBytesRead) Then + If justHadByteUpdate Then + Console.SetCursorPosition(0, Console.CursorTop) + End If + Console.Write(" {0}/{1} ({2:N0}%)", e.BytesTransferred, _ + e.TotalBytesToTransfer, _ + (CDbl(e.BytesTransferred) / (0.01 * e.TotalBytesToTransfer))) + justHadByteUpdate = True + End If + End Sub + + + + + + This is a more complete example of using the SaveProgress + events in a Windows Forms application, with a + Thread object. + + + delegate void SaveEntryProgress(SaveProgressEventArgs e); + delegate void ButtonClick(object sender, EventArgs e); + + public class WorkerOptions + { + public string ZipName; + public string Folder; + public string Encoding; + public string Comment; + public int ZipFlavor; + public Zip64Option Zip64; + } + + private int _progress2MaxFactor; + private bool _saveCanceled; + private long _totalBytesBeforeCompress; + private long _totalBytesAfterCompress; + private Thread _workerThread; + + + private void btnZipup_Click(object sender, EventArgs e) + { + KickoffZipup(); + } + + private void btnCancel_Click(object sender, EventArgs e) + { + if (this.lblStatus.InvokeRequired) + { + this.lblStatus.Invoke(new ButtonClick(this.btnCancel_Click), new object[] { sender, e }); + } + else + { + _saveCanceled = true; + lblStatus.Text = "Canceled..."; + ResetState(); + } + } + + private void KickoffZipup() + { + _folderName = tbDirName.Text; + + if (_folderName == null || _folderName == "") return; + if (this.tbZipName.Text == null || this.tbZipName.Text == "") return; + + // check for existence of the zip file: + if (System.IO.File.Exists(this.tbZipName.Text)) + { + var dlgResult = MessageBox.Show(String.Format("The file you have specified ({0}) already exists." + + " Do you want to overwrite this file?", this.tbZipName.Text), + "Confirmation is Required", MessageBoxButtons.YesNo, MessageBoxIcon.Question); + if (dlgResult != DialogResult.Yes) return; + System.IO.File.Delete(this.tbZipName.Text); + } + + _saveCanceled = false; + _nFilesCompleted = 0; + _totalBytesAfterCompress = 0; + _totalBytesBeforeCompress = 0; + this.btnOk.Enabled = false; + this.btnOk.Text = "Zipping..."; + this.btnCancel.Enabled = true; + lblStatus.Text = "Zipping..."; + + var options = new WorkerOptions + { + ZipName = this.tbZipName.Text, + Folder = _folderName, + Encoding = "ibm437" + }; + + if (this.comboBox1.SelectedIndex != 0) + { + options.Encoding = this.comboBox1.SelectedItem.ToString(); + } + + if (this.radioFlavorSfxCmd.Checked) + options.ZipFlavor = 2; + else if (this.radioFlavorSfxGui.Checked) + options.ZipFlavor = 1; + else options.ZipFlavor = 0; + + if (this.radioZip64AsNecessary.Checked) + options.Zip64 = Zip64Option.AsNecessary; + else if (this.radioZip64Always.Checked) + options.Zip64 = Zip64Option.Always; + else options.Zip64 = Zip64Option.Never; + + options.Comment = String.Format("Encoding:{0} || Flavor:{1} || ZIP64:{2}\r\nCreated at {3} || {4}\r\n", + options.Encoding, + FlavorToString(options.ZipFlavor), + options.Zip64.ToString(), + System.DateTime.Now.ToString("yyyy-MMM-dd HH:mm:ss"), + this.Text); + + if (this.tbComment.Text != TB_COMMENT_NOTE) + options.Comment += this.tbComment.Text; + + _workerThread = new Thread(this.DoSave); + _workerThread.Name = "Zip Saver thread"; + _workerThread.Start(options); + this.Cursor = Cursors.WaitCursor; + } + + + private void DoSave(Object p) + { + WorkerOptions options = p as WorkerOptions; + try + { + using (var zip1 = new ZipFile()) + { + zip1.ProvisionalAlternateEncoding = System.Text.Encoding.GetEncoding(options.Encoding); + zip1.Comment = options.Comment; + zip1.AddDirectory(options.Folder); + _entriesToZip = zip1.EntryFileNames.Count; + SetProgressBars(); + zip1.SaveProgress += this.zip1_SaveProgress; + + zip1.UseZip64WhenSaving = options.Zip64; + + if (options.ZipFlavor == 1) + zip1.SaveSelfExtractor(options.ZipName, SelfExtractorFlavor.WinFormsApplication); + else if (options.ZipFlavor == 2) + zip1.SaveSelfExtractor(options.ZipName, SelfExtractorFlavor.ConsoleApplication); + else + zip1.Save(options.ZipName); + } + } + catch (System.Exception exc1) + { + MessageBox.Show(String.Format("Exception while zipping: {0}", exc1.Message)); + btnCancel_Click(null, null); + } + } + + + + void zip1_SaveProgress(object sender, SaveProgressEventArgs e) + { + switch (e.EventType) + { + case ZipProgressEventType.Saving_AfterWriteEntry: + StepArchiveProgress(e); + break; + case ZipProgressEventType.Saving_EntryBytesRead: + StepEntryProgress(e); + break; + case ZipProgressEventType.Saving_Completed: + SaveCompleted(); + break; + case ZipProgressEventType.Saving_AfterSaveTempArchive: + // this event only occurs when saving an SFX file + TempArchiveSaved(); + break; + } + if (_saveCanceled) + e.Cancel = true; + } + + + + private void StepArchiveProgress(SaveProgressEventArgs e) + { + if (this.progressBar1.InvokeRequired) + { + this.progressBar1.Invoke(new SaveEntryProgress(this.StepArchiveProgress), new object[] { e }); + } + else + { + if (!_saveCanceled) + { + _nFilesCompleted++; + this.progressBar1.PerformStep(); + _totalBytesAfterCompress += e.CurrentEntry.CompressedSize; + _totalBytesBeforeCompress += e.CurrentEntry.UncompressedSize; + + // reset the progress bar for the entry: + this.progressBar2.Value = this.progressBar2.Maximum = 1; + + this.Update(); + } + } + } + + + private void StepEntryProgress(SaveProgressEventArgs e) + { + if (this.progressBar2.InvokeRequired) + { + this.progressBar2.Invoke(new SaveEntryProgress(this.StepEntryProgress), new object[] { e }); + } + else + { + if (!_saveCanceled) + { + if (this.progressBar2.Maximum == 1) + { + // reset + Int64 max = e.TotalBytesToTransfer; + _progress2MaxFactor = 0; + while (max > System.Int32.MaxValue) + { + max /= 2; + _progress2MaxFactor++; + } + this.progressBar2.Maximum = (int)max; + lblStatus.Text = String.Format("{0} of {1} files...({2})", + _nFilesCompleted + 1, _entriesToZip, e.CurrentEntry.FileName); + } + + int xferred = e.BytesTransferred >> _progress2MaxFactor; + + this.progressBar2.Value = (xferred >= this.progressBar2.Maximum) + ? this.progressBar2.Maximum + : xferred; + + this.Update(); + } + } + } + + private void SaveCompleted() + { + if (this.lblStatus.InvokeRequired) + { + this.lblStatus.Invoke(new MethodInvoker(this.SaveCompleted)); + } + else + { + lblStatus.Text = String.Format("Done, Compressed {0} files, {1:N0}% of original.", + _nFilesCompleted, (100.00 * _totalBytesAfterCompress) / _totalBytesBeforeCompress); + ResetState(); + } + } + + private void ResetState() + { + this.btnCancel.Enabled = false; + this.btnOk.Enabled = true; + this.btnOk.Text = "Zip it!"; + this.progressBar1.Value = 0; + this.progressBar2.Value = 0; + this.Cursor = Cursors.Default; + if (!_workerThread.IsAlive) + _workerThread.Join(); + } + + + + + + + + + + + An event handler invoked before, during, and after the reading of a zip archive. + + + + + Depending on the particular event being signaled, different properties on the + parameter are set. The following table + summarizes the available EventTypes and the conditions under which this + event handler is invoked with a ReadProgressEventArgs with the given EventType. + + + + + value of EntryType + Meaning and conditions + + + + ZipProgressEventType.Reading_Started + Fired just as ZipFile.Read() begins. Meaningful properties: ArchiveName. + + + + + ZipProgressEventType.Reading_Completed + Fired when ZipFile.Read() has completed. Meaningful properties: ArchiveName. + + + + + ZipProgressEventType.Reading_ArchiveBytesRead + Fired while reading, updates the number of bytes read for the entire archive. + Meaningful properties: ArchiveName, CurrentEntry, BytesTransferred, TotalBytesToTransfer. + + + + + ZipProgressEventType.Reading_BeforeReadEntry + Indicates an entry is about to be read from the archive. + Meaningful properties: ArchiveName, EntriesTotal. + + + + + ZipProgressEventType.Reading_AfterReadEntry + Indicates an entry has just been read from the archive. + Meaningful properties: ArchiveName, EntriesTotal, CurrentEntry. + + + + + + + + + + + + + An event handler invoked before, during, and after extraction of + entries in the zip archive. + + + + + Depending on the particular event, different properties on the parameter are set. The following + table summarizes the available EventTypes and the conditions under + which this event handler is invoked with a + ExtractProgressEventArgs with the given EventType. + + + + + value of EntryType + Meaning and conditions + + + + ZipProgressEventType.Extracting_BeforeExtractAll + + Set when ExtractAll() begins. The ArchiveName, Overwrite, and + ExtractLocation properties are meaningful. + + + + ZipProgressEventType.Extracting_AfterExtractAll + + Set when ExtractAll() has completed. The ArchiveName, Overwrite, + and ExtractLocation properties are meaningful. + + + + + ZipProgressEventType.Extracting_BeforeExtractEntry + + Set when an Extract() on an entry in the ZipFile has begun. + Properties that are meaningful: ArchiveName, EntriesTotal, + CurrentEntry, Overwrite, ExtractLocation, EntriesExtracted. + + + + + ZipProgressEventType.Extracting_AfterExtractEntry + + Set when an Extract() on an entry in the ZipFile has completed. + Properties that are meaningful: ArchiveName, EntriesTotal, + CurrentEntry, Overwrite, ExtractLocation, EntriesExtracted. + + + + + ZipProgressEventType.Extracting_EntryBytesWritten + + Set within a call to Extract() on an entry in the ZipFile, as data + is extracted for the entry. Properties that are meaningful: + ArchiveName, CurrentEntry, BytesTransferred, TotalBytesToTransfer. + + + + + ZipProgressEventType.Extracting_ExtractEntryWouldOverwrite + + Set within a call to Extract() on an entry in the ZipFile, when the + extraction would overwrite an existing file. This event type is used + only when ExtractExistingFileAction on the ZipFile or + ZipEntry is set to InvokeExtractProgressEvent. + + + + + + + + + + private static bool justHadByteUpdate = false; + public static void ExtractProgress(object sender, ExtractProgressEventArgs e) + { + if(e.EventType == ZipProgressEventType.Extracting_EntryBytesWritten) + { + if (justHadByteUpdate) + Console.SetCursorPosition(0, Console.CursorTop); + + Console.Write(" {0}/{1} ({2:N0}%)", e.BytesTransferred, e.TotalBytesToTransfer, + e.BytesTransferred / (0.01 * e.TotalBytesToTransfer )); + justHadByteUpdate = true; + } + else if(e.EventType == ZipProgressEventType.Extracting_BeforeExtractEntry) + { + if (justHadByteUpdate) + Console.WriteLine(); + Console.WriteLine("Extracting: {0}", e.CurrentEntry.FileName); + justHadByteUpdate= false; + } + } + + public static ExtractZip(string zipToExtract, string directory) + { + string TargetDirectory= "extract"; + using (var zip = ZipFile.Read(zipToExtract)) { + zip.ExtractProgress += ExtractProgress; + foreach (var e in zip1) + { + e.Extract(TargetDirectory, true); + } + } + } + + + + Public Shared Sub Main(ByVal args As String()) + Dim ZipToUnpack As String = "C1P3SML.zip" + Dim TargetDir As String = "ExtractTest_Extract" + Console.WriteLine("Extracting file {0} to {1}", ZipToUnpack, TargetDir) + Using zip1 As ZipFile = ZipFile.Read(ZipToUnpack) + AddHandler zip1.ExtractProgress, AddressOf MyExtractProgress + Dim e As ZipEntry + For Each e In zip1 + e.Extract(TargetDir, True) + Next + End Using + End Sub + + Private Shared justHadByteUpdate As Boolean = False + + Public Shared Sub MyExtractProgress(ByVal sender As Object, ByVal e As ExtractProgressEventArgs) + If (e.EventType = ZipProgressEventType.Extracting_EntryBytesWritten) Then + If ExtractTest.justHadByteUpdate Then + Console.SetCursorPosition(0, Console.CursorTop) + End If + Console.Write(" {0}/{1} ({2:N0}%)", e.BytesTransferred, e.TotalBytesToTransfer, (CDbl(e.BytesTransferred) / (0.01 * e.TotalBytesToTransfer))) + ExtractTest.justHadByteUpdate = True + ElseIf (e.EventType = ZipProgressEventType.Extracting_BeforeExtractEntry) Then + If ExtractTest.justHadByteUpdate Then + Console.WriteLine + End If + Console.WriteLine("Extracting: {0}", e.CurrentEntry.FileName) + ExtractTest.justHadByteUpdate = False + End If + End Sub + + + + + + + + + + An event handler invoked before, during, and after Adding entries to a zip archive. + + + + Adding a large number of entries to a zip file can take a long + time. For example, when calling on a + directory that contains 50,000 files, it could take 3 minutes or so. + This event handler allws an application to track the progress of the Add + operation, and to optionally cancel a lengthy Add operation. + + + + + + int _numEntriesToAdd= 0; + int _numEntriesAdded= 0; + void AddProgressHandler(object sender, AddProgressEventArgs e) + { + switch (e.EventType) + { + case ZipProgressEventType.Adding_Started: + Console.WriteLine("Adding files to the zip..."); + break; + case ZipProgressEventType.Adding_AfterAddEntry: + _numEntriesAdded++; + Console.WriteLine(String.Format("Adding file {0}/{1} :: {2}", + _numEntriesAdded, _numEntriesToAdd, e.CurrentEntry.FileName)); + break; + case ZipProgressEventType.Adding_Completed: + Console.WriteLine("Added all files"); + break; + } + } + + void CreateTheZip() + { + using (ZipFile zip = new ZipFile()) + { + zip.AddProgress += AddProgressHandler; + zip.AddDirectory(System.IO.Path.GetFileName(DirToZip)); + zip.Save(ZipFileToCreate); + } + } + + + + + + Private Sub AddProgressHandler(ByVal sender As Object, ByVal e As AddProgressEventArgs) + Select Case e.EventType + Case ZipProgressEventType.Adding_Started + Console.WriteLine("Adding files to the zip...") + Exit Select + Case ZipProgressEventType.Adding_AfterAddEntry + Console.WriteLine(String.Format("Adding file {0}", e.CurrentEntry.FileName)) + Exit Select + Case ZipProgressEventType.Adding_Completed + Console.WriteLine("Added all files") + Exit Select + End Select + End Sub + + Sub CreateTheZip() + Using zip as ZipFile = New ZipFile + AddHandler zip.AddProgress, AddressOf AddProgressHandler + zip.AddDirectory(System.IO.Path.GetFileName(DirToZip)) + zip.Save(ZipFileToCreate); + End Using + End Sub + + + + + + + + + + + + An event that is raised when an error occurs during open or read of files + while saving a zip archive. + + + + + Errors can occur as a file is being saved to the zip archive. For + example, the File.Open may fail, or a File.Read may fail, because of + lock conflicts or other reasons. If you add a handler to this event, + you can handle such errors in your own code. If you don't add a + handler, the library will throw an exception if it encounters an I/O + error during a call to Save(). + + + + Setting a handler implicitly sets to + ZipErrorAction.InvokeErrorEvent. + + + + The handler you add applies to all items that are + subsequently added to the ZipFile instance. If you set this + property after you have added items to the ZipFile, but before you + have called Save(), errors that occur while saving those items + will not cause the error handler to be invoked. + + + + If you want to handle any errors that occur with any entry in the zip + file using the same error handler, then add your error handler once, + before adding any entries to the zip archive. + + + + In the error handler method, you need to set the property on the + ZipErrorEventArgs.CurrentEntry. This communicates back to + DotNetZip what you would like to do with this particular error. Within + an error handler, if you set the ZipEntry.ZipErrorAction property + on the ZipEntry to ZipErrorAction.InvokeErrorEvent or if + you don't set it at all, the library will throw the exception. (It is the + same as if you had set the ZipEntry.ZipErrorAction property on the + ZipEntry to ZipErrorAction.Throw.) If you set the + ZipErrorEventArgs.Cancel to true, the entire Save() will be + canceled. + + + + In the case that you use ZipErrorAction.Skip, implying that + you want to skip the entry for which there's been an error, DotNetZip + tries to seek backwards in the output stream, and truncate all bytes + written on behalf of that particular entry. This works only if the + output stream is seekable. It will not work, for example, when using + ASPNET's Response.OutputStream. + + + + + + + This example shows how to use an event handler to handle + errors during save of the zip file. + + + public static void MyZipError(object sender, ZipErrorEventArgs e) + { + Console.WriteLine("Error saving {0}...", e.FileName); + Console.WriteLine(" Exception: {0}", e.exception); + ZipEntry entry = e.CurrentEntry; + string response = null; + // Ask the user whether he wants to skip this error or not + do + { + Console.Write("Retry, Skip, Throw, or Cancel ? (R/S/T/C) "); + response = Console.ReadLine(); + Console.WriteLine(); + + } while (response != null && + response[0]!='S' && response[0]!='s' && + response[0]!='R' && response[0]!='r' && + response[0]!='T' && response[0]!='t' && + response[0]!='C' && response[0]!='c'); + + e.Cancel = (response[0]=='C' || response[0]=='c'); + + if (response[0]=='S' || response[0]=='s') + entry.ZipErrorAction = ZipErrorAction.Skip; + else if (response[0]=='R' || response[0]=='r') + entry.ZipErrorAction = ZipErrorAction.Retry; + else if (response[0]=='T' || response[0]=='t') + entry.ZipErrorAction = ZipErrorAction.Throw; + } + + public void SaveTheFile() + { + string directoryToZip = "fodder"; + string directoryInArchive = "files"; + string zipFileToCreate = "Archive.zip"; + using (var zip = new ZipFile()) + { + // set the event handler before adding any entries + zip.ZipError += MyZipError; + zip.AddDirectory(directoryToZip, directoryInArchive); + zip.Save(zipFileToCreate); + } + } + + + + Private Sub MyZipError(ByVal sender As Object, ByVal e As Ionic.Zip.ZipErrorEventArgs) + ' At this point, the application could prompt the user for an action to take. + ' But in this case, this application will simply automatically skip the file, in case of error. + Console.WriteLine("Zip Error, entry {0}", e.CurrentEntry.FileName) + Console.WriteLine(" Exception: {0}", e.exception) + ' set the desired ZipErrorAction on the CurrentEntry to communicate that to DotNetZip + e.CurrentEntry.ZipErrorAction = Zip.ZipErrorAction.Skip + End Sub + + Public Sub SaveTheFile() + Dim directoryToZip As String = "fodder" + Dim directoryInArchive As String = "files" + Dim zipFileToCreate as String = "Archive.zip" + Using zipArchive As ZipFile = New ZipFile + ' set the event handler before adding any entries + AddHandler zipArchive.ZipError, AddressOf MyZipError + zipArchive.AddDirectory(directoryToZip, directoryInArchive) + zipArchive.Save(zipFileToCreate) + End Using + End Sub + + + + + + + + + Extracts all of the items in the zip archive, to the specified path in the + filesystem. The path can be relative or fully-qualified. + + + + + This method will extract all entries in the ZipFile to the + specified path. + + + + If an extraction of a file from the zip archive would overwrite an + existing file in the filesystem, the action taken is dictated by the + ExtractExistingFile property, which overrides any setting you may have + made on individual ZipEntry instances. By default, if you have not + set that property on the ZipFile instance, the entry will not + be extracted, the existing file will not be overwritten and an + exception will be thrown. To change this, set the property, or use the + overload that allows you to + specify an ExtractExistingFileAction parameter. + + + + The action to take when an extract would overwrite an existing file + applies to all entries. If you want to set this on a per-entry basis, + then you must use one of the ZipEntry.Extract methods. + + + + This method will send verbose output messages to the , if it is set on the ZipFile + instance. + + + + You may wish to take advantage of the ExtractProgress event. + + + + About timestamps: When extracting a file entry from a zip archive, the + extracted file gets the last modified time of the entry as stored in + the archive. The archive may also store extended file timestamp + information, including last accessed and created times. If these are + present in the ZipEntry, then the extracted file will also get + these times. + + + + A Directory entry is somewhat different. It will get the times as + described for a file entry, but, if there are file entries in the zip + archive that, when extracted, appear in the just-created directory, + then when those file entries are extracted, the last modified and last + accessed times of the directory will change, as a side effect. The + result is that after an extraction of a directory and a number of + files within the directory, the last modified and last accessed + timestamps on the directory will reflect the time that the last file + was extracted into the directory, rather than the time stored in the + zip archive for the directory. + + + + To compensate, when extracting an archive with ExtractAll, + DotNetZip will extract all the file and directory entries as described + above, but it will then make a second pass on the directories, and + reset the times on the directories to reflect what is stored in the + zip archive. + + + + This compensation is performed only within the context of an + ExtractAll. If you call ZipEntry.Extract on a directory + entry, the timestamps on directory in the filesystem will reflect the + times stored in the zip. If you then call ZipEntry.Extract on + a file entry, which is extracted into the directory, the timestamps on + the directory will be updated to the current time. + + + + + This example extracts all the entries in a zip archive file, to the + specified target directory. The extraction will overwrite any + existing files silently. + + + String TargetDirectory= "unpack"; + using(ZipFile zip= ZipFile.Read(ZipFileToExtract)) + { + zip.ExtractExistingFile= ExtractExistingFileAction.OverwriteSilently; + zip.ExtractAll(TargetDirectory); + } + + + + Dim TargetDirectory As String = "unpack" + Using zip As ZipFile = ZipFile.Read(ZipFileToExtract) + zip.ExtractExistingFile= ExtractExistingFileAction.OverwriteSilently + zip.ExtractAll(TargetDirectory) + End Using + + + + + + + + The path to which the contents of the zipfile will be extracted. + The path can be relative or fully-qualified. + + + + + + Extracts all of the items in the zip archive, to the specified path in the + filesystem, using the specified behavior when extraction would overwrite an + existing file. + + + + + + This method will extract all entries in the ZipFile to the specified + path. For an extraction that would overwrite an existing file, the behavior + is dictated by , which overrides any + setting you may have made on individual ZipEntry instances. + + + + The action to take when an extract would overwrite an existing file + applies to all entries. If you want to set this on a per-entry basis, + then you must use or one of the similar methods. + + + + Calling this method is equivalent to setting the property and then calling . + + + + This method will send verbose output messages to the + , if it is set on the ZipFile instance. + + + + + This example extracts all the entries in a zip archive file, to the + specified target directory. It does not overwrite any existing files. + + String TargetDirectory= "c:\\unpack"; + using(ZipFile zip= ZipFile.Read(ZipFileToExtract)) + { + zip.ExtractAll(TargetDirectory, ExtractExistingFileAction.DontOverwrite); + } + + + + Dim TargetDirectory As String = "c:\unpack" + Using zip As ZipFile = ZipFile.Read(ZipFileToExtract) + zip.ExtractAll(TargetDirectory, ExtractExistingFileAction.DontOverwrite) + End Using + + + + + The path to which the contents of the zipfile will be extracted. + The path can be relative or fully-qualified. + + + + The action to take if extraction would overwrite an existing file. + + + + + + Reads a zip file archive and returns the instance. + + + + + The stream is read using the default System.Text.Encoding, which is the + IBM437 codepage. + + + + + Thrown if the ZipFile cannot be read. The implementation of this method + relies on System.IO.File.OpenRead, which can throw a variety of exceptions, + including specific exceptions if a file is not found, an unauthorized access + exception, exceptions for poorly formatted filenames, and so on. + + + + The name of the zip archive to open. This can be a fully-qualified or relative + pathname. + + + . + + The instance read from the zip archive. + + + + + Reads a zip file archive from the named filesystem file using the + specified options. + + + + + This version of the Read() method allows the caller to pass + in a TextWriter an Encoding, via an instance of the + ReadOptions class. The ZipFile is read in using the + specified encoding for entries where UTF-8 encoding is not + explicitly specified. + + + + + + + This example shows how to read a zip file using the Big-5 Chinese + code page (950), and extract each entry in the zip file, while + sending status messages out to the Console. + + + + For this code to work as intended, the zipfile must have been + created using the big5 code page (CP950). This is typical, for + example, when using WinRar on a machine with CP950 set as the + default code page. In that case, the names of entries within the + Zip archive will be stored in that code page, and reading the zip + archive must be done using that code page. If the application did + not use the correct code page in ZipFile.Read(), then names of + entries within the zip archive would not be correctly retrieved. + + + + string zipToExtract = "MyArchive.zip"; + string extractDirectory = "extract"; + var options = new ReadOptions + { + StatusMessageWriter = System.Console.Out, + Encoding = System.Text.Encoding.GetEncoding(950) + }; + using (ZipFile zip = ZipFile.Read(zipToExtract, options)) + { + foreach (ZipEntry e in zip) + { + e.Extract(extractDirectory); + } + } + + + + + Dim zipToExtract as String = "MyArchive.zip" + Dim extractDirectory as String = "extract" + Dim options as New ReadOptions + options.Encoding = System.Text.Encoding.GetEncoding(950) + options.StatusMessageWriter = System.Console.Out + Using zip As ZipFile = ZipFile.Read(zipToExtract, options) + Dim e As ZipEntry + For Each e In zip + e.Extract(extractDirectory) + Next + End Using + + + + + + + + This example shows how to read a zip file using the default + code page, to remove entries that have a modified date before a given threshold, + sending status messages out to a StringWriter. + + + + var options = new ReadOptions + { + StatusMessageWriter = new System.IO.StringWriter() + }; + using (ZipFile zip = ZipFile.Read("PackedDocuments.zip", options)) + { + var Threshold = new DateTime(2007,7,4); + // We cannot remove the entry from the list, within the context of + // an enumeration of said list. + // So we add the doomed entry to a list to be removed later. + // pass 1: mark the entries for removal + var MarkedEntries = new System.Collections.Generic.List<ZipEntry>(); + foreach (ZipEntry e in zip) + { + if (e.LastModified < Threshold) + MarkedEntries.Add(e); + } + // pass 2: actually remove the entry. + foreach (ZipEntry zombie in MarkedEntries) + zip.RemoveEntry(zombie); + zip.Comment = "This archive has been updated."; + zip.Save(); + } + // can now use contents of sw, eg store in an audit log + + + + Dim options as New ReadOptions + options.StatusMessageWriter = New System.IO.StringWriter + Using zip As ZipFile = ZipFile.Read("PackedDocuments.zip", options) + Dim Threshold As New DateTime(2007, 7, 4) + ' We cannot remove the entry from the list, within the context of + ' an enumeration of said list. + ' So we add the doomed entry to a list to be removed later. + ' pass 1: mark the entries for removal + Dim MarkedEntries As New System.Collections.Generic.List(Of ZipEntry) + Dim e As ZipEntry + For Each e In zip + If (e.LastModified < Threshold) Then + MarkedEntries.Add(e) + End If + Next + ' pass 2: actually remove the entry. + Dim zombie As ZipEntry + For Each zombie In MarkedEntries + zip.RemoveEntry(zombie) + Next + zip.Comment = "This archive has been updated." + zip.Save + End Using + ' can now use contents of sw, eg store in an audit log + + + + + Thrown if the zipfile cannot be read. The implementation of + this method relies on System.IO.File.OpenRead, which + can throw a variety of exceptions, including specific + exceptions if a file is not found, an unauthorized access + exception, exceptions for poorly formatted filenames, and so + on. + + + + The name of the zip archive to open. + This can be a fully-qualified or relative pathname. + + + + The set of options to use when reading the zip file. + + + The ZipFile instance read from the zip archive. + + + + + + + Reads a zip file archive using the specified text encoding, the specified + TextWriter for status messages, and the specified ReadProgress event handler, + and returns the instance. + + + + The name of the zip archive to open. + This can be a fully-qualified or relative pathname. + + + + An event handler for Read operations. + + + + The System.IO.TextWriter to use for writing verbose status messages + during operations on the zip archive. A console application may wish to + pass System.Console.Out to get messages on the Console. A graphical + or headless application may wish to capture the messages in a different + TextWriter, such as a System.IO.StringWriter. + + + + The System.Text.Encoding to use when reading in the zip archive. Be + careful specifying the encoding. If the value you use here is not the same + as the Encoding used when the zip archive was created (possibly by a + different archiver) you will get unexpected results and possibly exceptions. + + + The instance read from the zip archive. + + + + + Reads a zip archive from a stream. + + + + + + When reading from a file, it's probably easier to just use + ZipFile.Read(String, ReadOptions). This + overload is useful when when the zip archive content is + available from an already-open stream. The stream must be + open and readable and seekable when calling this method. The + stream is left open when the reading is completed. + + + + Using this overload, the stream is read using the default + System.Text.Encoding, which is the IBM437 + codepage. If you want to specify the encoding to use when + reading the zipfile content, see + ZipFile.Read(Stream, ReadOptions). This + + + + Reading of zip content begins at the current position in the + stream. This means if you have a stream that concatenates + regular data and zip data, if you position the open, readable + stream at the start of the zip data, you will be able to read + the zip archive using this constructor, or any of the ZipFile + constructors that accept a as + input. Some examples of where this might be useful: the zip + content is concatenated at the end of a regular EXE file, as + some self-extracting archives do. (Note: SFX files produced + by DotNetZip do not work this way; they can be read as normal + ZIP files). Another example might be a stream being read from + a database, where the zip content is embedded within an + aggregate stream of data. + + + + + + + This example shows how to Read zip content from a stream, and + extract one entry into a different stream. In this example, + the filename "NameOfEntryInArchive.doc", refers only to the + name of the entry within the zip archive. A file by that + name is not created in the filesystem. The I/O is done + strictly with the given streams. + + + + using (ZipFile zip = ZipFile.Read(InputStream)) + { + zip.Extract("NameOfEntryInArchive.doc", OutputStream); + } + + + + Using zip as ZipFile = ZipFile.Read(InputStream) + zip.Extract("NameOfEntryInArchive.doc", OutputStream) + End Using + + + + the stream containing the zip data. + + The ZipFile instance read from the stream + + + + + Reads a zip file archive from the given stream using the + specified options. + + + + + + When reading from a file, it's probably easier to just use + ZipFile.Read(String, ReadOptions). This + overload is useful when when the zip archive content is + available from an already-open stream. The stream must be + open and readable and seekable when calling this method. The + stream is left open when the reading is completed. + + + + Reading of zip content begins at the current position in the + stream. This means if you have a stream that concatenates + regular data and zip data, if you position the open, readable + stream at the start of the zip data, you will be able to read + the zip archive using this constructor, or any of the ZipFile + constructors that accept a as + input. Some examples of where this might be useful: the zip + content is concatenated at the end of a regular EXE file, as + some self-extracting archives do. (Note: SFX files produced + by DotNetZip do not work this way; they can be read as normal + ZIP files). Another example might be a stream being read from + a database, where the zip content is embedded within an + aggregate stream of data. + + + + the stream containing the zip data. + + + The set of options to use when reading the zip file. + + + + Thrown if the zip archive cannot be read. + + + The ZipFile instance read from the stream. + + + + + + + Reads a zip archive from a stream, using the specified text Encoding, the + specified TextWriter for status messages, + and the specified ReadProgress event handler. + + + + + Reading of zip content begins at the current position in the stream. This + means if you have a stream that concatenates regular data and zip data, if + you position the open, readable stream at the start of the zip data, you + will be able to read the zip archive using this constructor, or any of the + ZipFile constructors that accept a as + input. Some examples of where this might be useful: the zip content is + concatenated at the end of a regular EXE file, as some self-extracting + archives do. (Note: SFX files produced by DotNetZip do not work this + way). Another example might be a stream being read from a database, where + the zip content is embedded within an aggregate stream of data. + + + + the stream containing the zip data. + + + The System.IO.TextWriter to which verbose status messages are written + during operations on the ZipFile. For example, in a console + application, System.Console.Out works, and will get a message for each entry + added to the ZipFile. If the TextWriter is null, no verbose messages + are written. + + + + The text encoding to use when reading entries that do not have the UTF-8 + encoding bit set. Be careful specifying the encoding. If the value you use + here is not the same as the Encoding used when the zip archive was created + (possibly by a different archiver) you will get unexpected results and + possibly exceptions. See the + property for more information. + + + + An event handler for Read operations. + + + an instance of ZipFile + + + + Checks the given file to see if it appears to be a valid zip file. + + + + + Calling this method is equivalent to calling with the testExtract parameter set to false. + + + + The file to check. + true if the file appears to be a zip file. + + + + Checks a file to see if it is a valid zip file. + + + + + This method opens the specified zip file, reads in the zip archive, + verifying the ZIP metadata as it reads. + + + + If everything succeeds, then the method returns true. If anything fails - + for example if an incorrect signature or CRC is found, indicating a + corrupt file, the the method returns false. This method also returns + false for a file that does not exist. + + + + If is true, as part of its check, this + method reads in the content for each entry, expands it, and checks CRCs. + This provides an additional check beyond verifying the zip header and + directory data. + + + + If is true, and if any of the zip entries + are protected with a password, this method will return false. If you want + to verify a ZipFile that has entries which are protected with a + password, you will need to do that manually. + + + + + The zip file to check. + true if the caller wants to extract each entry. + true if the file contains a valid zip file. + + + + Checks a stream to see if it contains a valid zip archive. + + + + + This method reads the zip archive contained in the specified stream, verifying + the ZIP metadata as it reads. If testExtract is true, this method also extracts + each entry in the archive, dumping all the bits into . + + + + If everything succeeds, then the method returns true. If anything fails - + for example if an incorrect signature or CRC is found, indicating a corrupt + file, the the method returns false. This method also returns false for a + file that does not exist. + + + + If testExtract is true, this method reads in the content for each + entry, expands it, and checks CRCs. This provides an additional check + beyond verifying the zip header data. + + + + If testExtract is true, and if any of the zip entries are protected + with a password, this method will return false. If you want to verify a + ZipFile that has entries which are protected with a password, you will need + to do that manually. + + + + + + The stream to check. + true if the caller wants to extract each entry. + true if the stream contains a valid zip archive. + + + + Delete file with retry on UnauthorizedAccessException. + + + + + When calling File.Delete() on a file that has been "recently" + created, the call sometimes fails with + UnauthorizedAccessException. This method simply retries the Delete 3 + times with a sleep between tries. + + + + the name of the file to be deleted + + + + Saves the Zip archive to a file, specified by the Name property of the + ZipFile. + + + + + The ZipFile instance is written to storage, typically a zip file + in a filesystem, only when the caller calls Save. In the typical + case, the Save operation writes the zip content to a temporary file, and + then renames the temporary file to the desired name. If necessary, this + method will delete a pre-existing file before the rename. + + + + The property is specified either explicitly, + or implicitly using one of the parameterized ZipFile constructors. For + COM Automation clients, the Name property must be set explicitly, + because COM Automation clients cannot call parameterized constructors. + + + + When using a filesystem file for the Zip output, it is possible to call + Save multiple times on the ZipFile instance. With each + call the zip content is re-written to the same output file. + + + + Data for entries that have been added to the ZipFile instance is + written to the output when the Save method is called. This means + that the input streams for those entries must be available at the time + the application calls Save. If, for example, the application + adds entries with AddEntry using a dynamically-allocated + MemoryStream, the memory stream must not have been disposed + before the call to Save. See the property for more discussion of the + availability requirements of the input stream for an entry, and an + approach for providing just-in-time stream lifecycle management. + + + + + + + + Thrown if you haven't specified a location or stream for saving the zip, + either in the constructor or by setting the Name property, or if you try + to save a regular zip archive to a filename with a .exe extension. + + + + Thrown if or is non-zero, and the number + of segments that would be generated for the spanned zip file during the + save operation exceeds 99. If this happens, you need to increase the + segment size. + + + + + + Save the file to a new zipfile, with the given name. + + + + + This method allows the application to explicitly specify the name of the zip + file when saving. Use this when creating a new zip file, or when + updating a zip archive. + + + + An application can also save a zip archive in several places by calling this + method multiple times in succession, with different filenames. + + + + The ZipFile instance is written to storage, typically a zip file in a + filesystem, only when the caller calls Save. The Save operation writes + the zip content to a temporary file, and then renames the temporary file + to the desired name. If necessary, this method will delete a pre-existing file + before the rename. + + + + + + Thrown if you specify a directory for the filename. + + + + The name of the zip archive to save to. Existing files will + be overwritten with great prejudice. + + + + This example shows how to create and Save a zip file. + + using (ZipFile zip = new ZipFile()) + { + zip.AddDirectory(@"c:\reports\January"); + zip.Save("January.zip"); + } + + + + Using zip As New ZipFile() + zip.AddDirectory("c:\reports\January") + zip.Save("January.zip") + End Using + + + + + + This example shows how to update a zip file. + + using (ZipFile zip = ZipFile.Read("ExistingArchive.zip")) + { + zip.AddFile("NewData.csv"); + zip.Save("UpdatedArchive.zip"); + } + + + + Using zip As ZipFile = ZipFile.Read("ExistingArchive.zip") + zip.AddFile("NewData.csv") + zip.Save("UpdatedArchive.zip") + End Using + + + + + + + Save the zip archive to the specified stream. + + + + + The ZipFile instance is written to storage - typically a zip file + in a filesystem, but using this overload, the storage can be anything + accessible via a writable stream - only when the caller calls Save. + + + + Use this method to save the zip content to a stream directly. A common + scenario is an ASP.NET application that dynamically generates a zip file + and allows the browser to download it. The application can call + Save(Response.OutputStream) to write a zipfile directly to the + output stream, without creating a zip file on the disk on the ASP.NET + server. + + + + Be careful when saving a file to a non-seekable stream, including + Response.OutputStream. When DotNetZip writes to a non-seekable + stream, the zip archive is formatted in such a way that may not be + compatible with all zip tools on all platforms. It's a perfectly legal + and compliant zip file, but some people have reported problems opening + files produced this way using the Mac OS archive utility. + + + + + + + This example saves the zipfile content into a MemoryStream, and + then gets the array of bytes from that MemoryStream. + + + using (var zip = new Ionic.Zip.ZipFile()) + { + zip.CompressionLevel= Ionic.Zlib.CompressionLevel.BestCompression; + zip.Password = "VerySecret."; + zip.Encryption = EncryptionAlgorithm.WinZipAes128; + zip.AddFile(sourceFileName); + MemoryStream output = new MemoryStream(); + zip.Save(output); + + byte[] zipbytes = output.ToArray(); + } + + + + + + This example shows a pitfall you should avoid. DO NOT read + from a stream, then try to save to the same stream. DO + NOT DO THIS: + + + + using (var fs = new FileStream(filename, FileMode.Open)) + { + using (var zip = Ionic.Zip.ZipFile.Read(inputStream)) + { + zip.AddEntry("Name1.txt", "this is the content"); + zip.Save(inputStream); // NO NO NO!! + } + } + + + + Better like this: + + + + using (var zip = Ionic.Zip.ZipFile.Read(filename)) + { + zip.AddEntry("Name1.txt", "this is the content"); + zip.Save(); // YES! + } + + + + + + The System.IO.Stream to write to. It must be + writable. If you created the ZipFile instance by calling + ZipFile.Read(), this stream must not be the same stream + you passed to ZipFile.Read(). + + + + + Adds to the ZipFile a set of files from the current working directory on + disk, that conform to the specified criteria. + + + + + This method selects files from the the current working directory matching + the specified criteria, and adds them to the ZipFile. + + + + Specify the criteria in statements of 3 elements: a noun, an operator, and + a value. Consider the string "name != *.doc" . The noun is "name". The + operator is "!=", implying "Not Equal". The value is "*.doc". That + criterion, in English, says "all files with a name that does not end in + the .doc extension." + + + + Supported nouns include "name" (or "filename") for the filename; "atime", + "mtime", and "ctime" for last access time, last modfied time, and created + time of the file, respectively; "attributes" (or "attrs") for the file + attributes; "size" (or "length") for the file length (uncompressed), and + "type" for the type of object, either a file or a directory. The + "attributes", "name" and "type" nouns both support = and != as operators. + The "size", "atime", "mtime", and "ctime" nouns support = and !=, and + >, >=, <, <= as well. The times are taken to be expressed in + local time. + + + + Specify values for the file attributes as a string with one or more of the + characters H,R,S,A,I,L in any order, implying file attributes of Hidden, + ReadOnly, System, Archive, NotContextIndexed, and ReparsePoint (symbolic + link) respectively. + + + + To specify a time, use YYYY-MM-DD-HH:mm:ss or YYYY/MM/DD-HH:mm:ss as the + format. If you omit the HH:mm:ss portion, it is assumed to be 00:00:00 + (midnight). + + + + The value for a size criterion is expressed in integer quantities of bytes, + kilobytes (use k or kb after the number), megabytes (m or mb), or gigabytes + (g or gb). + + + + The value for a name is a pattern to match against the filename, potentially + including wildcards. The pattern follows CMD.exe glob rules: * implies one + or more of any character, while ? implies one character. If the name + pattern contains any slashes, it is matched to the entire filename, + including the path; otherwise, it is matched against only the filename + without the path. This means a pattern of "*\*.*" matches all files one + directory level deep, while a pattern of "*.*" matches all files in all + directories. + + + + To specify a name pattern that includes spaces, use single quotes around the + pattern. A pattern of "'* *.*'" will match all files that have spaces in + the filename. The full criteria string for that would be "name = '* *.*'" . + + + + The value for a type criterion is either F (implying a file) or D (implying + a directory). + + + + Some examples: + + + + + criteria + Files retrieved + + + + name != *.xls + any file with an extension that is not .xls + + + + + name = *.mp3 + any file with a .mp3 extension. + + + + + *.mp3 + (same as above) any file with a .mp3 extension. + + + + + attributes = A + all files whose attributes include the Archive bit. + + + + + attributes != H + all files whose attributes do not include the Hidden bit. + + + + + mtime > 2009-01-01 + all files with a last modified time after January 1st, 2009. + + + + + size > 2gb + all files whose uncompressed size is greater than 2gb. + + + + + type = D + all directories in the filesystem. + + + + + + You can combine criteria with the conjunctions AND or OR. Using a string + like "name = *.txt AND size >= 100k" for the selectionCriteria retrieves + entries whose names end in .txt, and whose uncompressed size is greater than + or equal to 100 kilobytes. + + + + For more complex combinations of criteria, you can use parenthesis to group + clauses in the boolean logic. Without parenthesis, the precedence of the + criterion atoms is determined by order of appearance. Unlike the C# + language, the AND conjunction does not take precendence over the logical OR. + This is important only in strings that contain 3 or more criterion atoms. + In other words, "name = *.txt and size > 1000 or attributes = H" implies + "((name = *.txt AND size > 1000) OR attributes = H)" while "attributes = + H OR name = *.txt and size > 1000" evaluates to "((attributes = H OR name + = *.txt) AND size > 1000)". When in doubt, use parenthesis. + + + + Using time properties requires some extra care. If you want to retrieve all + entries that were last updated on 2009 February 14, specify a time range + like so:"mtime >= 2009-02-14 AND mtime < 2009-02-15". Read this to + say: all files updated after 12:00am on February 14th, until 12:00am on + February 15th. You can use the same bracketing approach to specify any time + period - a year, a month, a week, and so on. + + + + The syntax allows one special case: if you provide a string with no spaces, it is + treated as a pattern to match for the filename. Therefore a string like "*.xls" + will be equivalent to specifying "name = *.xls". + + + + There is no logic in this method that insures that the file inclusion + criteria are internally consistent. For example, it's possible to specify + criteria that says the file must have a size of less than 100 bytes, as well + as a size that is greater than 1000 bytes. Obviously no file will ever + satisfy such criteria, but this method does not detect such logical + inconsistencies. The caller is responsible for insuring the criteria are + sensible. + + + + Using this method, the file selection does not recurse into + subdirectories, and the full path of the selected files is included in the + entries added into the zip archive. If you don't like these behaviors, + see the other overloads of this method. + + + + + This example zips up all *.csv files in the current working directory. + + using (ZipFile zip = new ZipFile()) + { + // To just match on filename wildcards, + // use the shorthand form of the selectionCriteria string. + zip.AddSelectedFiles("*.csv"); + zip.Save(PathToZipArchive); + } + + + Using zip As ZipFile = New ZipFile() + zip.AddSelectedFiles("*.csv") + zip.Save(PathToZipArchive) + End Using + + + + The criteria for file selection + + + + Adds to the ZipFile a set of files from the disk that conform to the + specified criteria, optionally recursing into subdirectories. + + + + + This method selects files from the the current working directory matching + the specified criteria, and adds them to the ZipFile. If + recurseDirectories is true, files are also selected from + subdirectories, and the directory structure in the filesystem is + reproduced in the zip archive, rooted at the current working directory. + + + + Using this method, the full path of the selected files is included in the + entries added into the zip archive. If you don't want this behavior, use + one of the overloads of this method that allows the specification of a + directoryInArchive. + + + + For details on the syntax for the selectionCriteria parameter, see . + + + + + + + This example zips up all *.xml files in the current working directory, or any + subdirectory, that are larger than 1mb. + + + using (ZipFile zip = new ZipFile()) + { + // Use a compound expression in the selectionCriteria string. + zip.AddSelectedFiles("name = *.xml and size > 1024kb", true); + zip.Save(PathToZipArchive); + } + + + Using zip As ZipFile = New ZipFile() + ' Use a compound expression in the selectionCriteria string. + zip.AddSelectedFiles("name = *.xml and size > 1024kb", true) + zip.Save(PathToZipArchive) + End Using + + + + The criteria for file selection + + + If true, the file selection will recurse into subdirectories. + + + + + Adds to the ZipFile a set of files from a specified directory in the + filesystem, that conform to the specified criteria. + + + + + This method selects files that conform to the specified criteria, from the + the specified directory on disk, and adds them to the ZipFile. The search + does not recurse into subdirectores. + + + + Using this method, the full filesystem path of the files on disk is + reproduced on the entries added to the zip file. If you don't want this + behavior, use one of the other overloads of this method. + + + + For details on the syntax for the selectionCriteria parameter, see . + + + + + + + This example zips up all *.xml files larger than 1mb in the directory + given by "d:\rawdata". + + + using (ZipFile zip = new ZipFile()) + { + // Use a compound expression in the selectionCriteria string. + zip.AddSelectedFiles("name = *.xml and size > 1024kb", "d:\\rawdata"); + zip.Save(PathToZipArchive); + } + + + + Using zip As ZipFile = New ZipFile() + ' Use a compound expression in the selectionCriteria string. + zip.AddSelectedFiles("name = *.xml and size > 1024kb", "d:\rawdata) + zip.Save(PathToZipArchive) + End Using + + + + The criteria for file selection + + + The name of the directory on the disk from which to select files. + + + + + Adds to the ZipFile a set of files from the specified directory on disk, + that conform to the specified criteria. + + + + + + This method selects files from the the specified disk directory matching + the specified selection criteria, and adds them to the ZipFile. If + recurseDirectories is true, files are also selected from + subdirectories. + + + + The full directory structure in the filesystem is reproduced on the + entries added to the zip archive. If you don't want this behavior, use + one of the overloads of this method that allows the specification of a + directoryInArchive. + + + + For details on the syntax for the selectionCriteria parameter, see . + + + + + + This example zips up all *.csv files in the "files" directory, or any + subdirectory, that have been saved since 2009 February 14th. + + + using (ZipFile zip = new ZipFile()) + { + // Use a compound expression in the selectionCriteria string. + zip.AddSelectedFiles("name = *.csv and mtime > 2009-02-14", "files", true); + zip.Save(PathToZipArchive); + } + + + Using zip As ZipFile = New ZipFile() + ' Use a compound expression in the selectionCriteria string. + zip.AddSelectedFiles("name = *.csv and mtime > 2009-02-14", "files", true) + zip.Save(PathToZipArchive) + End Using + + + + + This example zips up all files in the current working + directory, and all its child directories, except those in + the excludethis subdirectory. + + Using Zip As ZipFile = New ZipFile(zipfile) + Zip.AddSelectedFfiles("name != 'excludethis\*.*'", datapath, True) + Zip.Save() + End Using + + + + The criteria for file selection + + + The filesystem path from which to select files. + + + + If true, the file selection will recurse into subdirectories. + + + + + Adds to the ZipFile a selection of files from the specified directory on + disk, that conform to the specified criteria, and using a specified root + path for entries added to the zip archive. + + + + + This method selects files from the specified disk directory matching the + specified selection criteria, and adds those files to the ZipFile, using + the specified directory path in the archive. The search does not recurse + into subdirectories. For details on the syntax for the selectionCriteria + parameter, see . + + + + + + + This example zips up all *.psd files in the "photos" directory that have + been saved since 2009 February 14th, and puts them all in a zip file, + using the directory name of "content" in the zip archive itself. When the + zip archive is unzipped, the folder containing the .psd files will be + named "content". + + + using (ZipFile zip = new ZipFile()) + { + // Use a compound expression in the selectionCriteria string. + zip.AddSelectedFiles("name = *.psd and mtime > 2009-02-14", "photos", "content"); + zip.Save(PathToZipArchive); + } + + + Using zip As ZipFile = New ZipFile + zip.AddSelectedFiles("name = *.psd and mtime > 2009-02-14", "photos", "content") + zip.Save(PathToZipArchive) + End Using + + + + + The criteria for selection of files to add to the ZipFile. + + + + The path to the directory in the filesystem from which to select files. + + + + Specifies a directory path to use to in place of the + directoryOnDisk. This path may, or may not, correspond to a real + directory in the current filesystem. If the files within the zip are + later extracted, this is the path used for the extracted file. Passing + null (nothing in VB) will use the path on the file name, if any; in other + words it would use directoryOnDisk, plus any subdirectory. Passing + the empty string ("") will insert the item at the root path within the + archive. + + + + + Adds to the ZipFile a selection of files from the specified directory on + disk, that conform to the specified criteria, optionally recursing through + subdirectories, and using a specified root path for entries added to the + zip archive. + + + + This method selects files from the specified disk directory that match the + specified selection criteria, and adds those files to the ZipFile, using + the specified directory path in the archive. If recurseDirectories + is true, files are also selected from subdirectories, and the directory + structure in the filesystem is reproduced in the zip archive, rooted at + the directory specified by directoryOnDisk. For details on the + syntax for the selectionCriteria parameter, see . + + + + + This example zips up all files that are NOT *.pst files, in the current + working directory and any subdirectories. + + + using (ZipFile zip = new ZipFile()) + { + zip.AddSelectedFiles("name != *.pst", SourceDirectory, "backup", true); + zip.Save(PathToZipArchive); + } + + + Using zip As ZipFile = New ZipFile + zip.AddSelectedFiles("name != *.pst", SourceDirectory, "backup", true) + zip.Save(PathToZipArchive) + End Using + + + + + The criteria for selection of files to add to the ZipFile. + + + + The path to the directory in the filesystem from which to select files. + + + + Specifies a directory path to use to in place of the + directoryOnDisk. This path may, or may not, correspond to a real + directory in the current filesystem. If the files within the zip are + later extracted, this is the path used for the extracted file. Passing + null (nothing in VB) will use the path on the file name, if any; in other + words it would use directoryOnDisk, plus any subdirectory. Passing + the empty string ("") will insert the item at the root path within the + archive. + + + + If true, the method also scans subdirectories for files matching the + criteria. + + + + + Updates the ZipFile with a selection of files from the disk that conform + to the specified criteria. + + + + This method selects files from the specified disk directory that match the + specified selection criteria, and Updates the ZipFile with those + files, using the specified directory path in the archive. If + recurseDirectories is true, files are also selected from + subdirectories, and the directory structure in the filesystem is + reproduced in the zip archive, rooted at the directory specified by + directoryOnDisk. For details on the syntax for the + selectionCriteria parameter, see . + + + + The criteria for selection of files to add to the ZipFile. + + + + The path to the directory in the filesystem from which to select files. + + + + Specifies a directory path to use to in place of the + directoryOnDisk. This path may, or may not, correspond to a + real directory in the current filesystem. If the files within the zip + are later extracted, this is the path used for the extracted file. + Passing null (nothing in VB) will use the path on the file name, if + any; in other words it would use directoryOnDisk, plus any + subdirectory. Passing the empty string ("") will insert the item at + the root path within the archive. + + + + If true, the method also scans subdirectories for files matching the criteria. + + + + + + + Retrieve entries from the zipfile by specified criteria. + + + + + This method allows callers to retrieve the collection of entries from the zipfile + that fit the specified criteria. The criteria are described in a string format, and + can include patterns for the filename; constraints on the size of the entry; + constraints on the last modified, created, or last accessed time for the file + described by the entry; or the attributes of the entry. + + + + For details on the syntax for the selectionCriteria parameter, see . + + + + This method is intended for use with a ZipFile that has been read from storage. + When creating a new ZipFile, this method will work only after the ZipArchive has + been Saved to the disk (the ZipFile class subsequently and implicitly reads the Zip + archive from storage.) Calling SelectEntries on a ZipFile that has not yet been + saved will deliver undefined results. + + + + + Thrown if selectionCriteria has an invalid syntax. + + + + This example selects all the PhotoShop files from within an archive, and extracts them + to the current working directory. + + using (ZipFile zip1 = ZipFile.Read(ZipFileName)) + { + var PhotoShopFiles = zip1.SelectEntries("*.psd"); + foreach (ZipEntry psd in PhotoShopFiles) + { + psd.Extract(); + } + } + + + Using zip1 As ZipFile = ZipFile.Read(ZipFileName) + Dim PhotoShopFiles as ICollection(Of ZipEntry) + PhotoShopFiles = zip1.SelectEntries("*.psd") + Dim psd As ZipEntry + For Each psd In PhotoShopFiles + psd.Extract + Next + End Using + + + the string that specifies which entries to select + a collection of ZipEntry objects that conform to the inclusion spec + + + + Retrieve entries from the zipfile by specified criteria. + + + + + This method allows callers to retrieve the collection of entries from the zipfile + that fit the specified criteria. The criteria are described in a string format, and + can include patterns for the filename; constraints on the size of the entry; + constraints on the last modified, created, or last accessed time for the file + described by the entry; or the attributes of the entry. + + + + For details on the syntax for the selectionCriteria parameter, see . + + + + This method is intended for use with a ZipFile that has been read from storage. + When creating a new ZipFile, this method will work only after the ZipArchive has + been Saved to the disk (the ZipFile class subsequently and implicitly reads the Zip + archive from storage.) Calling SelectEntries on a ZipFile that has not yet been + saved will deliver undefined results. + + + + + Thrown if selectionCriteria has an invalid syntax. + + + + + using (ZipFile zip1 = ZipFile.Read(ZipFileName)) + { + var UpdatedPhotoShopFiles = zip1.SelectEntries("*.psd", "UpdatedFiles"); + foreach (ZipEntry e in UpdatedPhotoShopFiles) + { + // prompt for extract here + if (WantExtract(e.FileName)) + e.Extract(); + } + } + + + Using zip1 As ZipFile = ZipFile.Read(ZipFileName) + Dim UpdatedPhotoShopFiles As ICollection(Of ZipEntry) = zip1.SelectEntries("*.psd", "UpdatedFiles") + Dim e As ZipEntry + For Each e In UpdatedPhotoShopFiles + ' prompt for extract here + If Me.WantExtract(e.FileName) Then + e.Extract + End If + Next + End Using + + + the string that specifies which entries to select + + + the directory in the archive from which to select entries. If null, then + all directories in the archive are used. + + + a collection of ZipEntry objects that conform to the inclusion spec + + + + Remove entries from the zipfile by specified criteria. + + + + + This method allows callers to remove the collection of entries from the zipfile + that fit the specified criteria. The criteria are described in a string format, and + can include patterns for the filename; constraints on the size of the entry; + constraints on the last modified, created, or last accessed time for the file + described by the entry; or the attributes of the entry. + + + + For details on the syntax for the selectionCriteria parameter, see . + + + + This method is intended for use with a ZipFile that has been read from storage. + When creating a new ZipFile, this method will work only after the ZipArchive has + been Saved to the disk (the ZipFile class subsequently and implicitly reads the Zip + archive from storage.) Calling SelectEntries on a ZipFile that has not yet been + saved will deliver undefined results. + + + + + Thrown if selectionCriteria has an invalid syntax. + + + + This example removes all entries in a zip file that were modified prior to January 1st, 2008. + + using (ZipFile zip1 = ZipFile.Read(ZipFileName)) + { + // remove all entries from prior to Jan 1, 2008 + zip1.RemoveEntries("mtime < 2008-01-01"); + // don't forget to save the archive! + zip1.Save(); + } + + + Using zip As ZipFile = ZipFile.Read(ZipFileName) + ' remove all entries from prior to Jan 1, 2008 + zip1.RemoveEntries("mtime < 2008-01-01") + ' do not forget to save the archive! + zip1.Save + End Using + + + the string that specifies which entries to select + the number of entries removed + + + + Remove entries from the zipfile by specified criteria, and within the specified + path in the archive. + + + + + This method allows callers to remove the collection of entries from the zipfile + that fit the specified criteria. The criteria are described in a string format, and + can include patterns for the filename; constraints on the size of the entry; + constraints on the last modified, created, or last accessed time for the file + described by the entry; or the attributes of the entry. + + + + For details on the syntax for the selectionCriteria parameter, see . + + + + This method is intended for use with a ZipFile that has been read from storage. + When creating a new ZipFile, this method will work only after the ZipArchive has + been Saved to the disk (the ZipFile class subsequently and implicitly reads the Zip + archive from storage.) Calling SelectEntries on a ZipFile that has not yet been + saved will deliver undefined results. + + + + + Thrown if selectionCriteria has an invalid syntax. + + + + + using (ZipFile zip1 = ZipFile.Read(ZipFileName)) + { + // remove all entries from prior to Jan 1, 2008 + zip1.RemoveEntries("mtime < 2008-01-01", "documents"); + // a call to ZipFile.Save will make the modifications permanent + zip1.Save(); + } + + + Using zip As ZipFile = ZipFile.Read(ZipFileName) + ' remove all entries from prior to Jan 1, 2008 + zip1.RemoveEntries("mtime < 2008-01-01", "documents") + ' a call to ZipFile.Save will make the modifications permanent + zip1.Save + End Using + + + + the string that specifies which entries to select + + the directory in the archive from which to select entries. If null, then + all directories in the archive are used. + + the number of entries removed + + + + Selects and Extracts a set of Entries from the ZipFile. + + + + + The entries are extracted into the current working directory. + + + + If any of the files to be extracted already exist, then the action taken is as + specified in the property on the + corresponding ZipEntry instance. By default, the action taken in this case is to + throw an exception. + + + + For information on the syntax of the selectionCriteria string, + see . + + + + + This example shows how extract all XML files modified after 15 January 2009. + + using (ZipFile zip = ZipFile.Read(zipArchiveName)) + { + zip.ExtractSelectedEntries("name = *.xml and mtime > 2009-01-15"); + } + + + the selection criteria for entries to extract. + + + + + + Selects and Extracts a set of Entries from the ZipFile. + + + + + The entries are extracted into the current working directory. When extraction would would + overwrite an existing filesystem file, the action taken is as specified in the + parameter. + + + + For information on the syntax of the string describing the entry selection criteria, + see . + + + + + This example shows how extract all XML files modified after 15 January 2009, + overwriting any existing files. + + using (ZipFile zip = ZipFile.Read(zipArchiveName)) + { + zip.ExtractSelectedEntries("name = *.xml and mtime > 2009-01-15", + ExtractExistingFileAction.OverwriteSilently); + } + + + + the selection criteria for entries to extract. + + + The action to take if extraction would overwrite an existing file. + + + + + Selects and Extracts a set of Entries from the ZipFile. + + + + + The entries are selected from the specified directory within the archive, and then + extracted into the current working directory. + + + + If any of the files to be extracted already exist, then the action taken is as + specified in the property on the + corresponding ZipEntry instance. By default, the action taken in this case is to + throw an exception. + + + + For information on the syntax of the string describing the entry selection criteria, + see . + + + + + This example shows how extract all XML files modified after 15 January 2009, + and writes them to the "unpack" directory. + + using (ZipFile zip = ZipFile.Read(zipArchiveName)) + { + zip.ExtractSelectedEntries("name = *.xml and mtime > 2009-01-15","unpack"); + } + + + + the selection criteria for entries to extract. + + + the directory in the archive from which to select entries. If null, then + all directories in the archive are used. + + + + + + + Selects and Extracts a set of Entries from the ZipFile. + + + + + The entries are extracted into the specified directory. If any of the files to be + extracted already exist, an exception will be thrown. + + + For information on the syntax of the string describing the entry selection criteria, + see . + + + + the selection criteria for entries to extract. + + + the directory in the archive from which to select entries. If null, then + all directories in the archive are used. + + + + the directory on the disk into which to extract. It will be created + if it does not exist. + + + + + Selects and Extracts a set of Entries from the ZipFile. + + + + + The entries are extracted into the specified directory. When extraction would would + overwrite an existing filesystem file, the action taken is as specified in the + parameter. + + + + For information on the syntax of the string describing the entry selection criteria, + see . + + + + + This example shows how extract all files with an XML extension or with a size larger than 100,000 bytes, + and puts them in the unpack directory. For any files that already exist in + that destination directory, they will not be overwritten. + + using (ZipFile zip = ZipFile.Read(zipArchiveName)) + { + zip.ExtractSelectedEntries("name = *.xml or size > 100000", + null, + "unpack", + ExtractExistingFileAction.DontOverwrite); + } + + + + the selection criteria for entries to extract. + + + The directory on the disk into which to extract. It will be created if it does not exist. + + + + The directory in the archive from which to select entries. If null, then + all directories in the archive are used. + + + + The action to take if extraction would overwrite an existing file. + + + + + + + + Static constructor for ZipFile + + + Code Pages 437 and 1252 for English are same + Code Page 1252 Windows Latin 1 (ANSI) - + Code Page 437 MS-DOS Latin US - + + + + + The default text encoding used in zip archives. It is numeric 437, also + known as IBM437. + + + + + + Generic IEnumerator support, for use of a ZipFile in an enumeration. + + + + You probably do not want to call GetEnumerator explicitly. Instead + it is implicitly called when you use a loop in C#, or a + For Each loop in VB.NET. + + + + This example reads a zipfile of a given name, then enumerates the + entries in that zip file, and displays the information about each + entry on the Console. + + using (ZipFile zip = ZipFile.Read(zipfile)) + { + bool header = true; + foreach (ZipEntry e in zip) + { + if (header) + { + System.Console.WriteLine("Zipfile: {0}", zip.Name); + System.Console.WriteLine("Version Needed: 0x{0:X2}", e.VersionNeeded); + System.Console.WriteLine("BitField: 0x{0:X2}", e.BitField); + System.Console.WriteLine("Compression Method: 0x{0:X2}", e.CompressionMethod); + System.Console.WriteLine("\n{1,-22} {2,-6} {3,4} {4,-8} {0}", + "Filename", "Modified", "Size", "Ratio", "Packed"); + System.Console.WriteLine(new System.String('-', 72)); + header = false; + } + + System.Console.WriteLine("{1,-22} {2,-6} {3,4:F0}% {4,-8} {0}", + e.FileName, + e.LastModified.ToString("yyyy-MM-dd HH:mm:ss"), + e.UncompressedSize, + e.CompressionRatio, + e.CompressedSize); + + e.Extract(); + } + } + + + + Dim ZipFileToExtract As String = "c:\foo.zip" + Using zip As ZipFile = ZipFile.Read(ZipFileToExtract) + Dim header As Boolean = True + Dim e As ZipEntry + For Each e In zip + If header Then + Console.WriteLine("Zipfile: {0}", zip.Name) + Console.WriteLine("Version Needed: 0x{0:X2}", e.VersionNeeded) + Console.WriteLine("BitField: 0x{0:X2}", e.BitField) + Console.WriteLine("Compression Method: 0x{0:X2}", e.CompressionMethod) + Console.WriteLine(ChrW(10) & "{1,-22} {2,-6} {3,4} {4,-8} {0}", _ + "Filename", "Modified", "Size", "Ratio", "Packed" ) + Console.WriteLine(New String("-"c, 72)) + header = False + End If + Console.WriteLine("{1,-22} {2,-6} {3,4:F0}% {4,-8} {0}", _ + e.FileName, _ + e.LastModified.ToString("yyyy-MM-dd HH:mm:ss"), _ + e.UncompressedSize, _ + e.CompressionRatio, _ + e.CompressedSize ) + e.Extract + Next + End Using + + + + A generic enumerator suitable for use within a foreach loop. + + + + An IEnumerator, for use of a ZipFile in a foreach construct. + + + + This method is included for COM support. An application generally does not call + this method directly. It is called implicitly by COM clients when enumerating + the entries in the ZipFile instance. In VBScript, this is done with a For Each + statement. In Javascript, this is done with new Enumerator(zipfile). + + + + The IEnumerator over the entries in the ZipFile. + + + + + Options for using ZIP64 extensions when saving zip archives. + + + + + + Designed many years ago, the original zip + specification from PKWARE allowed for 32-bit quantities for the + compressed and uncompressed sizes of zip entries, as well as a 32-bit quantity + for specifying the length of the zip archive itself, and a maximum of 65535 + entries. These limits are now regularly exceeded in many backup and archival + scenarios. Recently, PKWare added extensions to the original zip spec, called + "ZIP64 extensions", to raise those limitations. This property governs whether + DotNetZip will use those extensions when writing zip archives. The use of + these extensions is optional and explicit in DotNetZip because, despite the + status of ZIP64 as a bona fide standard, many other zip tools and libraries do + not support ZIP64, and therefore a zip file with ZIP64 extensions may be + unreadable by some of those other tools. + + + + Set this property to to always use ZIP64 + extensions when saving, regardless of whether your zip archive needs it. + Suppose you add 5 files, each under 100k, to a ZipFile. If you specify Always + for this flag, you will get a ZIP64 archive, though the archive does not need + to use ZIP64 because none of the original zip limits had been exceeded. + + + + Set this property to to tell the DotNetZip + library to never use ZIP64 extensions. This is useful for maximum + compatibility and interoperability, at the expense of the capability of + handling large files or large archives. NB: Windows Explorer in Windows XP + and Windows Vista cannot currently extract files from a zip64 archive, so if + you want to guarantee that a zip archive produced by this library will work in + Windows Explorer, use Never. If you set this property to , and your application creates a zip that would + exceed one of the Zip limits, the library will throw an exception while saving + the zip file. + + + + Set this property to to tell the + DotNetZip library to use the ZIP64 extensions when required by the + entry. After the file is compressed, the original and compressed sizes are + checked, and if they exceed the limits described above, then zip64 can be + used. That is the general idea, but there is an additional wrinkle when saving + to a non-seekable device, like the ASP.NET Response.OutputStream, or + Console.Out. When using non-seekable streams for output, the entry + header - which indicates whether zip64 is in use - is emitted before it is + known if zip64 is necessary. It is only after all entries have been saved + that it can be known if ZIP64 will be required. On seekable output streams, + after saving all entries, the library can seek backward and re-emit the zip + file header to be consistent with the actual ZIP64 requirement. But using a + non-seekable output stream, the library cannot seek backward, so the header + can never be changed. In other words, the archive's use of ZIP64 extensions is + not alterable after the header is emitted. Therefore, when saving to + non-seekable streams, using is the same + as using : it will always produce a zip + archive that uses ZIP64 extensions. + + + + + + + The default behavior, which is "Never". + (For COM clients, this is a 0 (zero).) + + + + + Do not use ZIP64 extensions when writing zip archives. + (For COM clients, this is a 0 (zero).) + + + + + Use ZIP64 extensions when writing zip archives, as necessary. + For example, when a single entry exceeds 0xFFFFFFFF in size, or when the archive as a whole + exceeds 0xFFFFFFFF in size, or when there are more than 65535 entries in an archive. + (For COM clients, this is a 1.) + + + + + Always use ZIP64 extensions when writing zip archives, even when unnecessary. + (For COM clients, this is a 2.) + + + + + An enum representing the values on a three-way toggle switch + for various options in the library. This might be used to + specify whether to employ a particular text encoding, or to use + ZIP64 extensions, or some other option. + + + + + The default behavior. This is the same as "Never". + (For COM clients, this is a 0 (zero).) + + + + + Never use the associated option. + (For COM clients, this is a 0 (zero).) + + + + + Use the associated behavior "as necessary." + (For COM clients, this is a 1.) + + + + + Use the associated behavior Always, whether necessary or not. + (For COM clients, this is a 2.) + + + + + A class for collecting the various options that can be used when + Reading zip files for extraction or update. + + + + + When reading a zip file, there are several options an + application can set, to modify how the file is read, or what + the library does while reading. This class collects those + options into one container. + + + + Pass an instance of the ReadOptions class into the + ZipFile.Read() method. + + + . + . + + + + + An event handler for Read operations. When opening large zip + archives, you may want to display a progress bar or other + indicator of status progress while reading. This parameter + allows you to specify a ReadProgress Event Handler directly. + When you call Read(), the progress event is invoked as + necessary. + + + + + The System.IO.TextWriter to use for writing verbose status messages + during operations on the zip archive. A console application may wish to + pass System.Console.Out to get messages on the Console. A graphical + or headless application may wish to capture the messages in a different + TextWriter, such as a System.IO.StringWriter. + + + + + The System.Text.Encoding to use when reading in the zip archive. Be + careful specifying the encoding. If the value you use here is not the same + as the Encoding used when the zip archive was created (possibly by a + different archiver) you will get unexpected results and possibly exceptions. + + + + + + + + Provides a stream metaphor for reading zip files. + + + + + This class provides an alternative programming model for reading zip files to + the one enabled by the class. Use this when reading zip + files, as an alternative to the class, when you would + like to use a Stream class to read the file. + + + + Some application designs require a readable stream for input. This stream can + be used to read a zip file, and extract entries. + + + + Both the ZipInputStream class and the ZipFile class can be used + to read and extract zip files. Both of them support many of the common zip + features, including Unicode, different compression levels, and ZIP64. The + programming models differ. For example, when extracting entries via calls to + the GetNextEntry() and Read() methods on the + ZipInputStream class, the caller is responsible for creating the file, + writing the bytes into the file, setting the attributes on the file, and + setting the created, last modified, and last accessed timestamps on the + file. All of these things are done automatically by a call to ZipEntry.Extract(). For this reason, the + ZipInputStream is generally recommended for when your application wants + to extract the data, without storing that data into a file. + + + + Aside from the obvious differences in programming model, there are some + differences in capability between the ZipFile class and the + ZipInputStream class. + + + + + ZipFile can be used to create or update zip files, or read and + extract zip files. ZipInputStream can be used only to read and + extract zip files. If you want to use a stream to create zip files, check + out the . + + + + ZipInputStream cannot read segmented or spanned + zip files. + + + + ZipInputStream will not read Zip file comments. + + + + When reading larger files, ZipInputStream will always underperform + ZipFile. This is because the ZipInputStream does a full scan on the + zip file, while the ZipFile class reads the central directory of the + zip file. + + + + + + + + + Create a ZipInputStream, wrapping it around an existing stream. + + + + + + While the class is generally easier + to use, this class provides an alternative to those + applications that want to read from a zipfile directly, + using a . + + + + Both the ZipInputStream class and the ZipFile class can be used + to read and extract zip files. Both of them support many of the common zip + features, including Unicode, different compression levels, and ZIP64. The + programming models differ. For example, when extracting entries via calls to + the GetNextEntry() and Read() methods on the + ZipInputStream class, the caller is responsible for creating the file, + writing the bytes into the file, setting the attributes on the file, and + setting the created, last modified, and last accessed timestamps on the + file. All of these things are done automatically by a call to ZipEntry.Extract(). For this reason, the + ZipInputStream is generally recommended for when your application wants + to extract the data, without storing that data into a file. + + + + Aside from the obvious differences in programming model, there are some + differences in capability between the ZipFile class and the + ZipInputStream class. + + + + + ZipFile can be used to create or update zip files, or read and extract + zip files. ZipInputStream can be used only to read and extract zip + files. If you want to use a stream to create zip files, check out the . + + + + ZipInputStream cannot read segmented or spanned + zip files. + + + + ZipInputStream will not read Zip file comments. + + + + When reading larger files, ZipInputStream will always underperform + ZipFile. This is because the ZipInputStream does a full scan on the + zip file, while the ZipFile class reads the central directory of the + zip file. + + + + + + + + The stream to read. It must be readable. This stream will be closed at + the time the ZipInputStream is closed. + + + + + This example shows how to read a zip file, and extract entries, using the + ZipInputStream class. + + + private void Unzip() + { + byte[] buffer= new byte[2048]; + int n; + using (var raw = File.Open(inputFileName, FileMode.Open, FileAccess.Read)) + { + using (var input= new ZipInputStream(raw)) + { + ZipEntry e; + while (( e = input.GetNextEntry()) != null) + { + if (e.IsDirectory) continue; + string outputPath = Path.Combine(extractDir, e.FileName); + using (var output = File.Open(outputPath, FileMode.Create, FileAccess.ReadWrite)) + { + while ((n= input.Read(buffer, 0, buffer.Length)) > 0) + { + output.Write(buffer,0,n); + } + } + } + } + } + } + + + + Private Sub UnZip() + Dim inputFileName As String = "MyArchive.zip" + Dim extractDir As String = "extract" + Dim buffer As Byte() = New Byte(2048) {} + Using raw As FileStream = File.Open(inputFileName, FileMode.Open, FileAccess.Read) + Using input As ZipInputStream = New ZipInputStream(raw) + Dim e As ZipEntry + Do While (Not e = input.GetNextEntry Is Nothing) + If Not e.IsDirectory Then + Using output As FileStream = File.Open(Path.Combine(extractDir, e.FileName), _ + FileMode.Create, FileAccess.ReadWrite) + Dim n As Integer + Do While (n = input.Read(buffer, 0, buffer.Length) > 0) + output.Write(buffer, 0, n) + Loop + End Using + End If + Loop + End Using + End Using + End Sub + + + + + + Create a ZipInputStream, given the name of an existing zip file. + + + + + + This constructor opens a FileStream for the given zipfile, and + wraps a ZipInputStream around that. See the documentation for the + constructor for full details. + + + + While the class is generally easier + to use, this class provides an alternative to those + applications that want to read from a zipfile directly, + using a . + + + + + + The name of the filesystem file to read. + + + + + This example shows how to read a zip file, and extract entries, using the + ZipInputStream class. + + + private void Unzip() + { + byte[] buffer= new byte[2048]; + int n; + using (var input= new ZipInputStream(inputFileName)) + { + ZipEntry e; + while (( e = input.GetNextEntry()) != null) + { + if (e.IsDirectory) continue; + string outputPath = Path.Combine(extractDir, e.FileName); + using (var output = File.Open(outputPath, FileMode.Create, FileAccess.ReadWrite)) + { + while ((n= input.Read(buffer, 0, buffer.Length)) > 0) + { + output.Write(buffer,0,n); + } + } + } + } + } + + + + Private Sub UnZip() + Dim inputFileName As String = "MyArchive.zip" + Dim extractDir As String = "extract" + Dim buffer As Byte() = New Byte(2048) {} + Using input As ZipInputStream = New ZipInputStream(inputFileName) + Dim e As ZipEntry + Do While (Not e = input.GetNextEntry Is Nothing) + If Not e.IsDirectory Then + Using output As FileStream = File.Open(Path.Combine(extractDir, e.FileName), _ + FileMode.Create, FileAccess.ReadWrite) + Dim n As Integer + Do While (n = input.Read(buffer, 0, buffer.Length) > 0) + output.Write(buffer, 0, n) + Loop + End Using + End If + Loop + End Using + End Sub + + + + + + Create a ZipInputStream, explicitly specifying whether to + keep the underlying stream open. + + + + See the documentation for the ZipInputStream(Stream) + constructor for a discussion of the class, and an example of how to use the class. + + + + The stream to read from. It must be readable. + + + + true if the application would like the stream + to remain open after the ZipInputStream has been closed. + + + + Provides a string representation of the instance. + + + This can be useful for debugging purposes. + + + a string representation of the instance. + + + + The text encoding to use when reading entries into the zip archive, for + those entries whose filenames or comments cannot be encoded with the + default (IBM437) encoding. + + + + + In its + zip specification, PKWare describes two options for encoding + filenames and comments: using IBM437 or UTF-8. But, some archiving tools + or libraries do not follow the specification, and instead encode + characters using the system default code page. For example, WinRAR when + run on a machine in Shanghai may encode filenames with the Big-5 Chinese + (950) code page. This behavior is contrary to the Zip specification, but + it occurs anyway. + + + + When using DotNetZip to read zip archives that use something other than + UTF-8 or IBM437, set this property to specify the code page to use when + reading encoded filenames and comments for each ZipEntry in the zip + file. + + + + This property is "provisional". When the entry in the zip archive is not + explicitly marked as using UTF-8, then IBM437 is used to decode filenames + and comments. If a loss of data would result from using IBM436 - + specifically when encoding and decoding is not reflexive - the codepage + specified here is used. It is possible, therefore, to have a given entry + with a Comment encoded in IBM437 and a FileName encoded with + the specified "provisional" codepage. + + + + When a zip file uses an arbitrary, non-UTF8 code page for encoding, there + is no standard way for the reader application - whether DotNetZip, WinZip, + WinRar, or something else - to know which codepage has been used for the + entries. Readers of zip files are not able to inspect the zip file and + determine the codepage that was used for the entries contained within it. + It is left to the application or user to determine the necessary codepage + when reading zip files encoded this way. If you use an incorrect codepage + when reading a zipfile, you will get entries with filenames that are + incorrect, and the incorrect filenames may even contain characters that + are not legal for use within filenames in Windows. Extracting entries with + illegal characters in the filenames will lead to exceptions. It's too bad, + but this is just the way things are with code pages in zip files. Caveat + Emptor. + + + + + + + Size of the work buffer to use for the ZLIB codec during decompression. + + + + Setting this affects the performance and memory efficiency of compression + and decompression. For larger files, setting this to a larger size may + improve performance, but the exact numbers vary depending on available + memory, and a bunch of other variables. I don't have good firm + recommendations on how to set it. You'll have to test it yourself. Or + just leave it alone and accept the default. + + + + + Sets the password to be used on the ZipInputStream instance. + + + + + + When reading a zip archive, this password is used to read and decrypt the + entries that are encrypted within the zip file. When entries within a zip + file use different passwords, set the appropriate password for the entry + before the first call to Read() for each entry. + + + + When reading an entry that is not encrypted, the value of this property is + ignored. + + + + + + + This example uses the ZipInputStream to read and extract entries from a + zip file, using a potentially different password for each entry. + + + byte[] buffer= new byte[2048]; + int n; + using (var raw = File.Open(_inputFileName, FileMode.Open, FileAccess.Read )) + { + using (var input= new ZipInputStream(raw)) + { + ZipEntry e; + while (( e = input.GetNextEntry()) != null) + { + input.Password = PasswordForEntry(e.FileName); + if (e.IsDirectory) continue; + string outputPath = Path.Combine(_extractDir, e.FileName); + using (var output = File.Open(outputPath, FileMode.Create, FileAccess.ReadWrite)) + { + while ((n= input.Read(buffer,0,buffer.Length)) > 0) + { + output.Write(buffer,0,n); + } + } + } + } + } + + + + + + + Read the data from the stream into the buffer. + + + + + The data for the zipentry will be decrypted and uncompressed, as + necessary, before being copied into the buffer. + + + + You must set the property before calling + Read() the first time for an encrypted entry. To determine if an + entry is encrypted and requires a password, check the ZipEntry.Encryption property. + + + + The buffer to hold the data read from the stream. + the offset within the buffer to copy the first byte read. + the number of bytes to read. + the number of bytes read, after decryption and decompression. + + + + Read the next entry from the zip file. + + + + + Call this method just before calling , + to position the pointer in the zip file to the next entry that can be + read. Subsequent calls to Read(), will decrypt and decompress the + data in the zip file, until Read() returns 0. + + + + Each time you call GetNextEntry(), the pointer in the wrapped + stream is moved to the next entry in the zip file. If you call , and thus re-position the pointer within + the file, you will need to call GetNextEntry() again, to insure + that the file pointer is positioned at the beginning of a zip entry. + + + + This method returns the ZipEntry. Using a stream approach, you will + read the raw bytes for an entry in a zip file via calls to Read(). + Alternatively, you can extract an entry into a file, or a stream, by + calling , or one of its siblings. + + + + + + The ZipEntry read. Returns null (or Nothing in VB) if there are no more + entries in the zip file. + + + + + + Dispose the stream. + + + + + This method disposes the ZipInputStream. It may also close the + underlying stream, depending on which constructor was used. + + + + Typically the application will call Dispose() implicitly, via + a using statement in C#, or a Using statement in VB. + + + + Application code won't call this code directly. This method may + be invoked in two distinct scenarios. If disposing == true, the + method has been called directly or indirectly by a user's code, + for example via the public Dispose() method. In this case, both + managed and unmanaged resources can be referenced and disposed. + If disposing == false, the method has been called by the runtime + from inside the object finalizer and this method should not + reference other objects; in that case only unmanaged resources + must be referenced or disposed. + + + + + true if the Dispose method was invoked by user code. + + + + + Always returns true. + + + + + Returns the value of CanSeek for the underlying (wrapped) stream. + + + + + Always returns false. + + + + + Returns the length of the underlying stream. + + + + + Gets or sets the position of the underlying stream. + + + Setting the position is equivalent to calling Seek(value, SeekOrigin.Begin). + + + + + This is a no-op. + + + + + This method always throws a NotSupportedException. + + ignored + ignored + ignored + + + + This method seeks in the underlying stream. + + + + + Call this method if you want to seek around within the zip file for random access. + + + + Applications can intermix calls to Seek() with calls to . After a call to Seek(), + GetNextEntry() will get the next ZipEntry that falls after + the current position in the input stream. You're on your own for finding + out just where to seek in the stream, to get to the various entries. + + + + + the offset point to seek to + the reference point from which to seek + The new position + + + + This method always throws a NotSupportedException. + + ignored + + + + Provides a stream metaphor for generating zip files. + + + + + This class writes zip files, as defined in the specification + for zip files described by PKWare. The compression for this + implementation is provided by a managed-code version of Zlib, included with + DotNetZip in the classes in the Ionic.Zlib namespace. + + + + This class provides an alternative programming model to the one enabled by the + class. Use this when creating zip files, as an + alternative to the class, when you would like to use a + Stream type to write the zip file. + + + + Both the ZipOutputStream class and the ZipFile class can be used + to create zip files. Both of them support many of the common zip features, + including Unicode, different compression levels, and ZIP64. They provide + very similar performance when creating zip files. + + + + The ZipFile class is generally easier to use than + ZipOutputStream and should be considered a higher-level interface. For + example, when creating a zip file via calls to the PutNextEntry() and + Write() methods on the ZipOutputStream class, the caller is + responsible for opening the file, reading the bytes from the file, writing + those bytes into the ZipOutputStream, setting the attributes on the + ZipEntry, and setting the created, last modified, and last accessed + timestamps on the zip entry. All of these things are done automatically by a + call to ZipFile.AddFile(). + For this reason, the ZipOutputStream is generally recommended for use + only when your application emits arbitrary data, not necessarily data from a + filesystem file, directly into a zip file, and does so using a Stream + metaphor. + + + + Aside from the differences in programming model, there are other + differences in capability between the two classes. + + + + + ZipFile can be used to read and extract zip files, in addition to + creating zip files. ZipOutputStream cannot read zip files. If you want + to use a stream to read zip files, check out the class. + + + + ZipOutputStream does not support the creation of segmented or spanned + zip files. + + + + ZipOutputStream cannot produce a self-extracting archive. + + + + + Be aware that the ZipOutputStream class implements the interface. In order for + ZipOutputStream to produce a valid zip file, you use use it within + a using clause (Using in VB), or call the Dispose() method + explicitly. See the examples for how to employ a using clause. + + + + Also, a note regarding compression performance: On the desktop .NET + Framework, DotNetZip can use a multi-threaded compression implementation + that provides significant speed increases on large files, over 300k or so, + at the cost of increased memory use at runtime. (The output of the + compression is almost exactly the same size). But, the multi-threaded + approach incurs a performance hit on smaller files. There's no way for the + ZipOutputStream to know whether parallel compression will be beneficial, + because the ZipOutputStream does not know how much data you will write + through the stream. You may wish to set the property to zero, if you are compressing + large files through ZipOutputStream. This will cause parallel + compression to be used, always. + + + + + + Create a ZipOutputStream, wrapping an existing stream. + + + + + The class is generally easier to use when creating + zip files. The ZipOutputStream offers a different metaphor for creating a + zip file, based on the class. + + + + + + The stream to wrap. It must be writable. This stream will be closed at + the time the ZipOutputStream is closed. + + + + + This example shows how to create a zip file, using the + ZipOutputStream class. + + + private void Zipup() + { + if (filesToZip.Count == 0) + { + System.Console.WriteLine("Nothing to do."); + return; + } + + using (var raw = File.Open(_outputFileName, FileMode.Create, FileAccess.ReadWrite )) + { + using (var output= new ZipOutputStream(raw)) + { + output.Password = "VerySecret!"; + output.Encryption = EncryptionAlgorithm.WinZipAes256; + + foreach (string inputFileName in filesToZip) + { + System.Console.WriteLine("file: {0}", inputFileName); + + output.PutNextEntry(inputFileName); + using (var input = File.Open(inputFileName, FileMode.Open, FileAccess.Read, FileShare.Read | FileShare.Write )) + { + byte[] buffer= new byte[2048]; + int n; + while ((n= input.Read(buffer,0,buffer.Length)) > 0) + { + output.Write(buffer,0,n); + } + } + } + } + } + } + + + + Private Sub Zipup() + Dim outputFileName As String = "XmlData.zip" + Dim filesToZip As String() = Directory.GetFiles(".", "*.xml") + If (filesToZip.Length = 0) Then + Console.WriteLine("Nothing to do.") + Else + Using raw As FileStream = File.Open(outputFileName, FileMode.Create, FileAccess.ReadWrite) + Using output As ZipOutputStream = New ZipOutputStream(raw) + output.Password = "VerySecret!" + output.Encryption = EncryptionAlgorithm.WinZipAes256 + Dim inputFileName As String + For Each inputFileName In filesToZip + Console.WriteLine("file: {0}", inputFileName) + output.PutNextEntry(inputFileName) + Using input As FileStream = File.Open(inputFileName, FileMode.Open, FileAccess.Read, FileShare.ReadWrite) + Dim n As Integer + Dim buffer As Byte() = New Byte(2048) {} + Do While (n = input.Read(buffer, 0, buffer.Length) > 0) + output.Write(buffer, 0, n) + Loop + End Using + Next + End Using + End Using + End If + End Sub + + + + + + Create a ZipOutputStream that writes to a filesystem file. + + + + The class is generally easier to use when creating + zip files. The ZipOutputStream offers a different metaphor for creating a + zip file, based on the class. + + + + The name of the zip file to create. + + + + + This example shows how to create a zip file, using the + ZipOutputStream class. + + + private void Zipup() + { + if (filesToZip.Count == 0) + { + System.Console.WriteLine("Nothing to do."); + return; + } + + using (var output= new ZipOutputStream(outputFileName)) + { + output.Password = "VerySecret!"; + output.Encryption = EncryptionAlgorithm.WinZipAes256; + + foreach (string inputFileName in filesToZip) + { + System.Console.WriteLine("file: {0}", inputFileName); + + output.PutNextEntry(inputFileName); + using (var input = File.Open(inputFileName, FileMode.Open, FileAccess.Read, + FileShare.Read | FileShare.Write )) + { + byte[] buffer= new byte[2048]; + int n; + while ((n= input.Read(buffer,0,buffer.Length)) > 0) + { + output.Write(buffer,0,n); + } + } + } + } + } + + + + Private Sub Zipup() + Dim outputFileName As String = "XmlData.zip" + Dim filesToZip As String() = Directory.GetFiles(".", "*.xml") + If (filesToZip.Length = 0) Then + Console.WriteLine("Nothing to do.") + Else + Using output As ZipOutputStream = New ZipOutputStream(outputFileName) + output.Password = "VerySecret!" + output.Encryption = EncryptionAlgorithm.WinZipAes256 + Dim inputFileName As String + For Each inputFileName In filesToZip + Console.WriteLine("file: {0}", inputFileName) + output.PutNextEntry(inputFileName) + Using input As FileStream = File.Open(inputFileName, FileMode.Open, FileAccess.Read, FileShare.ReadWrite) + Dim n As Integer + Dim buffer As Byte() = New Byte(2048) {} + Do While (n = input.Read(buffer, 0, buffer.Length) > 0) + output.Write(buffer, 0, n) + Loop + End Using + Next + End Using + End If + End Sub + + + + + + Create a ZipOutputStream. + + + + See the documentation for the ZipOutputStream(Stream) + constructor for an example. + + + + The stream to wrap. It must be writable. + + + + true if the application would like the stream + to remain open after the ZipOutputStream has been closed. + + + + Provides a string representation of the instance. + + + This can be useful for debugging purposes. + + + a string representation of the instance. + + + + Sets the password to be used on the ZipOutputStream instance. + + + + + + When writing a zip archive, this password is applied to the entries, not + to the zip archive itself. It applies to any ZipEntry subsequently + written to the ZipOutputStream. + + + + Using a password does not encrypt or protect the "directory" of the + archive - the list of entries contained in the archive. If you set the + Password property, the password actually applies to individual + entries that are added to the archive, subsequent to the setting of this + property. The list of filenames in the archive that is eventually created + will appear in clear text, but the contents of the individual files are + encrypted. This is how Zip encryption works. + + + + If you set this property, and then add a set of entries to the archive via + calls to PutNextEntry, then each entry is encrypted with that + password. You may also want to change the password between adding + different entries. If you set the password, add an entry, then set the + password to null (Nothing in VB), and add another entry, the + first entry is encrypted and the second is not. + + + + When setting the Password, you may also want to explicitly set the property, to specify how to encrypt the entries added + to the ZipFile. If you set the Password to a non-null value and do not + set , then PKZip 2.0 ("Weak") encryption is used. + This encryption is relatively weak but is very interoperable. If + you set the password to a null value (Nothing in VB), + Encryption is reset to None. + + + + Special case: if you wrap a ZipOutputStream around a non-seekable stream, + and use encryption, and emit an entry of zero bytes, the Close() or + PutNextEntry() following the entry will throw an exception. + + + + + + + The Encryption to use for entries added to the ZipOutputStream. + + + + + The specified Encryption is applied to the entries subsequently + written to the ZipOutputStream instance. + + + + If you set this to something other than + EncryptionAlgorithm.None, you will also need to set the + to a non-null, non-empty value in + order to actually get encryption on the entry. + + + + + ZipOutputStream.Password + ZipEntry.Encryption + + + + Size of the work buffer to use for the ZLIB codec during compression. + + + + Setting this may affect performance. For larger files, setting this to a + larger size may improve performance, but I'm not sure. Sorry, I don't + currently have good recommendations on how to set it. You can test it if + you like. + + + + + The compression strategy to use for all entries. + + + + Set the Strategy used by the ZLIB-compatible compressor, when compressing + data for the entries in the zip archive. Different compression strategies + work better on different sorts of data. The strategy parameter can affect + the compression ratio and the speed of compression but not the correctness + of the compresssion. For more information see . + + + + + The type of timestamp attached to the ZipEntry. + + + + Set this in order to specify the kind of timestamp that should be emitted + into the zip file for each entry. + + + + + Sets the compression level to be used for entries subsequently added to + the zip archive. + + + + + Varying the compression level used on entries can affect the + size-vs-speed tradeoff when compression and decompressing data streams + or files. + + + + As with some other properties on the ZipOutputStream class, like , and , + setting this property on a ZipOutputStream + instance will cause the specified CompressionLevel to be used on all + items that are subsequently added to the + ZipOutputStream instance. + + + + If you do not set this property, the default compression level is used, + which normally gives a good balance of compression efficiency and + compression speed. In some tests, using BestCompression can + double the time it takes to compress, while delivering just a small + increase in compression efficiency. This behavior will vary with the + type of data you compress. If you are in doubt, just leave this setting + alone, and accept the default. + + + + + + The compression method used on each entry added to the ZipOutputStream. + + + + + A comment attached to the zip archive. + + + + + + The application sets this property to specify a comment to be embedded + into the generated zip archive. + + + + According to PKWARE's + zip specification, the comment is not encrypted, even if there is a + password set on the zip file. + + + + The specification does not describe how to indicate the encoding used + on a comment string. Many "compliant" zip tools and libraries use + IBM437 as the code page for comments; DotNetZip, too, follows that + practice. On the other hand, there are situations where you want a + Comment to be encoded with something else, for example using code page + 950 "Big-5 Chinese". To fill that need, DotNetZip will encode the + comment following the same procedure it follows for encoding + filenames: (a) if is + Never, it uses the default encoding (IBM437). (b) if is Always, it always uses the + alternate encoding (). (c) if is AsNecessary, it uses the + alternate encoding only if the default encoding is not sufficient for + encoding the comment - in other words if decoding the result does not + produce the original string. This decision is taken at the time of + the call to ZipFile.Save(). + + + + + + + Specify whether to use ZIP64 extensions when saving a zip archive. + + + + + The default value for the property is . is + safest, in the sense that you will not get an Exception if a + pre-ZIP64 limit is exceeded. + + + + You must set this property before calling Write(). + + + + + + + Indicates whether ZIP64 extensions were used when saving the zip archive. + + + + The value is defined only after the ZipOutputStream has been closed. + + + + + Whether the ZipOutputStream should use case-insensitive comparisons when + checking for uniqueness of zip entries. + + + + + Though the zip specification doesn't prohibit zipfiles with duplicate + entries, Sane zip files have no duplicates, and the DotNetZip library + cannot create zip files with duplicate entries. If an application attempts + to call with a name that duplicates one + already used within the archive, the library will throw an Exception. + + + This property allows the application to specify whether the + ZipOutputStream instance considers ordinal case when checking for + uniqueness of zip entries. + + + + + + Indicates whether to encode entry filenames and entry comments using + Unicode (UTF-8). + + + + + The + PKWare zip specification provides for encoding file names and file + comments in either the IBM437 code page, or in UTF-8. This flag selects + the encoding according to that specification. By default, this flag is + false, and filenames and comments are encoded into the zip file in the + IBM437 codepage. Setting this flag to true will specify that filenames + and comments that cannot be encoded with IBM437 will be encoded with + UTF-8. + + + + Zip files created with strict adherence to the PKWare specification with + respect to UTF-8 encoding can contain entries with filenames containing + any combination of Unicode characters, including the full range of + characters from Chinese, Latin, Hebrew, Greek, Cyrillic, and many other + alphabets. However, because at this time, the UTF-8 portion of the PKWare + specification is not broadly supported by other zip libraries and + utilities, such zip files may not be readable by your favorite zip tool or + archiver. In other words, interoperability will decrease if you set this + flag to true. + + + + In particular, Zip files created with strict adherence to the PKWare + specification with respect to UTF-8 encoding will not work well with + Explorer in Windows XP or Windows Vista, because Windows compressed + folders, as far as I know, do not support UTF-8 in zip files. Vista can + read the zip files, but shows the filenames incorrectly. Unpacking from + Windows Vista Explorer will result in filenames that have rubbish + characters in place of the high-order UTF-8 bytes. + + + + Also, zip files that use UTF-8 encoding will not work well with Java + applications that use the java.util.zip classes, as of v5.0 of the Java + runtime. The Java runtime does not correctly implement the PKWare + specification in this regard. + + + + As a result, we have the unfortunate situation that "correct" behavior by + the DotNetZip library with regard to Unicode encoding of filenames during + zip creation will result in zip files that are readable by strictly + compliant and current tools (for example the most recent release of the + commercial WinZip tool); but these zip files will not be readable by + various other tools or libraries, including Windows Explorer. + + + + The DotNetZip library can read and write zip files with UTF8-encoded + entries, according to the PKware spec. If you use DotNetZip for both + creating and reading the zip file, and you use UTF-8, there will be no + loss of information in the filenames. For example, using a self-extractor + created by this library will allow you to unpack files correctly with no + loss of information in the filenames. + + + + If you do not set this flag, it will remain false. If this flag is false, + the ZipOutputStream will encode all filenames and comments using + the IBM437 codepage. This can cause "loss of information" on some + filenames, but the resulting zipfile will be more interoperable with other + utilities. As an example of the loss of information, diacritics can be + lost. The o-tilde character will be down-coded to plain o. The c with a + cedilla (Unicode 0xE7) used in Portugese will be downcoded to a c. + Likewise, the O-stroke character (Unicode 248), used in Danish and + Norwegian, will be down-coded to plain o. Chinese characters cannot be + represented in codepage IBM437; when using the default encoding, Chinese + characters in filenames will be represented as ?. These are all examples + of "information loss". + + + + The loss of information associated to the use of the IBM437 encoding is + inconvenient, and can also lead to runtime errors. For example, using + IBM437, any sequence of 4 Chinese characters will be encoded as ????. If + your application creates a ZipOutputStream, does not set the + encoding, then adds two files, each with names of four Chinese characters + each, this will result in a duplicate filename exception. In the case + where you add a single file with a name containing four Chinese + characters, the zipfile will save properly, but extracting that file + later, with any zip tool, will result in an error, because the question + mark is not legal for use within filenames on Windows. These are just a + few examples of the problems associated to loss of information. + + + + This flag is independent of the encoding of the content within the entries + in the zip file. Think of the zip file as a container - it supports an + encoding. Within the container are other "containers" - the file entries + themselves. The encoding within those entries is independent of the + encoding of the zip archive container for those entries. + + + + Rather than specify the encoding in a binary fashion using this flag, an + application can specify an arbitrary encoding via the property. Setting the encoding + explicitly when creating zip archives will result in non-compliant zip + files that, curiously, are fairly interoperable. The challenge is, the + PKWare specification does not provide for a way to specify that an entry + in a zip archive uses a code page that is neither IBM437 nor UTF-8. + Therefore if you set the encoding explicitly when creating a zip archive, + you must take care upon reading the zip archive to use the same code page. + If you get it wrong, the behavior is undefined and may result in incorrect + filenames, exceptions, stomach upset, hair loss, and acne. + + + + + + + The text encoding to use when emitting entries into the zip archive, for + those entries whose filenames or comments cannot be encoded with the + default (IBM437) encoding. + + + + + In its + zip specification, PKWare describes two options for encoding + filenames and comments: using IBM437 or UTF-8. But, some archiving tools + or libraries do not follow the specification, and instead encode + characters using the system default code page. For example, WinRAR when + run on a machine in Shanghai may encode filenames with the Big-5 Chinese + (950) code page. This behavior is contrary to the Zip specification, but + it occurs anyway. + + + + When using DotNetZip to write zip archives that will be read by one of + these other archivers, set this property to specify the code page to use + when encoding the and for each ZipEntry in the zip file, for + values that cannot be encoded with the default codepage for zip files, + IBM437. This is why this property is "provisional". In all cases, IBM437 + is used where possible, in other words, where no loss of data would + result. It is possible, therefore, to have a given entry with a + Comment encoded in IBM437 and a FileName encoded with the + specified "provisional" codepage. + + + + Be aware that a zip file created after you've explicitly set the + ProvisionalAlternateEncoding property to a value other than + IBM437 may not be compliant to the PKWare specification, and may not be + readable by compliant archivers. On the other hand, many (most?) + archivers are non-compliant and can read zip files created in arbitrary + code pages. The trick is to use or specify the proper codepage when + reading the zip. + + + + When creating a zip archive using this library, it is possible to change + the value of ProvisionalAlternateEncoding between each entry you + add, and between adding entries and the call to Close(). Don't do + this. It will likely result in a zipfile that is not readable. For best + interoperability, either leave ProvisionalAlternateEncoding + alone, or specify it only once, before adding any entries to the + ZipOutputStream instance. There is one exception to this + recommendation, described later. + + + + When using an arbitrary, non-UTF8 code page for encoding, there is no + standard way for the creator application - whether DotNetZip, WinZip, + WinRar, or something else - to formally specify in the zip file which + codepage has been used for the entries. As a result, readers of zip files + are not able to inspect the zip file and determine the codepage that was + used for the entries contained within it. It is left to the application + or user to determine the necessary codepage when reading zip files encoded + this way. If you use an incorrect codepage when reading a zipfile, you + will get entries with filenames that are incorrect, and the incorrect + filenames may even contain characters that are not legal for use within + filenames in Windows. Extracting entries with illegal characters in the + filenames will lead to exceptions. It's too bad, but this is just the way + things are with code pages in zip files. Caveat Emptor. + + + + One possible approach for specifying the code page for a given zip file is + to describe the code page in a human-readable form in the Zip comment. For + example, the comment may read "Entries in this archive are encoded in the + Big5 code page". For maximum interoperability, the zip comment in this + case should be encoded in the default, IBM437 code page. In this case, + the zip comment is encoded using a different page than the filenames. To + do this, Specify ProvisionalAlternateEncoding to your desired + region-specific code page, once before adding any entries, and then set + the property and reset + ProvisionalAlternateEncoding to IBM437 before calling Close(). + + + + + + A Text Encoding to use when encoding the filenames and comments for + all the ZipEntry items, during a ZipFile.Save() operation. + + + + Whether the encoding specified here is used during the save depends + on . + + + + + + A flag that tells if and when this instance should apply + AlternateEncoding to encode the filenames and comments associated to + of ZipEntry objects contained within this instance. + + + + + The default text encoding used in zip archives. It is numeric 437, also + known as IBM437. + + + + + + The size threshold for an entry, above which a parallel deflate is used. + + + + + + DotNetZip will use multiple threads to compress any ZipEntry, when + the CompressionMethod is Deflate, and if the entry is + larger than the given size. Zero means "always use parallel + deflate", while -1 means "never use parallel deflate". + + + + If the entry size cannot be known before compression, as with any entry + added via a ZipOutputStream, then Parallel deflate will never be + performed, unless the value of this property is zero. + + + + A parallel deflate operations will speed up the compression of + large files, on computers with multiple CPUs or multiple CPU + cores. For files above 1mb, on a dual core or dual-cpu (2p) + machine, the time required to compress the file can be 70% of the + single-threaded deflate. For very large files on 4p machines the + compression can be done in 30% of the normal time. The downside + is that parallel deflate consumes extra memory during the deflate, + and the deflation is slightly less effective. + + + + Parallel deflate tends to not be as effective as single-threaded deflate + because the original data stream is split into multiple independent + buffers, each of which is compressed in parallel. But because they are + treated independently, there is no opportunity to share compression + dictionaries, and additional framing bytes must be added to the output + stream. For that reason, a deflated stream may be slightly larger when + compressed using parallel deflate, as compared to a traditional + single-threaded deflate. For files of about 512k, the increase over the + normal deflate is as much as 5% of the total compressed size. For larger + files, the difference can be as small as 0.1%. + + + + Multi-threaded compression does not give as much an advantage when using + Encryption. This is primarily because encryption tends to slow down + the entire pipeline. Also, multi-threaded compression gives less of an + advantage when using lower compression levels, for example . You may have to perform + some tests to determine the best approach for your situation. + + + + The default value for this property is -1, which means parallel + compression will not be performed unless you set it to zero. + + + + + + + The maximum number of buffer pairs to use when performing + parallel compression. + + + + + This property sets an upper limit on the number of memory + buffer pairs to create when performing parallel + compression. The implementation of the parallel + compression stream allocates multiple buffers to + facilitate parallel compression. As each buffer fills up, + the stream uses + ThreadPool.QueueUserWorkItem() to compress those + buffers in a background threadpool thread. After a buffer + is compressed, it is re-ordered and written to the output + stream. + + + + A higher number of buffer pairs enables a higher degree of + parallelism, which tends to increase the speed of compression on + multi-cpu computers. On the other hand, a higher number of buffer + pairs also implies a larger memory consumption, more active worker + threads, and a higher cpu utilization for any compression. This + property enables the application to limit its memory consumption and + CPU utilization behavior depending on requirements. + + + + For each compression "task" that occurs in parallel, there are 2 + buffers allocated: one for input and one for output. This property + sets a limit for the number of pairs. The total amount of storage + space allocated for buffering will then be (N*S*2), where N is the + number of buffer pairs, S is the size of each buffer (). By default, DotNetZip allocates 4 buffer + pairs per CPU core, so if your machine has 4 cores, and you retain + the default buffer size of 128k, then the + ParallelDeflateOutputStream will use 4 * 4 * 2 * 128kb of buffer + memory in total, or 4mb, in blocks of 128kb. If you then set this + property to 8, then the number will be 8 * 2 * 128kb of buffer + memory, or 2mb. + + + + CPU utilization will also go up with additional buffers, because a + larger number of buffer pairs allows a larger number of background + threads to compress in parallel. If you find that parallel + compression is consuming too much memory or CPU, you can adjust this + value downward. + + + + The default value is 16. Different values may deliver better or + worse results, depending on your priorities and the dynamic + performance characteristics of your storage and compute resources. + + + + This property is not the number of buffer pairs to use; it is an + upper limit. An illustration: Suppose you have an application that + uses the default value of this property (which is 16), and it runs + on a machine with 2 CPU cores. In that case, DotNetZip will allocate + 4 buffer pairs per CPU core, for a total of 8 pairs. The upper + limit specified by this property has no effect. + + + + The application can set this value at any time, but it is + effective only if set before calling + ZipOutputStream.Write() for the first time. + + + + + + + + + Returns true if an entry by the given name has already been written + to the ZipOutputStream. + + + + The name of the entry to scan for. + + + + true if an entry by the given name has already been written. + + + + + Write the data from the buffer to the stream. + + + + As the application writes data into this stream, the data may be + compressed and encrypted before being written out to the underlying + stream, depending on the settings of the + and the properties. + + + The buffer holding data to write to the stream. + the offset within that data array to find the first byte to write. + the number of bytes to write. + + + + Specify the name of the next entry that will be written to the zip file. + + + + + Call this method just before calling , to + specify the name of the entry that the next set of bytes written to + the ZipOutputStream belongs to. All subsequent calls to Write, + until the next call to PutNextEntry, + will be inserted into the named entry in the zip file. + + + + If the used in PutNextEntry() ends in + a slash, then the entry added is marked as a directory. Because directory + entries do not contain data, a call to Write(), before an + intervening additional call to PutNextEntry(), will throw an + exception. + + + + If you don't call Write() between two calls to + PutNextEntry(), the first entry is inserted into the zip file as a + file of zero size. This may be what you want. + + + + Because PutNextEntry() closes out the prior entry, if any, this + method may throw if there is a problem with the prior entry. + + + + This method returns the ZipEntry. You can modify public properties + on the ZipEntry, such as , , and so on, until the first call to + ZipOutputStream.Write(), or until the next call to + PutNextEntry(). If you modify the ZipEntry after + having called Write(), you may get a runtime exception, or you may + silently get an invalid zip archive. + + + + + + + This example shows how to create a zip file, using the + ZipOutputStream class. + + + private void Zipup() + { + using (FileStream fs raw = File.Open(_outputFileName, FileMode.Create, FileAccess.ReadWrite )) + { + using (var output= new ZipOutputStream(fs)) + { + output.Password = "VerySecret!"; + output.Encryption = EncryptionAlgorithm.WinZipAes256; + output.PutNextEntry("entry1.txt"); + byte[] buffer= System.Text.Encoding.ASCII.GetBytes("This is the content for entry #1."); + output.Write(buffer,0,buffer.Length); + output.PutNextEntry("entry2.txt"); // this will be zero length + output.PutNextEntry("entry3.txt"); + buffer= System.Text.Encoding.ASCII.GetBytes("This is the content for entry #3."); + output.Write(buffer,0,buffer.Length); + } + } + } + + + + + The name of the entry to be added, including any path to be used + within the zip file. + + + + The ZipEntry created. + + + + + + Dispose the stream + + + + + This method writes the Zip Central directory, then closes the stream. The + application must call Dispose() (or Close) in order to produce a valid zip file. + + + + Typically the application will call Dispose() implicitly, via a using + statement in C#, or a Using statement in VB. + + + + + set this to true, always. + + + + Always returns false. + + + + + Always returns false. + + + + + Always returns true. + + + + + Always returns a NotSupportedException. + + + + + Setting this property always returns a NotSupportedException. Getting it + returns the value of the Position on the underlying stream. + + + + + This is a no-op. + + + + + This method always throws a NotSupportedException. + + ignored + ignored + ignored + nothing + + + + This method always throws a NotSupportedException. + + ignored + ignored + nothing + + + + This method always throws a NotSupportedException. + + ignored + + + + Sort-of like a factory method, ForUpdate is used only when + the application needs to update the zip entry metadata for + a segmented zip file, when the starting segment is earlier + than the ending segment, for a particular entry. + + + + The update is always contiguous, never rolls over. As a + result, this method doesn't need to return a ZSS; it can + simply return a FileStream. That's why it's "sort of" + like a Factory method. + + + Caller must Close/Dispose the stream object returned by + this method. + + + + + + Name of the filesystem file corresponding to the current segment. + + + + The name is not always the name currently being used in the + filesystem. When rwMode is RwMode.Write, the filesystem file has a + temporary name until the stream is closed or until the next segment is + started. + + + + + + Read from the stream + + the buffer to read + the offset at which to start + the number of bytes to read + the number of bytes actually read + + + + Write to the stream. + + the buffer from which to write + the offset at which to start writing + the number of bytes to write + + + + Enumerates the options for a logical conjunction. This enum is intended for use + internally by the FileSelector class. + + + + + FileSelector encapsulates logic that selects files from a source - a zip file + or the filesystem - based on a set of criteria. This class is used internally + by the DotNetZip library, in particular for the AddSelectedFiles() methods. + This class can also be used independently of the zip capability in DotNetZip. + + + + + + The FileSelector class is used internally by the ZipFile class for selecting + files for inclusion into the ZipFile, when the method, or one of + its overloads, is called. It's also used for the methods. Typically, an + application that creates or manipulates Zip archives will not directly + interact with the FileSelector class. + + + + Some applications may wish to use the FileSelector class directly, to + select files from disk volumes based on a set of criteria, without creating or + querying Zip archives. The file selection criteria include: a pattern to + match the filename; the last modified, created, or last accessed time of the + file; the size of the file; and the attributes of the file. + + + + Consult the documentation for + for more information on specifying the selection criteria. + + + + + + + Constructor that allows the caller to specify file selection criteria. + + + + + This constructor allows the caller to specify a set of criteria for + selection of files. + + + + See for a description of + the syntax of the selectionCriteria string. + + + + By default the FileSelector will traverse NTFS Reparse Points. To + change this, use FileSelector(String, bool). + + + + The criteria for file selection. + + + + Constructor that allows the caller to specify file selection criteria. + + + + + This constructor allows the caller to specify a set of criteria for + selection of files. + + + + See for a description of + the syntax of the selectionCriteria string. + + + + The criteria for file selection. + + whether to traverse NTFS reparse points (junctions). + + + + + The string specifying which files to include when retrieving. + + + + + Specify the criteria in statements of 3 elements: a noun, an operator, + and a value. Consider the string "name != *.doc" . The noun is + "name". The operator is "!=", implying "Not Equal". The value is + "*.doc". That criterion, in English, says "all files with a name that + does not end in the .doc extension." + + + + Supported nouns include "name" (or "filename") for the filename; + "atime", "mtime", and "ctime" for last access time, last modfied time, + and created time of the file, respectively; "attributes" (or "attrs") + for the file attributes; "size" (or "length") for the file length + (uncompressed); and "type" for the type of object, either a file or a + directory. The "attributes", "type", and "name" nouns all support = + and != as operators. The "size", "atime", "mtime", and "ctime" nouns + support = and !=, and >, >=, <, <= as well. The times are + taken to be expressed in local time. + + + + Specify values for the file attributes as a string with one or more of + the characters H,R,S,A,I,L in any order, implying file attributes of + Hidden, ReadOnly, System, Archive, NotContextIndexed, and ReparsePoint + (symbolic link) respectively. + + + + To specify a time, use YYYY-MM-DD-HH:mm:ss or YYYY/MM/DD-HH:mm:ss as + the format. If you omit the HH:mm:ss portion, it is assumed to be + 00:00:00 (midnight). + + + + The value for a size criterion is expressed in integer quantities of + bytes, kilobytes (use k or kb after the number), megabytes (m or mb), + or gigabytes (g or gb). + + + + The value for a name is a pattern to match against the filename, + potentially including wildcards. The pattern follows CMD.exe glob + rules: * implies one or more of any character, while ? implies one + character. If the name pattern contains any slashes, it is matched to + the entire filename, including the path; otherwise, it is matched + against only the filename without the path. This means a pattern of + "*\*.*" matches all files one directory level deep, while a pattern of + "*.*" matches all files in all directories. + + + + To specify a name pattern that includes spaces, use single quotes + around the pattern. A pattern of "'* *.*'" will match all files that + have spaces in the filename. The full criteria string for that would + be "name = '* *.*'" . + + + + The value for a type criterion is either F (implying a file) or D + (implying a directory). + + + + Some examples: + + + + + criteria + Files retrieved + + + + name != *.xls + any file with an extension that is not .xls + + + + + name = *.mp3 + any file with a .mp3 extension. + + + + + *.mp3 + (same as above) any file with a .mp3 extension. + + + + + attributes = A + all files whose attributes include the Archive bit. + + + + + attributes != H + all files whose attributes do not include the Hidden bit. + + + + + mtime > 2009-01-01 + all files with a last modified time after January 1st, 2009. + + + + + ctime > 2009/01/01-03:00:00 + all files with a created time after 3am (local time), + on January 1st, 2009. + + + + + size > 2gb + all files whose uncompressed size is greater than 2gb. + + + + + type = D + all directories in the filesystem. + + + + + + You can combine criteria with the conjunctions AND, OR, and XOR. Using + a string like "name = *.txt AND size >= 100k" for the + selectionCriteria retrieves entries whose names end in .txt, and whose + uncompressed size is greater than or equal to 100 kilobytes. + + + + For more complex combinations of criteria, you can use parenthesis to + group clauses in the boolean logic. Absent parenthesis, the + precedence of the criterion atoms is determined by order of + appearance. Unlike the C# language, the AND conjunction does not take + precendence over the logical OR. This is important only in strings + that contain 3 or more criterion atoms. In other words, "name = *.txt + and size > 1000 or attributes = H" implies "((name = *.txt AND size + > 1000) OR attributes = H)" while "attributes = H OR name = *.txt + and size > 1000" evaluates to "((attributes = H OR name = *.txt) + AND size > 1000)". When in doubt, use parenthesis. + + + + Using time properties requires some extra care. If you want to + retrieve all entries that were last updated on 2009 February 14, + specify "mtime >= 2009-02-14 AND mtime < 2009-02-15". Read this + to say: all files updated after 12:00am on February 14th, until + 12:00am on February 15th. You can use the same bracketing approach to + specify any time period - a year, a month, a week, and so on. + + + + The syntax allows one special case: if you provide a string with no + spaces, it is treated as a pattern to match for the filename. + Therefore a string like "*.xls" will be equivalent to specifying "name + = *.xls". This "shorthand" notation does not work with compound + criteria. + + + + There is no logic in this class that insures that the inclusion + criteria are internally consistent. For example, it's possible to + specify criteria that says the file must have a size of less than 100 + bytes, as well as a size that is greater than 1000 bytes. Obviously + no file will ever satisfy such criteria, but this class does not check + for or detect such inconsistencies. + + + + + + Thrown in the setter if the value has an invalid syntax. + + + + + Indicates whether searches will traverse NTFS reparse points, like Junctions. + + + + + Returns a string representation of the FileSelector object. + + The string representation of the boolean logic statement of the file + selection criteria for this instance. + + + + Returns the names of the files in the specified directory + that fit the selection criteria specified in the FileSelector. + + + + This is equivalent to calling + with recurseDirectories = false. + + + + The name of the directory over which to apply the FileSelector + criteria. + + + + A collection of strings containing fully-qualified pathnames of files + that match the criteria specified in the FileSelector instance. + + + + + Returns the names of the files in the specified directory that fit the + selection criteria specified in the FileSelector, optionally recursing + through subdirectories. + + + + This method applies the file selection criteria contained in the + FileSelector to the files contained in the given directory, and + returns the names of files that conform to the criteria. + + + + The name of the directory over which to apply the FileSelector + criteria. + + + + Whether to recurse through subdirectories when applying the file + selection criteria. + + + + A collection of strings containing fully-qualified pathnames of files + that match the criteria specified in the FileSelector instance. + + + + + Retrieve the ZipEntry items in the ZipFile that conform to the specified criteria. + + + + + This method applies the criteria set in the FileSelector instance (as described in + the ) to the specified ZipFile. Using this + method, for example, you can retrieve all entries from the given ZipFile that + have filenames ending in .txt. + + + + Normally, applications would not call this method directly. This method is used + by the ZipFile class. + + + + Using the appropriate SelectionCriteria, you can retrieve entries based on size, + time, and attributes. See for a + description of the syntax of the SelectionCriteria string. + + + + + The ZipFile from which to retrieve entries. + + a collection of ZipEntry objects that conform to the criteria. + + + + Retrieve the ZipEntry items in the ZipFile that conform to the specified criteria. + + + + + This method applies the criteria set in the FileSelector instance (as described in + the ) to the specified ZipFile. Using this + method, for example, you can retrieve all entries from the given ZipFile that + have filenames ending in .txt. + + + + Normally, applications would not call this method directly. This method is used + by the ZipFile class. + + + + This overload allows the selection of ZipEntry instances from the ZipFile to be restricted + to entries contained within a particular directory in the ZipFile. + + + + Using the appropriate SelectionCriteria, you can retrieve entries based on size, + time, and attributes. See for a + description of the syntax of the SelectionCriteria string. + + + + + The ZipFile from which to retrieve entries. + + + the directory in the archive from which to select entries. If null, then + all directories in the archive are used. + + + a collection of ZipEntry objects that conform to the criteria. + + + + Summary description for EnumUtil. + + + + + Returns the value of the DescriptionAttribute if the specified Enum + value has one. If not, returns the ToString() representation of the + Enum value. + + The Enum to get the description for + + + + + Converts the string representation of the name or numeric value of one + or more enumerated constants to an equivalent enumerated object. + Note: use the DescriptionAttribute on enum values to enable this. + + The System.Type of the enumeration. + + A string containing the name or value to convert. + + + + + + Converts the string representation of the name or numeric value of one + or more enumerated constants to an equivalent enumerated object. A + parameter specified whether the operation is case-sensitive. Note: + use the DescriptionAttribute on enum values to enable this. + + The System.Type of the enumeration. + + A string containing the name or value to convert. + + + Whether the operation is case-sensitive or not. + + +
+
diff --git a/Packages/HtmlAgilityPack.1.9.2/.signature.p7s b/Packages/HtmlAgilityPack.1.9.2/.signature.p7s new file mode 100644 index 0000000..516e5c1 Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/.signature.p7s differ diff --git a/Packages/HtmlAgilityPack.1.9.2/HtmlAgilityPack.1.9.2.nupkg b/Packages/HtmlAgilityPack.1.9.2/HtmlAgilityPack.1.9.2.nupkg new file mode 100644 index 0000000..34f1c5b Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/HtmlAgilityPack.1.9.2.nupkg differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/Net20/HtmlAgilityPack.dll b/Packages/HtmlAgilityPack.1.9.2/lib/Net20/HtmlAgilityPack.dll new file mode 100644 index 0000000..6b7f8de Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/Net20/HtmlAgilityPack.dll differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/Net20/HtmlAgilityPack.pdb b/Packages/HtmlAgilityPack.1.9.2/lib/Net20/HtmlAgilityPack.pdb new file mode 100644 index 0000000..70cf218 Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/Net20/HtmlAgilityPack.pdb differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/Net20/HtmlAgilityPack.xml b/Packages/HtmlAgilityPack.1.9.2/lib/Net20/HtmlAgilityPack.xml new file mode 100644 index 0000000..1b4cbce --- /dev/null +++ b/Packages/HtmlAgilityPack.1.9.2/lib/Net20/HtmlAgilityPack.xml @@ -0,0 +1,2834 @@ + + + + HtmlAgilityPack + + + + + A utility class to compute CRC32. + + + + + Compute a checksum for a given array of bytes. + + The array of bytes to compute the checksum for. + The computed checksum. + + + + Compute a checksum for a given string. + + The string to compute the checksum for. + The computed checksum. + + + + Represents an HTML attribute. + + + + + Gets the line number of this attribute in the document. + + + + + Gets the column number of this attribute in the document. + + + + + Gets the stream position of the value of this attribute in the document, relative to the start of the document. + + + + + Gets the length of the value. + + + + + Gets the qualified name of the attribute. + + + + + Name of attribute with original case + + + + + Gets the HTML document to which this attribute belongs. + + + + + Gets the HTML node to which this attribute belongs. + + + + + Specifies what type of quote the data should be wrapped in + + + + + Gets the stream position of this attribute in the document, relative to the start of the document. + + + + + Gets or sets the value of the attribute. + + + + + Gets the DeEntitized value of the attribute. + + + + + Gets a valid XPath string that points to this Attribute + + + + + Compares the current instance with another attribute. Comparison is based on attributes' name. + + An attribute to compare with this instance. + A 32-bit signed integer that indicates the relative order of the names comparison. + + + + Creates a duplicate of this attribute. + + The cloned attribute. + + + + Removes this attribute from it's parents collection + + + + + An Enum representing different types of Quotes used for surrounding attribute values + + + + + A single quote mark ' + + + + + A double quote mark " + + + + + Represents a combined list and collection of HTML nodes. + + + + + Gets the number of elements actually contained in the list. + + + + + Gets readonly status of colelction + + + + + Gets the attribute at the specified index. + + + + + Gets a given attribute from the list using its name. + + + + + Adds supplied item to collection + + + + + + Explicit clear + + + + + Retreives existence of supplied item + + + + + + + Copies collection to array + + + + + + + Get Explicit enumerator + + + + + + Explicit non-generic enumerator + + + + + + Retrieves the index for the supplied item, -1 if not found + + + + + + + Inserts given item into collection at supplied index + + + + + + + Explicit collection remove + + + + + + + Removes the attribute at the specified index. + + The index of the attribute to remove. + + + + Adds a new attribute to the collection with the given values + + + + + + + Inserts the specified attribute as the last attribute in the collection. + + The attribute to insert. May not be null. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The value of the attribute to insert. + The appended attribute. + + + + Checks for existance of attribute with given name + + + + + + + Inserts the specified attribute as the first node in the collection. + + The attribute to insert. May not be null. + The prepended attribute. + + + + Removes a given attribute from the list. + + The attribute to remove. May not be null. + + + + Removes an attribute from the list, using its name. If there are more than one attributes with this name, they will all be removed. + + The attribute's name. May not be null. + + + + Remove all attributes in the list. + + + + + Returns all attributes with specified name. Handles case insentivity + + Name of the attribute + + + + + Removes all attributes from the collection + + + + + Clears the attribute collection + + + + + Represents an HTML comment. + + + + + Gets or Sets the comment text of the node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Represents a complete HTML document. + + + + True to disable, false to enable the behavaior tag p. + + + Default builder to use in the HtmlDocument constructor + + + Action to execute before the Parse is executed + + + + Defines the max level we would go deep into the html document + + + + The HtmlDocument Text. Careful if you modify it. + + + True to stay backward compatible with previous version of HAP. This option does not guarantee 100% compatibility. + + + + Adds Debugging attributes to node. Default is false. + + + + + Defines if closing for non closed nodes must be done at the end or directly in the document. + Setting this to true can actually change how browsers render the page. Default is false. + + + + + Defines if non closed nodes will be checked at the end of parsing. Default is true. + + + + + Defines if a checksum must be computed for the document while parsing. Default is false. + + + + + Defines if SelectNodes method will return null or empty collection when no node matched the XPath expression. + Setting this to true will return empty collection and false will return null. Default is false. + + + + True to disable, false to enable the server side code. + + + + Defines the default stream encoding to use. Default is System.Text.Encoding.Default. + + + + + Defines if source text must be extracted while parsing errors. + If the document has a lot of errors, or cascading errors, parsing performance can be dramatically affected if set to true. + Default is false. + + + + + Defines the maximum length of source text or parse errors. Default is 100. + + + + + Defines if LI, TR, TH, TD tags must be partially fixed when nesting errors are detected. Default is false. + + + + + Defines if output must conform to XML, instead of HTML. Default is false. + + + + + If used together with and enabled, Xml namespaces in element names are preserved. Default is false. + + + + + Defines if attribute value output must be optimized (not bound with double quotes if it is possible). Default is false. + + + + + Defines if name must be output with it's original case. Useful for asp.net tags and attributes. Default is false. + + + + + Defines if name must be output in uppercase. Default is false. + + + + + Defines if declared encoding must be read from the document. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node. + Default is true. + + + + + Defines the name of a node that will throw the StopperNodeException when found as an end node. Default is null. + + + + + Defines if the 'id' attribute must be specifically used. Default is true. + + + + + Defines if empty nodes must be written as closed during output. Default is false. + + + + + Creates an instance of an HTML document. + + + + Gets the parsed text. + The parsed text. + + + + Defines the max level we would go deep into the html document. If this depth level is exceeded, and exception is + thrown. + + + + + Gets the document CRC32 checksum if OptionComputeChecksum was set to true before parsing, 0 otherwise. + + + + + Gets the document's declared encoding. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node (pre-HTML5) or the meta charset="XXXXX" html node (HTML5). + + + + + Gets the root node of the document. + + + + + Gets the document's output encoding. + + + + + Gets a list of parse errors found in the document. + + + + + Gets the remaining text. + Will always be null if OptionStopperNodeName is null. + + + + + Gets the offset of Remainder in the original Html text. + If OptionStopperNodeName is null, this will return the length of the original Html text. + + + + + Gets the document's stream encoding. + + + + + Gets a valid XML name. + + Any text. + A string that is a valid XML name. + + + + Applies HTML encoding to a specified string. + + The input string to encode. May not be null. + The encoded string. + + + + Determines if the specified character is considered as a whitespace character. + + The character to check. + true if if the specified character is considered as a whitespace character. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The new HTML attribute. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The value of the attribute. + The new HTML attribute. + + + + Creates an HTML comment node. + + The new HTML comment node. + + + + Creates an HTML comment node with the specified comment text. + + The comment text. May not be null. + The new HTML comment node. + + + + Creates an HTML element node with the specified name. + + The qualified name of the element. May not be null. + The new HTML node. + + + + Creates an HTML text node. + + The new HTML text node. + + + + Creates an HTML text node with the specified text. + + The text of the node. May not be null. + The new HTML text node. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The html is checked. + The detected encoding. + + + + Detects the encoding of an HTML text provided on a TextReader. + + The TextReader used to feed the HTML. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML text. + + The input html text. May not be null. + The detected encoding. + + + + Gets the HTML node with the specified 'id' attribute value. + + The attribute id to match. May not be null. + The HTML node with the matching id or null if not found. + + + + Loads an HTML document from a stream. + + The input stream. + + + + Loads an HTML document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + The minimum buffer size. + + + + Loads the HTML document from the specified TextReader. + + The TextReader used to feed the HTML data into the document. May not be null. + + + + Loads the HTML document from the specified string. + + String containing the HTML document to load. May not be null. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. May not be null. + The character encoding to use. May not be null. + + + + Saves the HTML document to the specified StreamWriter. + + The StreamWriter to which you want to save. + + + + Saves the HTML document to the specified TextWriter. + + The TextWriter to which you want to save. May not be null. + + + + Saves the HTML document to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Detects the encoding of an HTML document from a file first, and then loads the file. + + The complete file path to be read. + + + + Detects the encoding of an HTML document from a file first, and then loads the file. + + The complete file path to be read. May not be null. + true to detect encoding, false otherwise. + + + + Detects the encoding of an HTML file. + + Path for the file containing the HTML document to detect. May not be null. + The detected encoding. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. May not be null. + The character encoding to use. May not be null. + + + + Creates a new XPathNavigator object for navigating this HTML document. + + An XPathNavigator object. The XPathNavigator is positioned on the root of the document. + + + + Flags that describe the behavior of an Element node. + + + + + The node is a CDATA node. + + + + + The node is empty. META or IMG are example of such nodes. + + + + + The node will automatically be closed during parsing. + + + + + The node can overlap. + + + + + A utility class to replace special characters by entities and vice-versa. + Follows HTML 4.0 specification found at http://www.w3.org/TR/html4/sgml/entities.html + Follows Additional specification found at https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references + See also: https://html.spec.whatwg.org/multipage/named-characters.html#named-character-references + + + + + A collection of entities indexed by name. + + + + + A collection of entities indexed by value. + + + + + Replace known entities by characters. + + The source text. + The result text. + + + + Clone and entitize an HtmlNode. This will affect attribute values and nodes' text. It will also entitize all child nodes. + + The node to entitize. + An entitized cloned node. + + + + Replace characters above 127 by entities. + + The source text. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + If set to true, the [quote], [ampersand], [lower than] and [greather than] characters will be entitized. + The result text + + + + Represents an HTML node. + + + + + Gets the name of a comment node. It is actually defined as '#comment'. + + + + + Gets the name of the document node. It is actually defined as '#document'. + + + + + Gets the name of a text node. It is actually defined as '#text'. + + + + + Gets a collection of flags that define specific behaviors for specific element nodes. + The table contains a DictionaryEntry list with the lowercase tag name as the Key, and a combination of HtmlElementFlags as the Value. + + + + + Initialize HtmlNode. Builds a list of all tags that have special allowances + + + + + Initializes HtmlNode, providing type, owner and where it exists in a collection + + + + + + + + Gets the collection of HTML attributes for this node. May not be null. + + + + + Gets all the children of the node. + + + + + Gets a value indicating if this node has been closed or not. + + + + + Gets the collection of HTML attributes for the closing tag. May not be null. + + + + + Gets the closing tag of the node, null if the node is self-closing. + + + + + Gets the first child of the node. + + + + + Gets a value indicating whether the current node has any attributes. + + + + + Gets a value indicating whether this node has any child nodes. + + + + + Gets a value indicating whether the current node has any attributes on the closing tag. + + + + + Gets or sets the value of the 'id' HTML attribute. The document must have been parsed using the OptionUseIdAttribute set to true. + + + + + Gets or Sets the HTML between the start and end tags of the object. + + + + + Gets or Sets the text between the start and end tags of the object. + + + + + Gets the last child of the node. + + + + + Gets the line number of this node in the document. + + + + + Gets the column number of this node in the document. + + + + + Gets the stream position of the area between the opening and closing tag of the node, relative to the start of the document. + + + + + Gets the length of the area between the opening and closing tag of the node. + + + + + Gets the length of the entire node, opening and closing tag included. + + + + + Gets or sets this node's name. + + + + + Gets the HTML node immediately following this element. + + + + + Gets the type of this node. + + + + + The original unaltered name of the tag + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets the to which this node belongs. + + + + + Gets the parent of this node (for nodes that can have parents). + + + + + Gets the node immediately preceding this node. + + + + + Gets the stream position of this node in the document, relative to the start of the document. + + + + + Gets a valid XPath string that points to this node + + + + + Determines if an element node can be kept overlapped. + + The name of the element node to check. May not be null. + true if the name is the name of an element node that can be kept overlapped, false otherwise. + + + + Creates an HTML node from a string representing literal HTML. + + The HTML text. + The newly created node instance. + + + + Determines if an element node is a CDATA element node. + + The name of the element node to check. May not be null. + true if the name is the name of a CDATA element node, false otherwise. + + + + Determines if an element node is closed. + + The name of the element node to check. May not be null. + true if the name is the name of a closed element node, false otherwise. + + + + Determines if an element node is defined as empty. + + The name of the element node to check. May not be null. + true if the name is the name of an empty element node, false otherwise. + + + + Determines if a text corresponds to the closing tag of an node that can be kept overlapped. + + The text to check. May not be null. + true or false. + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Get Ancestors with matching name + + + + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Gets all anscestor nodes and the current node + + + + + + + Adds the specified node to the end of the list of children of this node. + + The node to add. May not be null. + The node added. + + + Sets child nodes identifier. + The chil node. + + + + Adds the specified node to the end of the list of children of this node. + + The node list to add. May not be null. + + + + Gets all Attributes with name + + + + + + + Creates a duplicate of the node + + + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + The cloned node. + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node. + + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node and the subtree under it. + + The node to duplicate. May not be null. + + + + Creates a duplicate of the node. + + The node to duplicate. May not be null. + true to recursively clone the subtree under the specified node, false to clone only the node itself. + + + + Gets all Descendant nodes for this node and each of child nodes + + The depth level of the node to parse in the html tree + the current element as an HtmlNode + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Get all descendant nodes with matching name + + + + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all descendant nodes including this node + + + + + + + Gets first generation child node matching name + + + + + + + Gets matching first generation child nodes matching name + + + + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Inserts the specified node immediately after the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newNode is placed after the refNode. + The node being inserted. + + + + Inserts the specified node immediately before the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newChild is placed before this node. + The node being inserted. + + + + Adds the specified node to the beginning of the list of children of this node. + + The node to add. May not be null. + The node added. + + + + Adds the specified node list to the beginning of the list of children of this node. + + The node list to add. May not be null. + + + + Removes node from parent collection + + + + + Removes all the children and/or attributes of the current node. + + + + + Removes all the children of the current node. + + + + Removes all id for node described by node. + The node. + + + + Removes the specified child node. + + The node being removed. May not be null. + The node removed. + + + + Removes the specified child node. + + The node being removed. May not be null. + true to keep grand children of the node, false otherwise. + The node removed. + + + + Replaces the child node oldChild with newChild node. + + The new node to put in the child list. + The node being replaced in the list. + The node replaced. + + + + Helper method to set the value of an attribute of this node. If the attribute is not found, it will be created automatically. + + The name of the attribute to set. May not be null. + The value for the attribute. + The corresponding attribute instance. + + + + Saves all the children of the node to the specified TextWriter. + + The TextWriter to which you want to save. + Identifies the level we are in starting at root with 0 + + + + Saves all the children of the node to a string. + + The saved string. + + + + Saves the current node to the specified TextWriter. + + The TextWriter to which you want to save. + identifies the level we are in starting at root with 0 + + + + Saves the current node to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Saves the current node to a string. + + The saved string. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + true to throw Error if class name exists, false otherwise. + + + + Removes the class attribute from the node. + + + + + Removes the class attribute from the node. + + true to throw Error if class name doesn't exist, false otherwise. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + true to throw Error if class name doesn't exist, false otherwise. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + true to throw Error if class name doesn't exist, false otherwise. + + + Gets the CSS Class from the node. + + The CSS Class from the node + + + + Check if the node class has the parameter class. + The class. + True if node class has the parameter class, false if not. + + + + Fill an object and go through it's properties and fill them too. + + Type of object to want to fill. It should have atleast one property that defined XPath. + If htmlDocument includes data , leave this parameter null. Else pass your specific htmldocument. + Returns an object of type T including Encapsulated data. + + + + Fill an object and go through it's properties and fill them too. + + Type of object to want to fill. It should have atleast one property that defined XPath. + If htmlDocument includes data , leave this parameter null. Else pass your specific htmldocument. + Returns an object of type targetType including Encapsulated data. + + + + Creates a new XPathNavigator object for navigating this HTML node. + + An XPathNavigator object. The XPathNavigator is positioned on the node from which the method was called. It is not positioned on the root of the document. + + + + Creates an XPathNavigator using the root of this document. + + + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Selects the first XmlNode that matches the XPath expression. + + The XPath expression. May not be null. + The first that matches the XPath query or a null reference if no matching node was found. + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Includes tools that GetEncapsulatedData method uses them. + + + + + Determine if a type define an attribute or not , supporting both .NetStandard and .NetFramework2.0 + + Type you want to test it. + Attribute that type must have or not. + If true , The type parameter define attributeType parameter. + + + + Retrive properties of type that defined . + + Type that you want to find it's XPath-Defined properties. + IEnumerable of property infos of a type , that defined specific attribute. + + + + Determine if a has implemented BUT is considered as NONE-IEnumerable ! + + The property info you want to test. + True if property info is IEnumerable. + + + + Returns T type(first generic type) of or . + + IEnumerable-Implemented property + List of generic types. + + + + Find and Return a mehtod that defined in a class by it's name. + + Type of class include requested method. + Name of requested method as string. + Method info of requested method. + + + + Create of given type. + + Type that you want to make a List of it. + Returns IList of given type. + + + + Returns the part of value of you want as . + + A htmlNode instance. + Attribute that includes ReturnType + String that choosen from HtmlNode as result. + + + + Returns parts of values of you want as . + + that you want to retrive each value. + A instnce incules . + Type of IList generic you want. + + + + + Simulate Func method to use in Lambada Expression. + + + + + + + + + This method works like Where method in LINQ. + + + + + + + + + Check if the type can instantiated. + + + + + + + Returns count of elements stored in IEnumerable of T + + + + + + + + Specify which part of is requested. + + + + + Just mark and flag classes to show they have properties that defined . + + + + + Includes XPath and . XPath for finding html tags and for specify which part of you want to return. + + + + + Represents a combined list and collection of HTML nodes. + + + + + Initialize the HtmlNodeCollection with the base parent node + + The base node of the collection + + + + Gets a given node from the list. + + + + + Get node with tag name + + + + + + + Gets the number of elements actually contained in the list. + + + + + Is collection read only + + + + + Gets the node at the specified index. + + + + + Add node to the collection + + + + + + Add node to the collection + + + + + + + Clears out the collection of HtmlNodes. Removes each nodes reference to parentnode, nextnode and prevnode + + + + + Gets existence of node in collection + + + + + + + Copy collection to array + + + + + + + Get Enumerator + + + + + + Get Explicit Enumerator + + + + + + Get index of node + + + + + + + Insert node at index + + + + + + + Remove node + + + + + + + Remove at index + + + + + + Get first instance of node in supplied collection + + + + + + + + Add node to the end of the collection + + + + + + Get first instance of node with name + + + + + + + Get index of node + + + + + + + Add node to the beginning of the collection + + + + + + Remove node at index + + + + + + + Replace node at index + + + + + + + Get all node descended from this collection + + + + + + Get all node descended from this collection with matching name + + + + + + Gets all first generation elements in collection + + + + + + Gets all first generation elements matching name + + + + + + + All first generation nodes in collection + + + + + + Represents an HTML navigator on an HTML document seen as a data store. + + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + The minimum buffer size. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a TextReader. + + The TextReader used to feed the HTML data into the document. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + The character encoding to use. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Gets the base URI for the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the current HTML document. + + + + + Gets the current HTML node. + + + + + Gets a value indicating whether the current node has child nodes. + + + + + Gets a value indicating whether the current node has child nodes. + + + + + Gets a value indicating whether the current node is an empty element. + + + + + Gets the name of the current HTML node without the namespace prefix. + + + + + Gets the qualified name of the current node. + + + + + Gets the namespace URI (as defined in the W3C Namespace Specification) of the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the associated with this implementation. + + + + + Gets the type of the current node. + + + + + Gets the prefix associated with the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the text value of the current node. + + + + + Gets the xml:lang scope for the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Creates a new HtmlNavigator positioned at the same node as this HtmlNavigator. + + A new HtmlNavigator object positioned at the same node as the original HtmlNavigator. + + + + Gets the value of the HTML attribute with the specified LocalName and NamespaceURI. + + The local name of the HTML attribute. + The namespace URI of the attribute. Unsupported with the HtmlNavigator implementation. + The value of the specified HTML attribute. String.Empty or null if a matching attribute is not found or if the navigator is not positioned on an element node. + + + + Returns the value of the namespace node corresponding to the specified local name. + Always returns string.Empty for the HtmlNavigator implementation. + + The local name of the namespace node. + Always returns string.Empty for the HtmlNavigator implementation. + + + + Determines whether the current HtmlNavigator is at the same position as the specified HtmlNavigator. + + The HtmlNavigator that you want to compare against. + true if the two navigators have the same position, otherwise, false. + + + + Moves to the same position as the specified HtmlNavigator. + + The HtmlNavigator positioned on the node that you want to move to. + true if successful, otherwise false. If false, the position of the navigator is unchanged. + + + + Moves to the HTML attribute with matching LocalName and NamespaceURI. + + The local name of the HTML attribute. + The namespace URI of the attribute. Unsupported with the HtmlNavigator implementation. + true if the HTML attribute is found, otherwise, false. If false, the position of the navigator does not change. + + + + Moves to the first sibling of the current node. + + true if the navigator is successful moving to the first sibling node, false if there is no first sibling or if the navigator is currently positioned on an attribute node. + + + + Moves to the first HTML attribute. + + true if the navigator is successful moving to the first HTML attribute, otherwise, false. + + + + Moves to the first child of the current node. + + true if there is a first child node, otherwise false. + + + + Moves the XPathNavigator to the first namespace node of the current element. + Always returns false for the HtmlNavigator implementation. + + An XPathNamespaceScope value describing the namespace scope. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the node that has an attribute of type ID whose value matches the specified string. + + A string representing the ID value of the node to which you want to move. This argument does not need to be atomized. + true if the move was successful, otherwise false. If false, the position of the navigator is unchanged. + + + + Moves the XPathNavigator to the namespace node with the specified local name. + Always returns false for the HtmlNavigator implementation. + + The local name of the namespace node. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the next sibling of the current node. + + true if the navigator is successful moving to the next sibling node, false if there are no more siblings or if the navigator is currently positioned on an attribute node. If false, the position of the navigator is unchanged. + + + + Moves to the next HTML attribute. + + + + + + Moves the XPathNavigator to the next namespace node. + Always returns falsefor the HtmlNavigator implementation. + + An XPathNamespaceScope value describing the namespace scope. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the parent of the current node. + + true if there is a parent node, otherwise false. + + + + Moves to the previous sibling of the current node. + + true if the navigator is successful moving to the previous sibling node, false if there is no previous sibling or if the navigator is currently positioned on an attribute node. + + + + Moves to the root node to which the current node belongs. + + + + + Represents the type of a node. + + + + + The root of a document. + + + + + An HTML element. + + + + + An HTML comment. + + + + + A text node is always the child of an element or a document node. + + + + + Represents a parsing error found during document parsing. + + + + + Gets the type of error. + + + + + Gets the line number of this error in the document. + + + + + Gets the column number of this error in the document. + + + + + Gets a description for the error. + + + + + Gets the the full text of the line containing the error. + + + + + Gets the absolute stream position of this error in the document, relative to the start of the document. + + + + + Represents the type of parsing error. + + + + + A tag was not closed. + + + + + A tag was not opened. + + + + + There is a charset mismatch between stream and declared (META) encoding. + + + + + An end tag was not required. + + + + + An end tag is invalid at this position. + + + + + Represents an HTML text node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets or Sets the text of the node. + + + + + A utility class to get HTML document from HTTP. + + + + + Represents the method that will handle the PostResponse event. + + + + + Represents the method that will handle the PreHandleDocument event. + + + + + Represents the method that will handle the PreRequest event. + + + + + Occurs after an HTTP request has been executed. + + + + + Occurs before an HTML document is handled. + + + + + Occurs before an HTTP request is executed. + + + + + Gets or Sets a value indicating if document encoding must be automatically detected. + + + + + Gets or sets the Encoding used to override the response stream from any web request + + + + + Gets or Sets a value indicating whether to get document only from the cache. + If this is set to true and document is not found in the cache, nothing will be loaded. + + + + + Gets or Sets a value indicating whether to get document from the cache if exists, otherwise from the web + A value indicating whether to get document from the cache if exists, otherwise from the web + + + + + Gets or Sets the cache path. If null, no caching mechanism will be used. + + + + + Gets a value indicating if the last document was retrieved from the cache. + + + + + Gets the last request duration in milliseconds. + + + + + Gets the URI of the Internet resource that actually responded to the request. + + + + + Gets the last request status. + + + + + Gets or Sets the size of the buffer used for memory operations. + + + + + Gets or Sets a value indicating if cookies will be stored. + + + + Gets or sets a value indicating whether redirect should be captured instead of the current location. + True if capture redirect, false if not. + + + + Gets or Sets the User Agent HTTP 1.1 header sent on any webrequest + + + + + Gets or Sets a value indicating whether the caching mechanisms should be used or not. + + + + + Gets the MIME content type for a given path extension. + + The input path extension. + The default content type to return if any error occurs. + The path extension's MIME content type. + + + + Gets the path extension for a given MIME content type. + + The input MIME content type. + The default path extension to return if any error occurs. + The MIME content type's path extension. + + + + Creates an instance of the given type from the specified Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The requested type. + An newly created instance. + + + + Gets an HTML document from an Internet resource and saves it to the specified file. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + + + Gets an HTML document from an Internet resource and saves it to the specified file. - Proxy aware + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + + + + + Gets an HTML document from an Internet resource and saves it to the specified file. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + + + + Gets an HTML document from an Internet resource and saves it to the specified file. Understands Proxies + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + + + + + Gets the cache file path for a specified url. + + The url fo which to retrieve the cache path. May not be null. + The cache file path. + + + + Gets an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + A new HTML document. + + + + Gets an HTML document from an Internet resource. + + The requested Uri, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + A new HTML document. + + + + Gets an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + Host to use for Proxy + Port the Proxy is on + User Id for Authentication + Password for Authentication + A new HTML document. + + + + Gets an HTML document from an Internet resource. + + The requested Uri, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + Host to use for Proxy + Port the Proxy is on + User Id for Authentication + Password for Authentication + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + Proxy to use with this request + Credentials to use when authenticating + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested Uri, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + Proxy to use with this request + Credentials to use when authenticating + A new HTML document. + + + + Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The XmlTextWriter to which you want to save to. + + + + Creates an instance of the given type from the specified Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The URL that specifies the XSLT stylesheet to load. + An containing the namespace-qualified arguments used as input to the transform. + The requested type. + An newly created instance. + + + + Creates an instance of the given type from the specified Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The URL that specifies the XSLT stylesheet to load. + An containing the namespace-qualified arguments used as input to the transform. + The requested type. + A file path where the temporary XML before transformation will be saved. Mostly used for debugging purposes. + An newly created instance. + + + + Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter, after an XSLT transformation. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The URL that specifies the XSLT stylesheet to load. + An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. + The XmlTextWriter to which you want to save. + + + + Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter, after an XSLT transformation. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". May not be null. + The URL that specifies the XSLT stylesheet to load. + An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. + The XmlTextWriter to which you want to save. + A file path where the temporary XML before transformation will be saved. Mostly used for debugging purposes. + + + + Wraps getting AppDomain permissions + + + + + Checks to see if Registry access is available to the caller + + + + + + Checks to see if DNS information is available to the caller + + + + + + An interface for getting permissions of the running application + + + + + Checks to see if Registry access is available to the caller + + + + + + Checks to see if DNS information is available to the caller + + + + + + Represents an exception thrown by the HtmlWeb utility class. + + + + + Creates an instance of the HtmlWebException. + + The exception's message. + + + + Represents a document with mixed code and text. ASP, ASPX, JSP, are good example of such documents. + + + + + Gets or sets the token representing code end. + + + + + Gets or sets the token representing code start. + + + + + Gets or sets the token representing code directive. + + + + + Gets or sets the token representing response write directive. + + + + + Creates a mixed code document instance. + + + + + Gets the code represented by the mixed code document seen as a template. + + + + + Gets the list of code fragments in the document. + + + + + Gets the list of all fragments in the document. + + + + + Gets the encoding of the stream used to read the document. + + + + + Gets the list of text fragments in the document. + + + + + Create a code fragment instances. + + The newly created code fragment instance. + + + + Create a text fragment instances. + + The newly created text fragment instance. + + + + Loads a mixed code document from a stream. + + The input stream. + + + + Loads a mixed code document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Loads the mixed code document from the specified TextReader. + + The TextReader used to feed the HTML data into the document. + + + + Loads a mixed document from a text + + The text to load. + + + + Saves the mixed document to the specified stream. + + The stream to which you want to save. + + + + Saves the mixed document to the specified stream. + + The stream to which you want to save. + The character encoding to use. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + The character encoding to use. + + + + Saves the mixed document to the specified StreamWriter. + + The StreamWriter to which you want to save. + + + + Saves the mixed document to the specified TextWriter. + + The TextWriter to which you want to save. + + + + Represents a fragment of code in a mixed code document. + + + + + Gets the fragment code text. + + + + + Represents a base class for fragments in a mixed code document. + + + + + Gets the fragement text. + + + + + Gets the type of fragment. + + + + + Gets the line number of the fragment. + + + + + Gets the line position (column) of the fragment. + + + + + Gets the fragment position in the document's stream. + + + + + Represents a list of mixed code fragments. + + + + + Gets the Document + + + + + Gets the number of fragments contained in the list. + + + + + Gets a fragment from the list using its index. + + + + + Gets an enumerator that can iterate through the fragment list. + + + + + Appends a fragment to the list of fragments. + + The fragment to append. May not be null. + + + + Gets an enumerator that can iterate through the fragment list. + + + + + Prepends a fragment to the list of fragments. + + The fragment to append. May not be null. + + + + Remove a fragment from the list of fragments. If this fragment was not in the list, an exception will be raised. + + The fragment to remove. May not be null. + + + + Remove all fragments from the list. + + + + + Remove a fragment from the list of fragments, using its index in the list. + + The index of the fragment to remove. + + + + Represents a fragment enumerator. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + Advances the enumerator to the next element of the collection. + + true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. + + + + Sets the enumerator to its initial position, which is before the first element in the collection. + + + + + Represents the type of fragment in a mixed code document. + + + + + The fragment contains code. + + + + + The fragment contains text. + + + + + Represents a fragment of text in a mixed code document. + + + + + Gets the fragment text. + + + + diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/Net40-client/HtmlAgilityPack.dll b/Packages/HtmlAgilityPack.1.9.2/lib/Net40-client/HtmlAgilityPack.dll new file mode 100644 index 0000000..5c1567d Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/Net40-client/HtmlAgilityPack.dll differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/Net40-client/HtmlAgilityPack.pdb b/Packages/HtmlAgilityPack.1.9.2/lib/Net40-client/HtmlAgilityPack.pdb new file mode 100644 index 0000000..c85b508 Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/Net40-client/HtmlAgilityPack.pdb differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/Net40-client/HtmlAgilityPack.xml b/Packages/HtmlAgilityPack.1.9.2/lib/Net40-client/HtmlAgilityPack.xml new file mode 100644 index 0000000..620eb7b --- /dev/null +++ b/Packages/HtmlAgilityPack.1.9.2/lib/Net40-client/HtmlAgilityPack.xml @@ -0,0 +1,2861 @@ + + + + HtmlAgilityPack + + + + + A utility class to compute CRC32. + + + + + Compute a checksum for a given array of bytes. + + The array of bytes to compute the checksum for. + The computed checksum. + + + + Compute a checksum for a given string. + + The string to compute the checksum for. + The computed checksum. + + + + Represents an HTML attribute. + + + + + Gets the line number of this attribute in the document. + + + + + Gets the column number of this attribute in the document. + + + + + Gets the stream position of the value of this attribute in the document, relative to the start of the document. + + + + + Gets the length of the value. + + + + + Gets the qualified name of the attribute. + + + + + Name of attribute with original case + + + + + Gets the HTML document to which this attribute belongs. + + + + + Gets the HTML node to which this attribute belongs. + + + + + Specifies what type of quote the data should be wrapped in + + + + + Gets the stream position of this attribute in the document, relative to the start of the document. + + + + + Gets or sets the value of the attribute. + + + + + Gets the DeEntitized value of the attribute. + + + + + Gets a valid XPath string that points to this Attribute + + + + + Compares the current instance with another attribute. Comparison is based on attributes' name. + + An attribute to compare with this instance. + A 32-bit signed integer that indicates the relative order of the names comparison. + + + + Creates a duplicate of this attribute. + + The cloned attribute. + + + + Removes this attribute from it's parents collection + + + + + An Enum representing different types of Quotes used for surrounding attribute values + + + + + A single quote mark ' + + + + + A double quote mark " + + + + + Represents a combined list and collection of HTML nodes. + + + + + Gets the number of elements actually contained in the list. + + + + + Gets readonly status of colelction + + + + + Gets the attribute at the specified index. + + + + + Gets a given attribute from the list using its name. + + + + + Adds supplied item to collection + + + + + + Explicit clear + + + + + Retreives existence of supplied item + + + + + + + Copies collection to array + + + + + + + Get Explicit enumerator + + + + + + Explicit non-generic enumerator + + + + + + Retrieves the index for the supplied item, -1 if not found + + + + + + + Inserts given item into collection at supplied index + + + + + + + Explicit collection remove + + + + + + + Removes the attribute at the specified index. + + The index of the attribute to remove. + + + + Adds a new attribute to the collection with the given values + + + + + + + Inserts the specified attribute as the last attribute in the collection. + + The attribute to insert. May not be null. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The value of the attribute to insert. + The appended attribute. + + + + Checks for existance of attribute with given name + + + + + + + Inserts the specified attribute as the first node in the collection. + + The attribute to insert. May not be null. + The prepended attribute. + + + + Removes a given attribute from the list. + + The attribute to remove. May not be null. + + + + Removes an attribute from the list, using its name. If there are more than one attributes with this name, they will all be removed. + + The attribute's name. May not be null. + + + + Remove all attributes in the list. + + + + + Returns all attributes with specified name. Handles case insentivity + + Name of the attribute + + + + + Removes all attributes from the collection + + + + + Clears the attribute collection + + + + + Represents an HTML comment. + + + + + Gets or Sets the comment text of the node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Represents a complete HTML document. + + + + True to disable, false to enable the behavaior tag p. + + + Default builder to use in the HtmlDocument constructor + + + Action to execute before the Parse is executed + + + + Defines the max level we would go deep into the html document + + + + The HtmlDocument Text. Careful if you modify it. + + + True to stay backward compatible with previous version of HAP. This option does not guarantee 100% compatibility. + + + + Adds Debugging attributes to node. Default is false. + + + + + Defines if closing for non closed nodes must be done at the end or directly in the document. + Setting this to true can actually change how browsers render the page. Default is false. + + + + + Defines if non closed nodes will be checked at the end of parsing. Default is true. + + + + + Defines if a checksum must be computed for the document while parsing. Default is false. + + + + + Defines if SelectNodes method will return null or empty collection when no node matched the XPath expression. + Setting this to true will return empty collection and false will return null. Default is false. + + + + True to disable, false to enable the server side code. + + + + Defines the default stream encoding to use. Default is System.Text.Encoding.Default. + + + + + Defines if source text must be extracted while parsing errors. + If the document has a lot of errors, or cascading errors, parsing performance can be dramatically affected if set to true. + Default is false. + + + + + Defines the maximum length of source text or parse errors. Default is 100. + + + + + Defines if LI, TR, TH, TD tags must be partially fixed when nesting errors are detected. Default is false. + + + + + Defines if output must conform to XML, instead of HTML. Default is false. + + + + + If used together with and enabled, Xml namespaces in element names are preserved. Default is false. + + + + + Defines if attribute value output must be optimized (not bound with double quotes if it is possible). Default is false. + + + + + Defines if name must be output with it's original case. Useful for asp.net tags and attributes. Default is false. + + + + + Defines if name must be output in uppercase. Default is false. + + + + + Defines if declared encoding must be read from the document. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node. + Default is true. + + + + + Defines the name of a node that will throw the StopperNodeException when found as an end node. Default is null. + + + + + Defines if the 'id' attribute must be specifically used. Default is true. + + + + + Defines if empty nodes must be written as closed during output. Default is false. + + + + + Creates an instance of an HTML document. + + + + Gets the parsed text. + The parsed text. + + + + Defines the max level we would go deep into the html document. If this depth level is exceeded, and exception is + thrown. + + + + + Gets the document CRC32 checksum if OptionComputeChecksum was set to true before parsing, 0 otherwise. + + + + + Gets the document's declared encoding. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node (pre-HTML5) or the meta charset="XXXXX" html node (HTML5). + + + + + Gets the root node of the document. + + + + + Gets the document's output encoding. + + + + + Gets a list of parse errors found in the document. + + + + + Gets the remaining text. + Will always be null if OptionStopperNodeName is null. + + + + + Gets the offset of Remainder in the original Html text. + If OptionStopperNodeName is null, this will return the length of the original Html text. + + + + + Gets the document's stream encoding. + + + + + Gets a valid XML name. + + Any text. + A string that is a valid XML name. + + + + Applies HTML encoding to a specified string. + + The input string to encode. May not be null. + The encoded string. + + + + Determines if the specified character is considered as a whitespace character. + + The character to check. + true if if the specified character is considered as a whitespace character. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The new HTML attribute. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The value of the attribute. + The new HTML attribute. + + + + Creates an HTML comment node. + + The new HTML comment node. + + + + Creates an HTML comment node with the specified comment text. + + The comment text. May not be null. + The new HTML comment node. + + + + Creates an HTML element node with the specified name. + + The qualified name of the element. May not be null. + The new HTML node. + + + + Creates an HTML text node. + + The new HTML text node. + + + + Creates an HTML text node with the specified text. + + The text of the node. May not be null. + The new HTML text node. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The html is checked. + The detected encoding. + + + + Detects the encoding of an HTML text provided on a TextReader. + + The TextReader used to feed the HTML. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML text. + + The input html text. May not be null. + The detected encoding. + + + + Gets the HTML node with the specified 'id' attribute value. + + The attribute id to match. May not be null. + The HTML node with the matching id or null if not found. + + + + Loads an HTML document from a stream. + + The input stream. + + + + Loads an HTML document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + The minimum buffer size. + + + + Loads the HTML document from the specified TextReader. + + The TextReader used to feed the HTML data into the document. May not be null. + + + + Loads the HTML document from the specified string. + + String containing the HTML document to load. May not be null. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. May not be null. + The character encoding to use. May not be null. + + + + Saves the HTML document to the specified StreamWriter. + + The StreamWriter to which you want to save. + + + + Saves the HTML document to the specified TextWriter. + + The TextWriter to which you want to save. May not be null. + + + + Saves the HTML document to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Detects the encoding of an HTML document from a file first, and then loads the file. + + The complete file path to be read. + + + + Detects the encoding of an HTML document from a file first, and then loads the file. + + The complete file path to be read. May not be null. + true to detect encoding, false otherwise. + + + + Detects the encoding of an HTML file. + + Path for the file containing the HTML document to detect. May not be null. + The detected encoding. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. May not be null. + The character encoding to use. May not be null. + + + + Creates a new XPathNavigator object for navigating this HTML document. + + An XPathNavigator object. The XPathNavigator is positioned on the root of the document. + + + + Flags that describe the behavior of an Element node. + + + + + The node is a CDATA node. + + + + + The node is empty. META or IMG are example of such nodes. + + + + + The node will automatically be closed during parsing. + + + + + The node can overlap. + + + + + A utility class to replace special characters by entities and vice-versa. + Follows HTML 4.0 specification found at http://www.w3.org/TR/html4/sgml/entities.html + Follows Additional specification found at https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references + See also: https://html.spec.whatwg.org/multipage/named-characters.html#named-character-references + + + + + A collection of entities indexed by name. + + + + + A collection of entities indexed by value. + + + + + Replace known entities by characters. + + The source text. + The result text. + + + + Clone and entitize an HtmlNode. This will affect attribute values and nodes' text. It will also entitize all child nodes. + + The node to entitize. + An entitized cloned node. + + + + Replace characters above 127 by entities. + + The source text. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + If set to true, the [quote], [ampersand], [lower than] and [greather than] characters will be entitized. + The result text + + + + Represents an HTML node. + + + + + Gets the name of a comment node. It is actually defined as '#comment'. + + + + + Gets the name of the document node. It is actually defined as '#document'. + + + + + Gets the name of a text node. It is actually defined as '#text'. + + + + + Gets a collection of flags that define specific behaviors for specific element nodes. + The table contains a DictionaryEntry list with the lowercase tag name as the Key, and a combination of HtmlElementFlags as the Value. + + + + + Initialize HtmlNode. Builds a list of all tags that have special allowances + + + + + Initializes HtmlNode, providing type, owner and where it exists in a collection + + + + + + + + Gets the collection of HTML attributes for this node. May not be null. + + + + + Gets all the children of the node. + + + + + Gets a value indicating if this node has been closed or not. + + + + + Gets the collection of HTML attributes for the closing tag. May not be null. + + + + + Gets the closing tag of the node, null if the node is self-closing. + + + + + Gets the first child of the node. + + + + + Gets a value indicating whether the current node has any attributes. + + + + + Gets a value indicating whether this node has any child nodes. + + + + + Gets a value indicating whether the current node has any attributes on the closing tag. + + + + + Gets or sets the value of the 'id' HTML attribute. The document must have been parsed using the OptionUseIdAttribute set to true. + + + + + Gets or Sets the HTML between the start and end tags of the object. + + + + + Gets or Sets the text between the start and end tags of the object. + + + + + Gets the last child of the node. + + + + + Gets the line number of this node in the document. + + + + + Gets the column number of this node in the document. + + + + + Gets the stream position of the area between the opening and closing tag of the node, relative to the start of the document. + + + + + Gets the length of the area between the opening and closing tag of the node. + + + + + Gets the length of the entire node, opening and closing tag included. + + + + + Gets or sets this node's name. + + + + + Gets the HTML node immediately following this element. + + + + + Gets the type of this node. + + + + + The original unaltered name of the tag + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets the to which this node belongs. + + + + + Gets the parent of this node (for nodes that can have parents). + + + + + Gets the node immediately preceding this node. + + + + + Gets the stream position of this node in the document, relative to the start of the document. + + + + + Gets a valid XPath string that points to this node + + + + + Determines if an element node can be kept overlapped. + + The name of the element node to check. May not be null. + true if the name is the name of an element node that can be kept overlapped, false otherwise. + + + + Creates an HTML node from a string representing literal HTML. + + The HTML text. + The newly created node instance. + + + + Determines if an element node is a CDATA element node. + + The name of the element node to check. May not be null. + true if the name is the name of a CDATA element node, false otherwise. + + + + Determines if an element node is closed. + + The name of the element node to check. May not be null. + true if the name is the name of a closed element node, false otherwise. + + + + Determines if an element node is defined as empty. + + The name of the element node to check. May not be null. + true if the name is the name of an empty element node, false otherwise. + + + + Determines if a text corresponds to the closing tag of an node that can be kept overlapped. + + The text to check. May not be null. + true or false. + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Get Ancestors with matching name + + + + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Gets all anscestor nodes and the current node + + + + + + + Adds the specified node to the end of the list of children of this node. + + The node to add. May not be null. + The node added. + + + Sets child nodes identifier. + The chil node. + + + + Adds the specified node to the end of the list of children of this node. + + The node list to add. May not be null. + + + + Gets all Attributes with name + + + + + + + Creates a duplicate of the node + + + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + The cloned node. + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node. + + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node and the subtree under it. + + The node to duplicate. May not be null. + + + + Creates a duplicate of the node. + + The node to duplicate. May not be null. + true to recursively clone the subtree under the specified node, false to clone only the node itself. + + + + Gets all Descendant nodes for this node and each of child nodes + + The depth level of the node to parse in the html tree + the current element as an HtmlNode + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Get all descendant nodes with matching name + + + + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all descendant nodes including this node + + + + + + + Gets first generation child node matching name + + + + + + + Gets matching first generation child nodes matching name + + + + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Inserts the specified node immediately after the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newNode is placed after the refNode. + The node being inserted. + + + + Inserts the specified node immediately before the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newChild is placed before this node. + The node being inserted. + + + + Adds the specified node to the beginning of the list of children of this node. + + The node to add. May not be null. + The node added. + + + + Adds the specified node list to the beginning of the list of children of this node. + + The node list to add. May not be null. + + + + Removes node from parent collection + + + + + Removes all the children and/or attributes of the current node. + + + + + Removes all the children of the current node. + + + + Removes all id for node described by node. + The node. + + + + Removes the specified child node. + + The node being removed. May not be null. + The node removed. + + + + Removes the specified child node. + + The node being removed. May not be null. + true to keep grand children of the node, false otherwise. + The node removed. + + + + Replaces the child node oldChild with newChild node. + + The new node to put in the child list. + The node being replaced in the list. + The node replaced. + + + + Helper method to set the value of an attribute of this node. If the attribute is not found, it will be created automatically. + + The name of the attribute to set. May not be null. + The value for the attribute. + The corresponding attribute instance. + + + + Saves all the children of the node to the specified TextWriter. + + The TextWriter to which you want to save. + Identifies the level we are in starting at root with 0 + + + + Saves all the children of the node to a string. + + The saved string. + + + + Saves the current node to the specified TextWriter. + + The TextWriter to which you want to save. + identifies the level we are in starting at root with 0 + + + + Saves the current node to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Saves the current node to a string. + + The saved string. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + true to throw Error if class name exists, false otherwise. + + + + Removes the class attribute from the node. + + + + + Removes the class attribute from the node. + + true to throw Error if class name doesn't exist, false otherwise. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + true to throw Error if class name doesn't exist, false otherwise. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + true to throw Error if class name doesn't exist, false otherwise. + + + Gets the CSS Class from the node. + + The CSS Class from the node + + + + Check if the node class has the parameter class. + The class. + True if node class has the parameter class, false if not. + + + + Fill an object and go through it's properties and fill them too. + + Type of object to want to fill. It should have atleast one property that defined XPath. + If htmlDocument includes data , leave this parameter null. Else pass your specific htmldocument. + Returns an object of type T including Encapsulated data. + + + + Fill an object and go through it's properties and fill them too. + + Type of object to want to fill. It should have atleast one property that defined XPath. + If htmlDocument includes data , leave this parameter null. Else pass your specific htmldocument. + Returns an object of type targetType including Encapsulated data. + + + + Creates a new XPathNavigator object for navigating this HTML node. + + An XPathNavigator object. The XPathNavigator is positioned on the node from which the method was called. It is not positioned on the root of the document. + + + + Creates an XPathNavigator using the root of this document. + + + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Selects the first XmlNode that matches the XPath expression. + + The XPath expression. May not be null. + The first that matches the XPath query or a null reference if no matching node was found. + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Includes tools that GetEncapsulatedData method uses them. + + + + + Determine if a type define an attribute or not , supporting both .NetStandard and .NetFramework2.0 + + Type you want to test it. + Attribute that type must have or not. + If true , The type parameter define attributeType parameter. + + + + Retrive properties of type that defined . + + Type that you want to find it's XPath-Defined properties. + IEnumerable of property infos of a type , that defined specific attribute. + + + + Determine if a has implemented BUT is considered as NONE-IEnumerable ! + + The property info you want to test. + True if property info is IEnumerable. + + + + Returns T type(first generic type) of or . + + IEnumerable-Implemented property + List of generic types. + + + + Find and Return a mehtod that defined in a class by it's name. + + Type of class include requested method. + Name of requested method as string. + Method info of requested method. + + + + Create of given type. + + Type that you want to make a List of it. + Returns IList of given type. + + + + Returns the part of value of you want as . + + A htmlNode instance. + Attribute that includes ReturnType + String that choosen from HtmlNode as result. + + + + Returns parts of values of you want as . + + that you want to retrive each value. + A instnce incules . + Type of IList generic you want. + + + + + Simulate Func method to use in Lambada Expression. + + + + + + + + + This method works like Where method in LINQ. + + + + + + + + + Check if the type can instantiated. + + + + + + + Returns count of elements stored in IEnumerable of T + + + + + + + + Specify which part of is requested. + + + + + Just mark and flag classes to show they have properties that defined . + + + + + Includes XPath and . XPath for finding html tags and for specify which part of you want to return. + + + + + Represents a combined list and collection of HTML nodes. + + + + + Initialize the HtmlNodeCollection with the base parent node + + The base node of the collection + + + + Gets a given node from the list. + + + + + Get node with tag name + + + + + + + Gets the number of elements actually contained in the list. + + + + + Is collection read only + + + + + Gets the node at the specified index. + + + + + Add node to the collection + + + + + + Add node to the collection + + + + + + + Clears out the collection of HtmlNodes. Removes each nodes reference to parentnode, nextnode and prevnode + + + + + Gets existence of node in collection + + + + + + + Copy collection to array + + + + + + + Get Enumerator + + + + + + Get Explicit Enumerator + + + + + + Get index of node + + + + + + + Insert node at index + + + + + + + Remove node + + + + + + + Remove at index + + + + + + Get first instance of node in supplied collection + + + + + + + + Add node to the end of the collection + + + + + + Get first instance of node with name + + + + + + + Get index of node + + + + + + + Add node to the beginning of the collection + + + + + + Remove node at index + + + + + + + Replace node at index + + + + + + + Get all node descended from this collection + + + + + + Get all node descended from this collection with matching name + + + + + + Gets all first generation elements in collection + + + + + + Gets all first generation elements matching name + + + + + + + All first generation nodes in collection + + + + + + Represents an HTML navigator on an HTML document seen as a data store. + + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + The minimum buffer size. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a TextReader. + + The TextReader used to feed the HTML data into the document. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + The character encoding to use. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Gets the base URI for the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the current HTML document. + + + + + Gets the current HTML node. + + + + + Gets a value indicating whether the current node has child nodes. + + + + + Gets a value indicating whether the current node has child nodes. + + + + + Gets a value indicating whether the current node is an empty element. + + + + + Gets the name of the current HTML node without the namespace prefix. + + + + + Gets the qualified name of the current node. + + + + + Gets the namespace URI (as defined in the W3C Namespace Specification) of the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the associated with this implementation. + + + + + Gets the type of the current node. + + + + + Gets the prefix associated with the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the text value of the current node. + + + + + Gets the xml:lang scope for the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Creates a new HtmlNavigator positioned at the same node as this HtmlNavigator. + + A new HtmlNavigator object positioned at the same node as the original HtmlNavigator. + + + + Gets the value of the HTML attribute with the specified LocalName and NamespaceURI. + + The local name of the HTML attribute. + The namespace URI of the attribute. Unsupported with the HtmlNavigator implementation. + The value of the specified HTML attribute. String.Empty or null if a matching attribute is not found or if the navigator is not positioned on an element node. + + + + Returns the value of the namespace node corresponding to the specified local name. + Always returns string.Empty for the HtmlNavigator implementation. + + The local name of the namespace node. + Always returns string.Empty for the HtmlNavigator implementation. + + + + Determines whether the current HtmlNavigator is at the same position as the specified HtmlNavigator. + + The HtmlNavigator that you want to compare against. + true if the two navigators have the same position, otherwise, false. + + + + Moves to the same position as the specified HtmlNavigator. + + The HtmlNavigator positioned on the node that you want to move to. + true if successful, otherwise false. If false, the position of the navigator is unchanged. + + + + Moves to the HTML attribute with matching LocalName and NamespaceURI. + + The local name of the HTML attribute. + The namespace URI of the attribute. Unsupported with the HtmlNavigator implementation. + true if the HTML attribute is found, otherwise, false. If false, the position of the navigator does not change. + + + + Moves to the first sibling of the current node. + + true if the navigator is successful moving to the first sibling node, false if there is no first sibling or if the navigator is currently positioned on an attribute node. + + + + Moves to the first HTML attribute. + + true if the navigator is successful moving to the first HTML attribute, otherwise, false. + + + + Moves to the first child of the current node. + + true if there is a first child node, otherwise false. + + + + Moves the XPathNavigator to the first namespace node of the current element. + Always returns false for the HtmlNavigator implementation. + + An XPathNamespaceScope value describing the namespace scope. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the node that has an attribute of type ID whose value matches the specified string. + + A string representing the ID value of the node to which you want to move. This argument does not need to be atomized. + true if the move was successful, otherwise false. If false, the position of the navigator is unchanged. + + + + Moves the XPathNavigator to the namespace node with the specified local name. + Always returns false for the HtmlNavigator implementation. + + The local name of the namespace node. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the next sibling of the current node. + + true if the navigator is successful moving to the next sibling node, false if there are no more siblings or if the navigator is currently positioned on an attribute node. If false, the position of the navigator is unchanged. + + + + Moves to the next HTML attribute. + + + + + + Moves the XPathNavigator to the next namespace node. + Always returns falsefor the HtmlNavigator implementation. + + An XPathNamespaceScope value describing the namespace scope. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the parent of the current node. + + true if there is a parent node, otherwise false. + + + + Moves to the previous sibling of the current node. + + true if the navigator is successful moving to the previous sibling node, false if there is no previous sibling or if the navigator is currently positioned on an attribute node. + + + + Moves to the root node to which the current node belongs. + + + + + Represents the type of a node. + + + + + The root of a document. + + + + + An HTML element. + + + + + An HTML comment. + + + + + A text node is always the child of an element or a document node. + + + + + Represents a parsing error found during document parsing. + + + + + Gets the type of error. + + + + + Gets the line number of this error in the document. + + + + + Gets the column number of this error in the document. + + + + + Gets a description for the error. + + + + + Gets the the full text of the line containing the error. + + + + + Gets the absolute stream position of this error in the document, relative to the start of the document. + + + + + Represents the type of parsing error. + + + + + A tag was not closed. + + + + + A tag was not opened. + + + + + There is a charset mismatch between stream and declared (META) encoding. + + + + + An end tag was not required. + + + + + An end tag is invalid at this position. + + + + + Represents an HTML text node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets or Sets the text of the node. + + + + + A utility class to get HTML document from HTTP. + + + + + Represents the method that will handle the PostResponse event. + + + + + Represents the method that will handle the PreHandleDocument event. + + + + + Represents the method that will handle the PreRequest event. + + + + + Occurs after an HTTP request has been executed. + + + + + Occurs before an HTML document is handled. + + + + + Occurs before an HTTP request is executed. + + + + + Gets or Sets a value indicating if document encoding must be automatically detected. + + + + + Gets or sets the Encoding used to override the response stream from any web request + + + + + Gets or Sets a value indicating whether to get document only from the cache. + If this is set to true and document is not found in the cache, nothing will be loaded. + + + + + Gets or Sets a value indicating whether to get document from the cache if exists, otherwise from the web + A value indicating whether to get document from the cache if exists, otherwise from the web + + + + + Gets or Sets the cache path. If null, no caching mechanism will be used. + + + + + Gets a value indicating if the last document was retrieved from the cache. + + + + + Gets the last request duration in milliseconds. + + + + + Gets the URI of the Internet resource that actually responded to the request. + + + + + Gets the last request status. + + + + + Gets or Sets the size of the buffer used for memory operations. + + + + + Gets or Sets a value indicating if cookies will be stored. + + + + Gets or sets a value indicating whether redirect should be captured instead of the current location. + True if capture redirect, false if not. + + + + Gets or Sets the User Agent HTTP 1.1 header sent on any webrequest + + + + + Gets or Sets a value indicating whether the caching mechanisms should be used or not. + + + + + Gets the MIME content type for a given path extension. + + The input path extension. + The default content type to return if any error occurs. + The path extension's MIME content type. + + + + Gets the path extension for a given MIME content type. + + The input MIME content type. + The default path extension to return if any error occurs. + The MIME content type's path extension. + + + + Creates an instance of the given type from the specified Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The requested type. + An newly created instance. + + + + Gets an HTML document from an Internet resource and saves it to the specified file. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + + + Gets an HTML document from an Internet resource and saves it to the specified file. - Proxy aware + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + + + + + Gets an HTML document from an Internet resource and saves it to the specified file. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + + + + Gets an HTML document from an Internet resource and saves it to the specified file. Understands Proxies + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + + + + + Gets the cache file path for a specified url. + + The url fo which to retrieve the cache path. May not be null. + The cache file path. + + + + Gets an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + A new HTML document. + + + + Gets an HTML document from an Internet resource. + + The requested Uri, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + A new HTML document. + + + + Gets an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + Host to use for Proxy + Port the Proxy is on + User Id for Authentication + Password for Authentication + A new HTML document. + + + + Gets an HTML document from an Internet resource. + + The requested Uri, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + Host to use for Proxy + Port the Proxy is on + User Id for Authentication + Password for Authentication + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + Proxy to use with this request + Credentials to use when authenticating + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested Uri, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + Proxy to use with this request + Credentials to use when authenticating + A new HTML document. + + + + Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The XmlTextWriter to which you want to save to. + + + Gets or sets the web browser timeout. + + + + Gets or sets the web browser delay. + + + Loads HTML using a WebBrowser and Application.DoEvents. + Thrown when an exception error condition occurs. + The requested URL, such as "http://html-agility-pack.net/". + A new HTML document. + + + Loads HTML using a WebBrowser and Application.DoEvents. + Thrown when an exception error condition occurs. + The requested URL, such as "http://html-agility-pack.net/". + (Optional) Check if the browser script has all been run and completed. + A new HTML document. + + + Loads HTML using a WebBrowser and Application.DoEvents. + Thrown when an exception error condition occurs. + The requested URL, such as "http://html-agility-pack.net/". + (Optional) Check if the browser script has all been run and completed. + A new HTML document. + + + + Creates an instance of the given type from the specified Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The URL that specifies the XSLT stylesheet to load. + An containing the namespace-qualified arguments used as input to the transform. + The requested type. + An newly created instance. + + + + Creates an instance of the given type from the specified Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The URL that specifies the XSLT stylesheet to load. + An containing the namespace-qualified arguments used as input to the transform. + The requested type. + A file path where the temporary XML before transformation will be saved. Mostly used for debugging purposes. + An newly created instance. + + + + Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter, after an XSLT transformation. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The URL that specifies the XSLT stylesheet to load. + An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. + The XmlTextWriter to which you want to save. + + + + Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter, after an XSLT transformation. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". May not be null. + The URL that specifies the XSLT stylesheet to load. + An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. + The XmlTextWriter to which you want to save. + A file path where the temporary XML before transformation will be saved. Mostly used for debugging purposes. + + + + Wraps getting AppDomain permissions + + + + + Checks to see if Registry access is available to the caller + + + + + + Checks to see if DNS information is available to the caller + + + + + + An interface for getting permissions of the running application + + + + + Checks to see if Registry access is available to the caller + + + + + + Checks to see if DNS information is available to the caller + + + + + + Represents an exception thrown by the HtmlWeb utility class. + + + + + Creates an instance of the HtmlWebException. + + The exception's message. + + + + Represents a document with mixed code and text. ASP, ASPX, JSP, are good example of such documents. + + + + + Gets or sets the token representing code end. + + + + + Gets or sets the token representing code start. + + + + + Gets or sets the token representing code directive. + + + + + Gets or sets the token representing response write directive. + + + + + Creates a mixed code document instance. + + + + + Gets the code represented by the mixed code document seen as a template. + + + + + Gets the list of code fragments in the document. + + + + + Gets the list of all fragments in the document. + + + + + Gets the encoding of the stream used to read the document. + + + + + Gets the list of text fragments in the document. + + + + + Create a code fragment instances. + + The newly created code fragment instance. + + + + Create a text fragment instances. + + The newly created text fragment instance. + + + + Loads a mixed code document from a stream. + + The input stream. + + + + Loads a mixed code document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Loads the mixed code document from the specified TextReader. + + The TextReader used to feed the HTML data into the document. + + + + Loads a mixed document from a text + + The text to load. + + + + Saves the mixed document to the specified stream. + + The stream to which you want to save. + + + + Saves the mixed document to the specified stream. + + The stream to which you want to save. + The character encoding to use. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + The character encoding to use. + + + + Saves the mixed document to the specified StreamWriter. + + The StreamWriter to which you want to save. + + + + Saves the mixed document to the specified TextWriter. + + The TextWriter to which you want to save. + + + + Represents a fragment of code in a mixed code document. + + + + + Gets the fragment code text. + + + + + Represents a base class for fragments in a mixed code document. + + + + + Gets the fragement text. + + + + + Gets the type of fragment. + + + + + Gets the line number of the fragment. + + + + + Gets the line position (column) of the fragment. + + + + + Gets the fragment position in the document's stream. + + + + + Represents a list of mixed code fragments. + + + + + Gets the Document + + + + + Gets the number of fragments contained in the list. + + + + + Gets a fragment from the list using its index. + + + + + Gets an enumerator that can iterate through the fragment list. + + + + + Appends a fragment to the list of fragments. + + The fragment to append. May not be null. + + + + Gets an enumerator that can iterate through the fragment list. + + + + + Prepends a fragment to the list of fragments. + + The fragment to append. May not be null. + + + + Remove a fragment from the list of fragments. If this fragment was not in the list, an exception will be raised. + + The fragment to remove. May not be null. + + + + Remove all fragments from the list. + + + + + Remove a fragment from the list of fragments, using its index in the list. + + The index of the fragment to remove. + + + + Represents a fragment enumerator. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + Advances the enumerator to the next element of the collection. + + true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. + + + + Sets the enumerator to its initial position, which is before the first element in the collection. + + + + + Represents the type of fragment in a mixed code document. + + + + + The fragment contains code. + + + + + The fragment contains text. + + + + + Represents a fragment of text in a mixed code document. + + + + + Gets the fragment text. + + + + diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/Net40/HtmlAgilityPack.XML b/Packages/HtmlAgilityPack.1.9.2/lib/Net40/HtmlAgilityPack.XML new file mode 100644 index 0000000..620eb7b --- /dev/null +++ b/Packages/HtmlAgilityPack.1.9.2/lib/Net40/HtmlAgilityPack.XML @@ -0,0 +1,2861 @@ + + + + HtmlAgilityPack + + + + + A utility class to compute CRC32. + + + + + Compute a checksum for a given array of bytes. + + The array of bytes to compute the checksum for. + The computed checksum. + + + + Compute a checksum for a given string. + + The string to compute the checksum for. + The computed checksum. + + + + Represents an HTML attribute. + + + + + Gets the line number of this attribute in the document. + + + + + Gets the column number of this attribute in the document. + + + + + Gets the stream position of the value of this attribute in the document, relative to the start of the document. + + + + + Gets the length of the value. + + + + + Gets the qualified name of the attribute. + + + + + Name of attribute with original case + + + + + Gets the HTML document to which this attribute belongs. + + + + + Gets the HTML node to which this attribute belongs. + + + + + Specifies what type of quote the data should be wrapped in + + + + + Gets the stream position of this attribute in the document, relative to the start of the document. + + + + + Gets or sets the value of the attribute. + + + + + Gets the DeEntitized value of the attribute. + + + + + Gets a valid XPath string that points to this Attribute + + + + + Compares the current instance with another attribute. Comparison is based on attributes' name. + + An attribute to compare with this instance. + A 32-bit signed integer that indicates the relative order of the names comparison. + + + + Creates a duplicate of this attribute. + + The cloned attribute. + + + + Removes this attribute from it's parents collection + + + + + An Enum representing different types of Quotes used for surrounding attribute values + + + + + A single quote mark ' + + + + + A double quote mark " + + + + + Represents a combined list and collection of HTML nodes. + + + + + Gets the number of elements actually contained in the list. + + + + + Gets readonly status of colelction + + + + + Gets the attribute at the specified index. + + + + + Gets a given attribute from the list using its name. + + + + + Adds supplied item to collection + + + + + + Explicit clear + + + + + Retreives existence of supplied item + + + + + + + Copies collection to array + + + + + + + Get Explicit enumerator + + + + + + Explicit non-generic enumerator + + + + + + Retrieves the index for the supplied item, -1 if not found + + + + + + + Inserts given item into collection at supplied index + + + + + + + Explicit collection remove + + + + + + + Removes the attribute at the specified index. + + The index of the attribute to remove. + + + + Adds a new attribute to the collection with the given values + + + + + + + Inserts the specified attribute as the last attribute in the collection. + + The attribute to insert. May not be null. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The value of the attribute to insert. + The appended attribute. + + + + Checks for existance of attribute with given name + + + + + + + Inserts the specified attribute as the first node in the collection. + + The attribute to insert. May not be null. + The prepended attribute. + + + + Removes a given attribute from the list. + + The attribute to remove. May not be null. + + + + Removes an attribute from the list, using its name. If there are more than one attributes with this name, they will all be removed. + + The attribute's name. May not be null. + + + + Remove all attributes in the list. + + + + + Returns all attributes with specified name. Handles case insentivity + + Name of the attribute + + + + + Removes all attributes from the collection + + + + + Clears the attribute collection + + + + + Represents an HTML comment. + + + + + Gets or Sets the comment text of the node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Represents a complete HTML document. + + + + True to disable, false to enable the behavaior tag p. + + + Default builder to use in the HtmlDocument constructor + + + Action to execute before the Parse is executed + + + + Defines the max level we would go deep into the html document + + + + The HtmlDocument Text. Careful if you modify it. + + + True to stay backward compatible with previous version of HAP. This option does not guarantee 100% compatibility. + + + + Adds Debugging attributes to node. Default is false. + + + + + Defines if closing for non closed nodes must be done at the end or directly in the document. + Setting this to true can actually change how browsers render the page. Default is false. + + + + + Defines if non closed nodes will be checked at the end of parsing. Default is true. + + + + + Defines if a checksum must be computed for the document while parsing. Default is false. + + + + + Defines if SelectNodes method will return null or empty collection when no node matched the XPath expression. + Setting this to true will return empty collection and false will return null. Default is false. + + + + True to disable, false to enable the server side code. + + + + Defines the default stream encoding to use. Default is System.Text.Encoding.Default. + + + + + Defines if source text must be extracted while parsing errors. + If the document has a lot of errors, or cascading errors, parsing performance can be dramatically affected if set to true. + Default is false. + + + + + Defines the maximum length of source text or parse errors. Default is 100. + + + + + Defines if LI, TR, TH, TD tags must be partially fixed when nesting errors are detected. Default is false. + + + + + Defines if output must conform to XML, instead of HTML. Default is false. + + + + + If used together with and enabled, Xml namespaces in element names are preserved. Default is false. + + + + + Defines if attribute value output must be optimized (not bound with double quotes if it is possible). Default is false. + + + + + Defines if name must be output with it's original case. Useful for asp.net tags and attributes. Default is false. + + + + + Defines if name must be output in uppercase. Default is false. + + + + + Defines if declared encoding must be read from the document. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node. + Default is true. + + + + + Defines the name of a node that will throw the StopperNodeException when found as an end node. Default is null. + + + + + Defines if the 'id' attribute must be specifically used. Default is true. + + + + + Defines if empty nodes must be written as closed during output. Default is false. + + + + + Creates an instance of an HTML document. + + + + Gets the parsed text. + The parsed text. + + + + Defines the max level we would go deep into the html document. If this depth level is exceeded, and exception is + thrown. + + + + + Gets the document CRC32 checksum if OptionComputeChecksum was set to true before parsing, 0 otherwise. + + + + + Gets the document's declared encoding. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node (pre-HTML5) or the meta charset="XXXXX" html node (HTML5). + + + + + Gets the root node of the document. + + + + + Gets the document's output encoding. + + + + + Gets a list of parse errors found in the document. + + + + + Gets the remaining text. + Will always be null if OptionStopperNodeName is null. + + + + + Gets the offset of Remainder in the original Html text. + If OptionStopperNodeName is null, this will return the length of the original Html text. + + + + + Gets the document's stream encoding. + + + + + Gets a valid XML name. + + Any text. + A string that is a valid XML name. + + + + Applies HTML encoding to a specified string. + + The input string to encode. May not be null. + The encoded string. + + + + Determines if the specified character is considered as a whitespace character. + + The character to check. + true if if the specified character is considered as a whitespace character. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The new HTML attribute. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The value of the attribute. + The new HTML attribute. + + + + Creates an HTML comment node. + + The new HTML comment node. + + + + Creates an HTML comment node with the specified comment text. + + The comment text. May not be null. + The new HTML comment node. + + + + Creates an HTML element node with the specified name. + + The qualified name of the element. May not be null. + The new HTML node. + + + + Creates an HTML text node. + + The new HTML text node. + + + + Creates an HTML text node with the specified text. + + The text of the node. May not be null. + The new HTML text node. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The html is checked. + The detected encoding. + + + + Detects the encoding of an HTML text provided on a TextReader. + + The TextReader used to feed the HTML. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML text. + + The input html text. May not be null. + The detected encoding. + + + + Gets the HTML node with the specified 'id' attribute value. + + The attribute id to match. May not be null. + The HTML node with the matching id or null if not found. + + + + Loads an HTML document from a stream. + + The input stream. + + + + Loads an HTML document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + The minimum buffer size. + + + + Loads the HTML document from the specified TextReader. + + The TextReader used to feed the HTML data into the document. May not be null. + + + + Loads the HTML document from the specified string. + + String containing the HTML document to load. May not be null. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. May not be null. + The character encoding to use. May not be null. + + + + Saves the HTML document to the specified StreamWriter. + + The StreamWriter to which you want to save. + + + + Saves the HTML document to the specified TextWriter. + + The TextWriter to which you want to save. May not be null. + + + + Saves the HTML document to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Detects the encoding of an HTML document from a file first, and then loads the file. + + The complete file path to be read. + + + + Detects the encoding of an HTML document from a file first, and then loads the file. + + The complete file path to be read. May not be null. + true to detect encoding, false otherwise. + + + + Detects the encoding of an HTML file. + + Path for the file containing the HTML document to detect. May not be null. + The detected encoding. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. May not be null. + The character encoding to use. May not be null. + + + + Creates a new XPathNavigator object for navigating this HTML document. + + An XPathNavigator object. The XPathNavigator is positioned on the root of the document. + + + + Flags that describe the behavior of an Element node. + + + + + The node is a CDATA node. + + + + + The node is empty. META or IMG are example of such nodes. + + + + + The node will automatically be closed during parsing. + + + + + The node can overlap. + + + + + A utility class to replace special characters by entities and vice-versa. + Follows HTML 4.0 specification found at http://www.w3.org/TR/html4/sgml/entities.html + Follows Additional specification found at https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references + See also: https://html.spec.whatwg.org/multipage/named-characters.html#named-character-references + + + + + A collection of entities indexed by name. + + + + + A collection of entities indexed by value. + + + + + Replace known entities by characters. + + The source text. + The result text. + + + + Clone and entitize an HtmlNode. This will affect attribute values and nodes' text. It will also entitize all child nodes. + + The node to entitize. + An entitized cloned node. + + + + Replace characters above 127 by entities. + + The source text. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + If set to true, the [quote], [ampersand], [lower than] and [greather than] characters will be entitized. + The result text + + + + Represents an HTML node. + + + + + Gets the name of a comment node. It is actually defined as '#comment'. + + + + + Gets the name of the document node. It is actually defined as '#document'. + + + + + Gets the name of a text node. It is actually defined as '#text'. + + + + + Gets a collection of flags that define specific behaviors for specific element nodes. + The table contains a DictionaryEntry list with the lowercase tag name as the Key, and a combination of HtmlElementFlags as the Value. + + + + + Initialize HtmlNode. Builds a list of all tags that have special allowances + + + + + Initializes HtmlNode, providing type, owner and where it exists in a collection + + + + + + + + Gets the collection of HTML attributes for this node. May not be null. + + + + + Gets all the children of the node. + + + + + Gets a value indicating if this node has been closed or not. + + + + + Gets the collection of HTML attributes for the closing tag. May not be null. + + + + + Gets the closing tag of the node, null if the node is self-closing. + + + + + Gets the first child of the node. + + + + + Gets a value indicating whether the current node has any attributes. + + + + + Gets a value indicating whether this node has any child nodes. + + + + + Gets a value indicating whether the current node has any attributes on the closing tag. + + + + + Gets or sets the value of the 'id' HTML attribute. The document must have been parsed using the OptionUseIdAttribute set to true. + + + + + Gets or Sets the HTML between the start and end tags of the object. + + + + + Gets or Sets the text between the start and end tags of the object. + + + + + Gets the last child of the node. + + + + + Gets the line number of this node in the document. + + + + + Gets the column number of this node in the document. + + + + + Gets the stream position of the area between the opening and closing tag of the node, relative to the start of the document. + + + + + Gets the length of the area between the opening and closing tag of the node. + + + + + Gets the length of the entire node, opening and closing tag included. + + + + + Gets or sets this node's name. + + + + + Gets the HTML node immediately following this element. + + + + + Gets the type of this node. + + + + + The original unaltered name of the tag + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets the to which this node belongs. + + + + + Gets the parent of this node (for nodes that can have parents). + + + + + Gets the node immediately preceding this node. + + + + + Gets the stream position of this node in the document, relative to the start of the document. + + + + + Gets a valid XPath string that points to this node + + + + + Determines if an element node can be kept overlapped. + + The name of the element node to check. May not be null. + true if the name is the name of an element node that can be kept overlapped, false otherwise. + + + + Creates an HTML node from a string representing literal HTML. + + The HTML text. + The newly created node instance. + + + + Determines if an element node is a CDATA element node. + + The name of the element node to check. May not be null. + true if the name is the name of a CDATA element node, false otherwise. + + + + Determines if an element node is closed. + + The name of the element node to check. May not be null. + true if the name is the name of a closed element node, false otherwise. + + + + Determines if an element node is defined as empty. + + The name of the element node to check. May not be null. + true if the name is the name of an empty element node, false otherwise. + + + + Determines if a text corresponds to the closing tag of an node that can be kept overlapped. + + The text to check. May not be null. + true or false. + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Get Ancestors with matching name + + + + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Gets all anscestor nodes and the current node + + + + + + + Adds the specified node to the end of the list of children of this node. + + The node to add. May not be null. + The node added. + + + Sets child nodes identifier. + The chil node. + + + + Adds the specified node to the end of the list of children of this node. + + The node list to add. May not be null. + + + + Gets all Attributes with name + + + + + + + Creates a duplicate of the node + + + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + The cloned node. + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node. + + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node and the subtree under it. + + The node to duplicate. May not be null. + + + + Creates a duplicate of the node. + + The node to duplicate. May not be null. + true to recursively clone the subtree under the specified node, false to clone only the node itself. + + + + Gets all Descendant nodes for this node and each of child nodes + + The depth level of the node to parse in the html tree + the current element as an HtmlNode + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Get all descendant nodes with matching name + + + + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all descendant nodes including this node + + + + + + + Gets first generation child node matching name + + + + + + + Gets matching first generation child nodes matching name + + + + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Inserts the specified node immediately after the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newNode is placed after the refNode. + The node being inserted. + + + + Inserts the specified node immediately before the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newChild is placed before this node. + The node being inserted. + + + + Adds the specified node to the beginning of the list of children of this node. + + The node to add. May not be null. + The node added. + + + + Adds the specified node list to the beginning of the list of children of this node. + + The node list to add. May not be null. + + + + Removes node from parent collection + + + + + Removes all the children and/or attributes of the current node. + + + + + Removes all the children of the current node. + + + + Removes all id for node described by node. + The node. + + + + Removes the specified child node. + + The node being removed. May not be null. + The node removed. + + + + Removes the specified child node. + + The node being removed. May not be null. + true to keep grand children of the node, false otherwise. + The node removed. + + + + Replaces the child node oldChild with newChild node. + + The new node to put in the child list. + The node being replaced in the list. + The node replaced. + + + + Helper method to set the value of an attribute of this node. If the attribute is not found, it will be created automatically. + + The name of the attribute to set. May not be null. + The value for the attribute. + The corresponding attribute instance. + + + + Saves all the children of the node to the specified TextWriter. + + The TextWriter to which you want to save. + Identifies the level we are in starting at root with 0 + + + + Saves all the children of the node to a string. + + The saved string. + + + + Saves the current node to the specified TextWriter. + + The TextWriter to which you want to save. + identifies the level we are in starting at root with 0 + + + + Saves the current node to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Saves the current node to a string. + + The saved string. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + true to throw Error if class name exists, false otherwise. + + + + Removes the class attribute from the node. + + + + + Removes the class attribute from the node. + + true to throw Error if class name doesn't exist, false otherwise. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + true to throw Error if class name doesn't exist, false otherwise. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + true to throw Error if class name doesn't exist, false otherwise. + + + Gets the CSS Class from the node. + + The CSS Class from the node + + + + Check if the node class has the parameter class. + The class. + True if node class has the parameter class, false if not. + + + + Fill an object and go through it's properties and fill them too. + + Type of object to want to fill. It should have atleast one property that defined XPath. + If htmlDocument includes data , leave this parameter null. Else pass your specific htmldocument. + Returns an object of type T including Encapsulated data. + + + + Fill an object and go through it's properties and fill them too. + + Type of object to want to fill. It should have atleast one property that defined XPath. + If htmlDocument includes data , leave this parameter null. Else pass your specific htmldocument. + Returns an object of type targetType including Encapsulated data. + + + + Creates a new XPathNavigator object for navigating this HTML node. + + An XPathNavigator object. The XPathNavigator is positioned on the node from which the method was called. It is not positioned on the root of the document. + + + + Creates an XPathNavigator using the root of this document. + + + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Selects the first XmlNode that matches the XPath expression. + + The XPath expression. May not be null. + The first that matches the XPath query or a null reference if no matching node was found. + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Includes tools that GetEncapsulatedData method uses them. + + + + + Determine if a type define an attribute or not , supporting both .NetStandard and .NetFramework2.0 + + Type you want to test it. + Attribute that type must have or not. + If true , The type parameter define attributeType parameter. + + + + Retrive properties of type that defined . + + Type that you want to find it's XPath-Defined properties. + IEnumerable of property infos of a type , that defined specific attribute. + + + + Determine if a has implemented BUT is considered as NONE-IEnumerable ! + + The property info you want to test. + True if property info is IEnumerable. + + + + Returns T type(first generic type) of or . + + IEnumerable-Implemented property + List of generic types. + + + + Find and Return a mehtod that defined in a class by it's name. + + Type of class include requested method. + Name of requested method as string. + Method info of requested method. + + + + Create of given type. + + Type that you want to make a List of it. + Returns IList of given type. + + + + Returns the part of value of you want as . + + A htmlNode instance. + Attribute that includes ReturnType + String that choosen from HtmlNode as result. + + + + Returns parts of values of you want as . + + that you want to retrive each value. + A instnce incules . + Type of IList generic you want. + + + + + Simulate Func method to use in Lambada Expression. + + + + + + + + + This method works like Where method in LINQ. + + + + + + + + + Check if the type can instantiated. + + + + + + + Returns count of elements stored in IEnumerable of T + + + + + + + + Specify which part of is requested. + + + + + Just mark and flag classes to show they have properties that defined . + + + + + Includes XPath and . XPath for finding html tags and for specify which part of you want to return. + + + + + Represents a combined list and collection of HTML nodes. + + + + + Initialize the HtmlNodeCollection with the base parent node + + The base node of the collection + + + + Gets a given node from the list. + + + + + Get node with tag name + + + + + + + Gets the number of elements actually contained in the list. + + + + + Is collection read only + + + + + Gets the node at the specified index. + + + + + Add node to the collection + + + + + + Add node to the collection + + + + + + + Clears out the collection of HtmlNodes. Removes each nodes reference to parentnode, nextnode and prevnode + + + + + Gets existence of node in collection + + + + + + + Copy collection to array + + + + + + + Get Enumerator + + + + + + Get Explicit Enumerator + + + + + + Get index of node + + + + + + + Insert node at index + + + + + + + Remove node + + + + + + + Remove at index + + + + + + Get first instance of node in supplied collection + + + + + + + + Add node to the end of the collection + + + + + + Get first instance of node with name + + + + + + + Get index of node + + + + + + + Add node to the beginning of the collection + + + + + + Remove node at index + + + + + + + Replace node at index + + + + + + + Get all node descended from this collection + + + + + + Get all node descended from this collection with matching name + + + + + + Gets all first generation elements in collection + + + + + + Gets all first generation elements matching name + + + + + + + All first generation nodes in collection + + + + + + Represents an HTML navigator on an HTML document seen as a data store. + + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + The minimum buffer size. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a TextReader. + + The TextReader used to feed the HTML data into the document. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + The character encoding to use. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Gets the base URI for the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the current HTML document. + + + + + Gets the current HTML node. + + + + + Gets a value indicating whether the current node has child nodes. + + + + + Gets a value indicating whether the current node has child nodes. + + + + + Gets a value indicating whether the current node is an empty element. + + + + + Gets the name of the current HTML node without the namespace prefix. + + + + + Gets the qualified name of the current node. + + + + + Gets the namespace URI (as defined in the W3C Namespace Specification) of the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the associated with this implementation. + + + + + Gets the type of the current node. + + + + + Gets the prefix associated with the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the text value of the current node. + + + + + Gets the xml:lang scope for the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Creates a new HtmlNavigator positioned at the same node as this HtmlNavigator. + + A new HtmlNavigator object positioned at the same node as the original HtmlNavigator. + + + + Gets the value of the HTML attribute with the specified LocalName and NamespaceURI. + + The local name of the HTML attribute. + The namespace URI of the attribute. Unsupported with the HtmlNavigator implementation. + The value of the specified HTML attribute. String.Empty or null if a matching attribute is not found or if the navigator is not positioned on an element node. + + + + Returns the value of the namespace node corresponding to the specified local name. + Always returns string.Empty for the HtmlNavigator implementation. + + The local name of the namespace node. + Always returns string.Empty for the HtmlNavigator implementation. + + + + Determines whether the current HtmlNavigator is at the same position as the specified HtmlNavigator. + + The HtmlNavigator that you want to compare against. + true if the two navigators have the same position, otherwise, false. + + + + Moves to the same position as the specified HtmlNavigator. + + The HtmlNavigator positioned on the node that you want to move to. + true if successful, otherwise false. If false, the position of the navigator is unchanged. + + + + Moves to the HTML attribute with matching LocalName and NamespaceURI. + + The local name of the HTML attribute. + The namespace URI of the attribute. Unsupported with the HtmlNavigator implementation. + true if the HTML attribute is found, otherwise, false. If false, the position of the navigator does not change. + + + + Moves to the first sibling of the current node. + + true if the navigator is successful moving to the first sibling node, false if there is no first sibling or if the navigator is currently positioned on an attribute node. + + + + Moves to the first HTML attribute. + + true if the navigator is successful moving to the first HTML attribute, otherwise, false. + + + + Moves to the first child of the current node. + + true if there is a first child node, otherwise false. + + + + Moves the XPathNavigator to the first namespace node of the current element. + Always returns false for the HtmlNavigator implementation. + + An XPathNamespaceScope value describing the namespace scope. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the node that has an attribute of type ID whose value matches the specified string. + + A string representing the ID value of the node to which you want to move. This argument does not need to be atomized. + true if the move was successful, otherwise false. If false, the position of the navigator is unchanged. + + + + Moves the XPathNavigator to the namespace node with the specified local name. + Always returns false for the HtmlNavigator implementation. + + The local name of the namespace node. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the next sibling of the current node. + + true if the navigator is successful moving to the next sibling node, false if there are no more siblings or if the navigator is currently positioned on an attribute node. If false, the position of the navigator is unchanged. + + + + Moves to the next HTML attribute. + + + + + + Moves the XPathNavigator to the next namespace node. + Always returns falsefor the HtmlNavigator implementation. + + An XPathNamespaceScope value describing the namespace scope. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the parent of the current node. + + true if there is a parent node, otherwise false. + + + + Moves to the previous sibling of the current node. + + true if the navigator is successful moving to the previous sibling node, false if there is no previous sibling or if the navigator is currently positioned on an attribute node. + + + + Moves to the root node to which the current node belongs. + + + + + Represents the type of a node. + + + + + The root of a document. + + + + + An HTML element. + + + + + An HTML comment. + + + + + A text node is always the child of an element or a document node. + + + + + Represents a parsing error found during document parsing. + + + + + Gets the type of error. + + + + + Gets the line number of this error in the document. + + + + + Gets the column number of this error in the document. + + + + + Gets a description for the error. + + + + + Gets the the full text of the line containing the error. + + + + + Gets the absolute stream position of this error in the document, relative to the start of the document. + + + + + Represents the type of parsing error. + + + + + A tag was not closed. + + + + + A tag was not opened. + + + + + There is a charset mismatch between stream and declared (META) encoding. + + + + + An end tag was not required. + + + + + An end tag is invalid at this position. + + + + + Represents an HTML text node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets or Sets the text of the node. + + + + + A utility class to get HTML document from HTTP. + + + + + Represents the method that will handle the PostResponse event. + + + + + Represents the method that will handle the PreHandleDocument event. + + + + + Represents the method that will handle the PreRequest event. + + + + + Occurs after an HTTP request has been executed. + + + + + Occurs before an HTML document is handled. + + + + + Occurs before an HTTP request is executed. + + + + + Gets or Sets a value indicating if document encoding must be automatically detected. + + + + + Gets or sets the Encoding used to override the response stream from any web request + + + + + Gets or Sets a value indicating whether to get document only from the cache. + If this is set to true and document is not found in the cache, nothing will be loaded. + + + + + Gets or Sets a value indicating whether to get document from the cache if exists, otherwise from the web + A value indicating whether to get document from the cache if exists, otherwise from the web + + + + + Gets or Sets the cache path. If null, no caching mechanism will be used. + + + + + Gets a value indicating if the last document was retrieved from the cache. + + + + + Gets the last request duration in milliseconds. + + + + + Gets the URI of the Internet resource that actually responded to the request. + + + + + Gets the last request status. + + + + + Gets or Sets the size of the buffer used for memory operations. + + + + + Gets or Sets a value indicating if cookies will be stored. + + + + Gets or sets a value indicating whether redirect should be captured instead of the current location. + True if capture redirect, false if not. + + + + Gets or Sets the User Agent HTTP 1.1 header sent on any webrequest + + + + + Gets or Sets a value indicating whether the caching mechanisms should be used or not. + + + + + Gets the MIME content type for a given path extension. + + The input path extension. + The default content type to return if any error occurs. + The path extension's MIME content type. + + + + Gets the path extension for a given MIME content type. + + The input MIME content type. + The default path extension to return if any error occurs. + The MIME content type's path extension. + + + + Creates an instance of the given type from the specified Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The requested type. + An newly created instance. + + + + Gets an HTML document from an Internet resource and saves it to the specified file. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + + + Gets an HTML document from an Internet resource and saves it to the specified file. - Proxy aware + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + + + + + Gets an HTML document from an Internet resource and saves it to the specified file. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + + + + Gets an HTML document from an Internet resource and saves it to the specified file. Understands Proxies + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + + + + + Gets the cache file path for a specified url. + + The url fo which to retrieve the cache path. May not be null. + The cache file path. + + + + Gets an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + A new HTML document. + + + + Gets an HTML document from an Internet resource. + + The requested Uri, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + A new HTML document. + + + + Gets an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + Host to use for Proxy + Port the Proxy is on + User Id for Authentication + Password for Authentication + A new HTML document. + + + + Gets an HTML document from an Internet resource. + + The requested Uri, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + Host to use for Proxy + Port the Proxy is on + User Id for Authentication + Password for Authentication + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + Proxy to use with this request + Credentials to use when authenticating + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested Uri, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + Proxy to use with this request + Credentials to use when authenticating + A new HTML document. + + + + Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The XmlTextWriter to which you want to save to. + + + Gets or sets the web browser timeout. + + + + Gets or sets the web browser delay. + + + Loads HTML using a WebBrowser and Application.DoEvents. + Thrown when an exception error condition occurs. + The requested URL, such as "http://html-agility-pack.net/". + A new HTML document. + + + Loads HTML using a WebBrowser and Application.DoEvents. + Thrown when an exception error condition occurs. + The requested URL, such as "http://html-agility-pack.net/". + (Optional) Check if the browser script has all been run and completed. + A new HTML document. + + + Loads HTML using a WebBrowser and Application.DoEvents. + Thrown when an exception error condition occurs. + The requested URL, such as "http://html-agility-pack.net/". + (Optional) Check if the browser script has all been run and completed. + A new HTML document. + + + + Creates an instance of the given type from the specified Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The URL that specifies the XSLT stylesheet to load. + An containing the namespace-qualified arguments used as input to the transform. + The requested type. + An newly created instance. + + + + Creates an instance of the given type from the specified Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The URL that specifies the XSLT stylesheet to load. + An containing the namespace-qualified arguments used as input to the transform. + The requested type. + A file path where the temporary XML before transformation will be saved. Mostly used for debugging purposes. + An newly created instance. + + + + Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter, after an XSLT transformation. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The URL that specifies the XSLT stylesheet to load. + An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. + The XmlTextWriter to which you want to save. + + + + Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter, after an XSLT transformation. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". May not be null. + The URL that specifies the XSLT stylesheet to load. + An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. + The XmlTextWriter to which you want to save. + A file path where the temporary XML before transformation will be saved. Mostly used for debugging purposes. + + + + Wraps getting AppDomain permissions + + + + + Checks to see if Registry access is available to the caller + + + + + + Checks to see if DNS information is available to the caller + + + + + + An interface for getting permissions of the running application + + + + + Checks to see if Registry access is available to the caller + + + + + + Checks to see if DNS information is available to the caller + + + + + + Represents an exception thrown by the HtmlWeb utility class. + + + + + Creates an instance of the HtmlWebException. + + The exception's message. + + + + Represents a document with mixed code and text. ASP, ASPX, JSP, are good example of such documents. + + + + + Gets or sets the token representing code end. + + + + + Gets or sets the token representing code start. + + + + + Gets or sets the token representing code directive. + + + + + Gets or sets the token representing response write directive. + + + + + Creates a mixed code document instance. + + + + + Gets the code represented by the mixed code document seen as a template. + + + + + Gets the list of code fragments in the document. + + + + + Gets the list of all fragments in the document. + + + + + Gets the encoding of the stream used to read the document. + + + + + Gets the list of text fragments in the document. + + + + + Create a code fragment instances. + + The newly created code fragment instance. + + + + Create a text fragment instances. + + The newly created text fragment instance. + + + + Loads a mixed code document from a stream. + + The input stream. + + + + Loads a mixed code document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Loads the mixed code document from the specified TextReader. + + The TextReader used to feed the HTML data into the document. + + + + Loads a mixed document from a text + + The text to load. + + + + Saves the mixed document to the specified stream. + + The stream to which you want to save. + + + + Saves the mixed document to the specified stream. + + The stream to which you want to save. + The character encoding to use. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + The character encoding to use. + + + + Saves the mixed document to the specified StreamWriter. + + The StreamWriter to which you want to save. + + + + Saves the mixed document to the specified TextWriter. + + The TextWriter to which you want to save. + + + + Represents a fragment of code in a mixed code document. + + + + + Gets the fragment code text. + + + + + Represents a base class for fragments in a mixed code document. + + + + + Gets the fragement text. + + + + + Gets the type of fragment. + + + + + Gets the line number of the fragment. + + + + + Gets the line position (column) of the fragment. + + + + + Gets the fragment position in the document's stream. + + + + + Represents a list of mixed code fragments. + + + + + Gets the Document + + + + + Gets the number of fragments contained in the list. + + + + + Gets a fragment from the list using its index. + + + + + Gets an enumerator that can iterate through the fragment list. + + + + + Appends a fragment to the list of fragments. + + The fragment to append. May not be null. + + + + Gets an enumerator that can iterate through the fragment list. + + + + + Prepends a fragment to the list of fragments. + + The fragment to append. May not be null. + + + + Remove a fragment from the list of fragments. If this fragment was not in the list, an exception will be raised. + + The fragment to remove. May not be null. + + + + Remove all fragments from the list. + + + + + Remove a fragment from the list of fragments, using its index in the list. + + The index of the fragment to remove. + + + + Represents a fragment enumerator. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + Advances the enumerator to the next element of the collection. + + true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. + + + + Sets the enumerator to its initial position, which is before the first element in the collection. + + + + + Represents the type of fragment in a mixed code document. + + + + + The fragment contains code. + + + + + The fragment contains text. + + + + + Represents a fragment of text in a mixed code document. + + + + + Gets the fragment text. + + + + diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/Net40/HtmlAgilityPack.dll b/Packages/HtmlAgilityPack.1.9.2/lib/Net40/HtmlAgilityPack.dll new file mode 100644 index 0000000..429bb15 Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/Net40/HtmlAgilityPack.dll differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/Net40/HtmlAgilityPack.pdb b/Packages/HtmlAgilityPack.1.9.2/lib/Net40/HtmlAgilityPack.pdb new file mode 100644 index 0000000..c5a0a75 Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/Net40/HtmlAgilityPack.pdb differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/Net45/HtmlAgilityPack.XML b/Packages/HtmlAgilityPack.1.9.2/lib/Net45/HtmlAgilityPack.XML new file mode 100644 index 0000000..d5629ab --- /dev/null +++ b/Packages/HtmlAgilityPack.1.9.2/lib/Net45/HtmlAgilityPack.XML @@ -0,0 +1,2997 @@ + + + + HtmlAgilityPack + + + + + A utility class to compute CRC32. + + + + + Compute a checksum for a given array of bytes. + + The array of bytes to compute the checksum for. + The computed checksum. + + + + Compute a checksum for a given string. + + The string to compute the checksum for. + The computed checksum. + + + + Represents an HTML attribute. + + + + + Gets the line number of this attribute in the document. + + + + + Gets the column number of this attribute in the document. + + + + + Gets the stream position of the value of this attribute in the document, relative to the start of the document. + + + + + Gets the length of the value. + + + + + Gets the qualified name of the attribute. + + + + + Name of attribute with original case + + + + + Gets the HTML document to which this attribute belongs. + + + + + Gets the HTML node to which this attribute belongs. + + + + + Specifies what type of quote the data should be wrapped in + + + + + Gets the stream position of this attribute in the document, relative to the start of the document. + + + + + Gets or sets the value of the attribute. + + + + + Gets the DeEntitized value of the attribute. + + + + + Gets a valid XPath string that points to this Attribute + + + + + Compares the current instance with another attribute. Comparison is based on attributes' name. + + An attribute to compare with this instance. + A 32-bit signed integer that indicates the relative order of the names comparison. + + + + Creates a duplicate of this attribute. + + The cloned attribute. + + + + Removes this attribute from it's parents collection + + + + + An Enum representing different types of Quotes used for surrounding attribute values + + + + + A single quote mark ' + + + + + A double quote mark " + + + + + Represents a combined list and collection of HTML nodes. + + + + + Gets the number of elements actually contained in the list. + + + + + Gets readonly status of colelction + + + + + Gets the attribute at the specified index. + + + + + Gets a given attribute from the list using its name. + + + + + Adds supplied item to collection + + + + + + Explicit clear + + + + + Retreives existence of supplied item + + + + + + + Copies collection to array + + + + + + + Get Explicit enumerator + + + + + + Explicit non-generic enumerator + + + + + + Retrieves the index for the supplied item, -1 if not found + + + + + + + Inserts given item into collection at supplied index + + + + + + + Explicit collection remove + + + + + + + Removes the attribute at the specified index. + + The index of the attribute to remove. + + + + Adds a new attribute to the collection with the given values + + + + + + + Inserts the specified attribute as the last attribute in the collection. + + The attribute to insert. May not be null. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The value of the attribute to insert. + The appended attribute. + + + + Checks for existance of attribute with given name + + + + + + + Inserts the specified attribute as the first node in the collection. + + The attribute to insert. May not be null. + The prepended attribute. + + + + Removes a given attribute from the list. + + The attribute to remove. May not be null. + + + + Removes an attribute from the list, using its name. If there are more than one attributes with this name, they will all be removed. + + The attribute's name. May not be null. + + + + Remove all attributes in the list. + + + + + Returns all attributes with specified name. Handles case insentivity + + Name of the attribute + + + + + Removes all attributes from the collection + + + + + Clears the attribute collection + + + + + Represents an HTML comment. + + + + + Gets or Sets the comment text of the node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Represents a complete HTML document. + + + + True to disable, false to enable the behavaior tag p. + + + Default builder to use in the HtmlDocument constructor + + + Action to execute before the Parse is executed + + + + Defines the max level we would go deep into the html document + + + + The HtmlDocument Text. Careful if you modify it. + + + True to stay backward compatible with previous version of HAP. This option does not guarantee 100% compatibility. + + + + Adds Debugging attributes to node. Default is false. + + + + + Defines if closing for non closed nodes must be done at the end or directly in the document. + Setting this to true can actually change how browsers render the page. Default is false. + + + + + Defines if non closed nodes will be checked at the end of parsing. Default is true. + + + + + Defines if a checksum must be computed for the document while parsing. Default is false. + + + + + Defines if SelectNodes method will return null or empty collection when no node matched the XPath expression. + Setting this to true will return empty collection and false will return null. Default is false. + + + + True to disable, false to enable the server side code. + + + + Defines the default stream encoding to use. Default is System.Text.Encoding.Default. + + + + + Defines if source text must be extracted while parsing errors. + If the document has a lot of errors, or cascading errors, parsing performance can be dramatically affected if set to true. + Default is false. + + + + + Defines the maximum length of source text or parse errors. Default is 100. + + + + + Defines if LI, TR, TH, TD tags must be partially fixed when nesting errors are detected. Default is false. + + + + + Defines if output must conform to XML, instead of HTML. Default is false. + + + + + If used together with and enabled, Xml namespaces in element names are preserved. Default is false. + + + + + Defines if attribute value output must be optimized (not bound with double quotes if it is possible). Default is false. + + + + + Defines if name must be output with it's original case. Useful for asp.net tags and attributes. Default is false. + + + + + Defines if name must be output in uppercase. Default is false. + + + + + Defines if declared encoding must be read from the document. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node. + Default is true. + + + + + Defines the name of a node that will throw the StopperNodeException when found as an end node. Default is null. + + + + + Defines if the 'id' attribute must be specifically used. Default is true. + + + + + Defines if empty nodes must be written as closed during output. Default is false. + + + + + Creates an instance of an HTML document. + + + + Gets the parsed text. + The parsed text. + + + + Defines the max level we would go deep into the html document. If this depth level is exceeded, and exception is + thrown. + + + + + Gets the document CRC32 checksum if OptionComputeChecksum was set to true before parsing, 0 otherwise. + + + + + Gets the document's declared encoding. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node (pre-HTML5) or the meta charset="XXXXX" html node (HTML5). + + + + + Gets the root node of the document. + + + + + Gets the document's output encoding. + + + + + Gets a list of parse errors found in the document. + + + + + Gets the remaining text. + Will always be null if OptionStopperNodeName is null. + + + + + Gets the offset of Remainder in the original Html text. + If OptionStopperNodeName is null, this will return the length of the original Html text. + + + + + Gets the document's stream encoding. + + + + + Gets a valid XML name. + + Any text. + A string that is a valid XML name. + + + + Applies HTML encoding to a specified string. + + The input string to encode. May not be null. + The encoded string. + + + + Determines if the specified character is considered as a whitespace character. + + The character to check. + true if if the specified character is considered as a whitespace character. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The new HTML attribute. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The value of the attribute. + The new HTML attribute. + + + + Creates an HTML comment node. + + The new HTML comment node. + + + + Creates an HTML comment node with the specified comment text. + + The comment text. May not be null. + The new HTML comment node. + + + + Creates an HTML element node with the specified name. + + The qualified name of the element. May not be null. + The new HTML node. + + + + Creates an HTML text node. + + The new HTML text node. + + + + Creates an HTML text node with the specified text. + + The text of the node. May not be null. + The new HTML text node. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The html is checked. + The detected encoding. + + + + Detects the encoding of an HTML text provided on a TextReader. + + The TextReader used to feed the HTML. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML text. + + The input html text. May not be null. + The detected encoding. + + + + Gets the HTML node with the specified 'id' attribute value. + + The attribute id to match. May not be null. + The HTML node with the matching id or null if not found. + + + + Loads an HTML document from a stream. + + The input stream. + + + + Loads an HTML document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + The minimum buffer size. + + + + Loads the HTML document from the specified TextReader. + + The TextReader used to feed the HTML data into the document. May not be null. + + + + Loads the HTML document from the specified string. + + String containing the HTML document to load. May not be null. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. May not be null. + The character encoding to use. May not be null. + + + + Saves the HTML document to the specified StreamWriter. + + The StreamWriter to which you want to save. + + + + Saves the HTML document to the specified TextWriter. + + The TextWriter to which you want to save. May not be null. + + + + Saves the HTML document to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Detects the encoding of an HTML document from a file first, and then loads the file. + + The complete file path to be read. + + + + Detects the encoding of an HTML document from a file first, and then loads the file. + + The complete file path to be read. May not be null. + true to detect encoding, false otherwise. + + + + Detects the encoding of an HTML file. + + Path for the file containing the HTML document to detect. May not be null. + The detected encoding. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. May not be null. + The character encoding to use. May not be null. + + + + Creates a new XPathNavigator object for navigating this HTML document. + + An XPathNavigator object. The XPathNavigator is positioned on the root of the document. + + + + Flags that describe the behavior of an Element node. + + + + + The node is a CDATA node. + + + + + The node is empty. META or IMG are example of such nodes. + + + + + The node will automatically be closed during parsing. + + + + + The node can overlap. + + + + + A utility class to replace special characters by entities and vice-versa. + Follows HTML 4.0 specification found at http://www.w3.org/TR/html4/sgml/entities.html + Follows Additional specification found at https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references + See also: https://html.spec.whatwg.org/multipage/named-characters.html#named-character-references + + + + + A collection of entities indexed by name. + + + + + A collection of entities indexed by value. + + + + + Replace known entities by characters. + + The source text. + The result text. + + + + Clone and entitize an HtmlNode. This will affect attribute values and nodes' text. It will also entitize all child nodes. + + The node to entitize. + An entitized cloned node. + + + + Replace characters above 127 by entities. + + The source text. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + If set to true, the [quote], [ampersand], [lower than] and [greather than] characters will be entitized. + The result text + + + + Represents an HTML node. + + + + + Gets the name of a comment node. It is actually defined as '#comment'. + + + + + Gets the name of the document node. It is actually defined as '#document'. + + + + + Gets the name of a text node. It is actually defined as '#text'. + + + + + Gets a collection of flags that define specific behaviors for specific element nodes. + The table contains a DictionaryEntry list with the lowercase tag name as the Key, and a combination of HtmlElementFlags as the Value. + + + + + Initialize HtmlNode. Builds a list of all tags that have special allowances + + + + + Initializes HtmlNode, providing type, owner and where it exists in a collection + + + + + + + + Gets the collection of HTML attributes for this node. May not be null. + + + + + Gets all the children of the node. + + + + + Gets a value indicating if this node has been closed or not. + + + + + Gets the collection of HTML attributes for the closing tag. May not be null. + + + + + Gets the closing tag of the node, null if the node is self-closing. + + + + + Gets the first child of the node. + + + + + Gets a value indicating whether the current node has any attributes. + + + + + Gets a value indicating whether this node has any child nodes. + + + + + Gets a value indicating whether the current node has any attributes on the closing tag. + + + + + Gets or sets the value of the 'id' HTML attribute. The document must have been parsed using the OptionUseIdAttribute set to true. + + + + + Gets or Sets the HTML between the start and end tags of the object. + + + + + Gets or Sets the text between the start and end tags of the object. + + + + + Gets the last child of the node. + + + + + Gets the line number of this node in the document. + + + + + Gets the column number of this node in the document. + + + + + Gets the stream position of the area between the opening and closing tag of the node, relative to the start of the document. + + + + + Gets the length of the area between the opening and closing tag of the node. + + + + + Gets the length of the entire node, opening and closing tag included. + + + + + Gets or sets this node's name. + + + + + Gets the HTML node immediately following this element. + + + + + Gets the type of this node. + + + + + The original unaltered name of the tag + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets the to which this node belongs. + + + + + Gets the parent of this node (for nodes that can have parents). + + + + + Gets the node immediately preceding this node. + + + + + Gets the stream position of this node in the document, relative to the start of the document. + + + + + Gets a valid XPath string that points to this node + + + + + Determines if an element node can be kept overlapped. + + The name of the element node to check. May not be null. + true if the name is the name of an element node that can be kept overlapped, false otherwise. + + + + Creates an HTML node from a string representing literal HTML. + + The HTML text. + The newly created node instance. + + + + Determines if an element node is a CDATA element node. + + The name of the element node to check. May not be null. + true if the name is the name of a CDATA element node, false otherwise. + + + + Determines if an element node is closed. + + The name of the element node to check. May not be null. + true if the name is the name of a closed element node, false otherwise. + + + + Determines if an element node is defined as empty. + + The name of the element node to check. May not be null. + true if the name is the name of an empty element node, false otherwise. + + + + Determines if a text corresponds to the closing tag of an node that can be kept overlapped. + + The text to check. May not be null. + true or false. + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Get Ancestors with matching name + + + + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Gets all anscestor nodes and the current node + + + + + + + Adds the specified node to the end of the list of children of this node. + + The node to add. May not be null. + The node added. + + + Sets child nodes identifier. + The chil node. + + + + Adds the specified node to the end of the list of children of this node. + + The node list to add. May not be null. + + + + Gets all Attributes with name + + + + + + + Creates a duplicate of the node + + + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + The cloned node. + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node. + + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node and the subtree under it. + + The node to duplicate. May not be null. + + + + Creates a duplicate of the node. + + The node to duplicate. May not be null. + true to recursively clone the subtree under the specified node, false to clone only the node itself. + + + + Gets all Descendant nodes for this node and each of child nodes + + The depth level of the node to parse in the html tree + the current element as an HtmlNode + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Get all descendant nodes with matching name + + + + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all descendant nodes including this node + + + + + + + Gets first generation child node matching name + + + + + + + Gets matching first generation child nodes matching name + + + + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Inserts the specified node immediately after the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newNode is placed after the refNode. + The node being inserted. + + + + Inserts the specified node immediately before the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newChild is placed before this node. + The node being inserted. + + + + Adds the specified node to the beginning of the list of children of this node. + + The node to add. May not be null. + The node added. + + + + Adds the specified node list to the beginning of the list of children of this node. + + The node list to add. May not be null. + + + + Removes node from parent collection + + + + + Removes all the children and/or attributes of the current node. + + + + + Removes all the children of the current node. + + + + Removes all id for node described by node. + The node. + + + + Removes the specified child node. + + The node being removed. May not be null. + The node removed. + + + + Removes the specified child node. + + The node being removed. May not be null. + true to keep grand children of the node, false otherwise. + The node removed. + + + + Replaces the child node oldChild with newChild node. + + The new node to put in the child list. + The node being replaced in the list. + The node replaced. + + + + Helper method to set the value of an attribute of this node. If the attribute is not found, it will be created automatically. + + The name of the attribute to set. May not be null. + The value for the attribute. + The corresponding attribute instance. + + + + Saves all the children of the node to the specified TextWriter. + + The TextWriter to which you want to save. + Identifies the level we are in starting at root with 0 + + + + Saves all the children of the node to a string. + + The saved string. + + + + Saves the current node to the specified TextWriter. + + The TextWriter to which you want to save. + identifies the level we are in starting at root with 0 + + + + Saves the current node to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Saves the current node to a string. + + The saved string. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + true to throw Error if class name exists, false otherwise. + + + + Removes the class attribute from the node. + + + + + Removes the class attribute from the node. + + true to throw Error if class name doesn't exist, false otherwise. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + true to throw Error if class name doesn't exist, false otherwise. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + true to throw Error if class name doesn't exist, false otherwise. + + + Gets the CSS Class from the node. + + The CSS Class from the node + + + + Check if the node class has the parameter class. + The class. + True if node class has the parameter class, false if not. + + + + Fill an object and go through it's properties and fill them too. + + Type of object to want to fill. It should have atleast one property that defined XPath. + If htmlDocument includes data , leave this parameter null. Else pass your specific htmldocument. + Returns an object of type T including Encapsulated data. + + + + Fill an object and go through it's properties and fill them too. + + Type of object to want to fill. It should have atleast one property that defined XPath. + If htmlDocument includes data , leave this parameter null. Else pass your specific htmldocument. + Returns an object of type targetType including Encapsulated data. + + + + Creates a new XPathNavigator object for navigating this HTML node. + + An XPathNavigator object. The XPathNavigator is positioned on the node from which the method was called. It is not positioned on the root of the document. + + + + Creates an XPathNavigator using the root of this document. + + + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Selects the first XmlNode that matches the XPath expression. + + The XPath expression. May not be null. + The first that matches the XPath query or a null reference if no matching node was found. + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Includes tools that GetEncapsulatedData method uses them. + + + + + Determine if a type define an attribute or not , supporting both .NetStandard and .NetFramework2.0 + + Type you want to test it. + Attribute that type must have or not. + If true , The type parameter define attributeType parameter. + + + + Retrive properties of type that defined . + + Type that you want to find it's XPath-Defined properties. + IEnumerable of property infos of a type , that defined specific attribute. + + + + Determine if a has implemented BUT is considered as NONE-IEnumerable ! + + The property info you want to test. + True if property info is IEnumerable. + + + + Returns T type(first generic type) of or . + + IEnumerable-Implemented property + List of generic types. + + + + Find and Return a mehtod that defined in a class by it's name. + + Type of class include requested method. + Name of requested method as string. + Method info of requested method. + + + + Create of given type. + + Type that you want to make a List of it. + Returns IList of given type. + + + + Returns the part of value of you want as . + + A htmlNode instance. + Attribute that includes ReturnType + String that choosen from HtmlNode as result. + + + + Returns parts of values of you want as . + + that you want to retrive each value. + A instnce incules . + Type of IList generic you want. + + + + + Simulate Func method to use in Lambada Expression. + + + + + + + + + This method works like Where method in LINQ. + + + + + + + + + Check if the type can instantiated. + + + + + + + Returns count of elements stored in IEnumerable of T + + + + + + + + Specify which part of is requested. + + + + + Just mark and flag classes to show they have properties that defined . + + + + + Includes XPath and . XPath for finding html tags and for specify which part of you want to return. + + + + + Represents a combined list and collection of HTML nodes. + + + + + Initialize the HtmlNodeCollection with the base parent node + + The base node of the collection + + + + Gets a given node from the list. + + + + + Get node with tag name + + + + + + + Gets the number of elements actually contained in the list. + + + + + Is collection read only + + + + + Gets the node at the specified index. + + + + + Add node to the collection + + + + + + Add node to the collection + + + + + + + Clears out the collection of HtmlNodes. Removes each nodes reference to parentnode, nextnode and prevnode + + + + + Gets existence of node in collection + + + + + + + Copy collection to array + + + + + + + Get Enumerator + + + + + + Get Explicit Enumerator + + + + + + Get index of node + + + + + + + Insert node at index + + + + + + + Remove node + + + + + + + Remove at index + + + + + + Get first instance of node in supplied collection + + + + + + + + Add node to the end of the collection + + + + + + Get first instance of node with name + + + + + + + Get index of node + + + + + + + Add node to the beginning of the collection + + + + + + Remove node at index + + + + + + + Replace node at index + + + + + + + Get all node descended from this collection + + + + + + Get all node descended from this collection with matching name + + + + + + Gets all first generation elements in collection + + + + + + Gets all first generation elements matching name + + + + + + + All first generation nodes in collection + + + + + + Represents an HTML navigator on an HTML document seen as a data store. + + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + The minimum buffer size. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a TextReader. + + The TextReader used to feed the HTML data into the document. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + The character encoding to use. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Gets the base URI for the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the current HTML document. + + + + + Gets the current HTML node. + + + + + Gets a value indicating whether the current node has child nodes. + + + + + Gets a value indicating whether the current node has child nodes. + + + + + Gets a value indicating whether the current node is an empty element. + + + + + Gets the name of the current HTML node without the namespace prefix. + + + + + Gets the qualified name of the current node. + + + + + Gets the namespace URI (as defined in the W3C Namespace Specification) of the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the associated with this implementation. + + + + + Gets the type of the current node. + + + + + Gets the prefix associated with the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the text value of the current node. + + + + + Gets the xml:lang scope for the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Creates a new HtmlNavigator positioned at the same node as this HtmlNavigator. + + A new HtmlNavigator object positioned at the same node as the original HtmlNavigator. + + + + Gets the value of the HTML attribute with the specified LocalName and NamespaceURI. + + The local name of the HTML attribute. + The namespace URI of the attribute. Unsupported with the HtmlNavigator implementation. + The value of the specified HTML attribute. String.Empty or null if a matching attribute is not found or if the navigator is not positioned on an element node. + + + + Returns the value of the namespace node corresponding to the specified local name. + Always returns string.Empty for the HtmlNavigator implementation. + + The local name of the namespace node. + Always returns string.Empty for the HtmlNavigator implementation. + + + + Determines whether the current HtmlNavigator is at the same position as the specified HtmlNavigator. + + The HtmlNavigator that you want to compare against. + true if the two navigators have the same position, otherwise, false. + + + + Moves to the same position as the specified HtmlNavigator. + + The HtmlNavigator positioned on the node that you want to move to. + true if successful, otherwise false. If false, the position of the navigator is unchanged. + + + + Moves to the HTML attribute with matching LocalName and NamespaceURI. + + The local name of the HTML attribute. + The namespace URI of the attribute. Unsupported with the HtmlNavigator implementation. + true if the HTML attribute is found, otherwise, false. If false, the position of the navigator does not change. + + + + Moves to the first sibling of the current node. + + true if the navigator is successful moving to the first sibling node, false if there is no first sibling or if the navigator is currently positioned on an attribute node. + + + + Moves to the first HTML attribute. + + true if the navigator is successful moving to the first HTML attribute, otherwise, false. + + + + Moves to the first child of the current node. + + true if there is a first child node, otherwise false. + + + + Moves the XPathNavigator to the first namespace node of the current element. + Always returns false for the HtmlNavigator implementation. + + An XPathNamespaceScope value describing the namespace scope. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the node that has an attribute of type ID whose value matches the specified string. + + A string representing the ID value of the node to which you want to move. This argument does not need to be atomized. + true if the move was successful, otherwise false. If false, the position of the navigator is unchanged. + + + + Moves the XPathNavigator to the namespace node with the specified local name. + Always returns false for the HtmlNavigator implementation. + + The local name of the namespace node. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the next sibling of the current node. + + true if the navigator is successful moving to the next sibling node, false if there are no more siblings or if the navigator is currently positioned on an attribute node. If false, the position of the navigator is unchanged. + + + + Moves to the next HTML attribute. + + + + + + Moves the XPathNavigator to the next namespace node. + Always returns falsefor the HtmlNavigator implementation. + + An XPathNamespaceScope value describing the namespace scope. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the parent of the current node. + + true if there is a parent node, otherwise false. + + + + Moves to the previous sibling of the current node. + + true if the navigator is successful moving to the previous sibling node, false if there is no previous sibling or if the navigator is currently positioned on an attribute node. + + + + Moves to the root node to which the current node belongs. + + + + + Represents the type of a node. + + + + + The root of a document. + + + + + An HTML element. + + + + + An HTML comment. + + + + + A text node is always the child of an element or a document node. + + + + + Represents a parsing error found during document parsing. + + + + + Gets the type of error. + + + + + Gets the line number of this error in the document. + + + + + Gets the column number of this error in the document. + + + + + Gets a description for the error. + + + + + Gets the the full text of the line containing the error. + + + + + Gets the absolute stream position of this error in the document, relative to the start of the document. + + + + + Represents the type of parsing error. + + + + + A tag was not closed. + + + + + A tag was not opened. + + + + + There is a charset mismatch between stream and declared (META) encoding. + + + + + An end tag was not required. + + + + + An end tag is invalid at this position. + + + + + Represents an HTML text node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets or Sets the text of the node. + + + + + A utility class to get HTML document from HTTP. + + + + + Represents the method that will handle the PostResponse event. + + + + + Represents the method that will handle the PreHandleDocument event. + + + + + Represents the method that will handle the PreRequest event. + + + + + Occurs after an HTTP request has been executed. + + + + + Occurs before an HTML document is handled. + + + + + Occurs before an HTTP request is executed. + + + + + Gets or Sets a value indicating if document encoding must be automatically detected. + + + + + Gets or sets the Encoding used to override the response stream from any web request + + + + + Gets or Sets a value indicating whether to get document only from the cache. + If this is set to true and document is not found in the cache, nothing will be loaded. + + + + + Gets or Sets a value indicating whether to get document from the cache if exists, otherwise from the web + A value indicating whether to get document from the cache if exists, otherwise from the web + + + + + Gets or Sets the cache path. If null, no caching mechanism will be used. + + + + + Gets a value indicating if the last document was retrieved from the cache. + + + + + Gets the last request duration in milliseconds. + + + + + Gets the URI of the Internet resource that actually responded to the request. + + + + + Gets the last request status. + + + + + Gets or Sets the size of the buffer used for memory operations. + + + + + Gets or Sets a value indicating if cookies will be stored. + + + + Gets or sets a value indicating whether redirect should be captured instead of the current location. + True if capture redirect, false if not. + + + + Gets or Sets the User Agent HTTP 1.1 header sent on any webrequest + + + + + Gets or Sets a value indicating whether the caching mechanisms should be used or not. + + + + + Gets the MIME content type for a given path extension. + + The input path extension. + The default content type to return if any error occurs. + The path extension's MIME content type. + + + + Gets the path extension for a given MIME content type. + + The input MIME content type. + The default path extension to return if any error occurs. + The MIME content type's path extension. + + + + Creates an instance of the given type from the specified Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The requested type. + An newly created instance. + + + + Gets an HTML document from an Internet resource and saves it to the specified file. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + + + Gets an HTML document from an Internet resource and saves it to the specified file. - Proxy aware + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + + + + + Gets an HTML document from an Internet resource and saves it to the specified file. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + + + + Gets an HTML document from an Internet resource and saves it to the specified file. Understands Proxies + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + + + + + Gets the cache file path for a specified url. + + The url fo which to retrieve the cache path. May not be null. + The cache file path. + + + + Gets an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + A new HTML document. + + + + Gets an HTML document from an Internet resource. + + The requested Uri, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + A new HTML document. + + + + Gets an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + Host to use for Proxy + Port the Proxy is on + User Id for Authentication + Password for Authentication + A new HTML document. + + + + Gets an HTML document from an Internet resource. + + The requested Uri, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + Host to use for Proxy + Port the Proxy is on + User Id for Authentication + Password for Authentication + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + Proxy to use with this request + Credentials to use when authenticating + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested Uri, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + Proxy to use with this request + Credentials to use when authenticating + A new HTML document. + + + + Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The XmlTextWriter to which you want to save to. + + + + Begins the process of downloading an internet resource + + Url to the html document + + + + Begins the process of downloading an internet resource + + Url to the html document + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The credentials to use for authenticating the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The credentials to use for authenticating the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + The credentials to use for authenticating the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + The credentials to use for authenticating the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + Gets or sets the web browser timeout. + + + + Gets or sets the web browser delay. + + + Loads HTML using a WebBrowser and Application.DoEvents. + Thrown when an exception error condition occurs. + The requested URL, such as "http://html-agility-pack.net/". + A new HTML document. + + + Loads HTML using a WebBrowser and Application.DoEvents. + Thrown when an exception error condition occurs. + The requested URL, such as "http://html-agility-pack.net/". + (Optional) Check if the browser script has all been run and completed. + A new HTML document. + + + Loads HTML using a WebBrowser and Application.DoEvents. + Thrown when an exception error condition occurs. + The requested URL, such as "http://html-agility-pack.net/". + (Optional) Check if the browser script has all been run and completed. + A new HTML document. + + + + Creates an instance of the given type from the specified Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The URL that specifies the XSLT stylesheet to load. + An containing the namespace-qualified arguments used as input to the transform. + The requested type. + An newly created instance. + + + + Creates an instance of the given type from the specified Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The URL that specifies the XSLT stylesheet to load. + An containing the namespace-qualified arguments used as input to the transform. + The requested type. + A file path where the temporary XML before transformation will be saved. Mostly used for debugging purposes. + An newly created instance. + + + + Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter, after an XSLT transformation. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The URL that specifies the XSLT stylesheet to load. + An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. + The XmlTextWriter to which you want to save. + + + + Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter, after an XSLT transformation. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". May not be null. + The URL that specifies the XSLT stylesheet to load. + An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. + The XmlTextWriter to which you want to save. + A file path where the temporary XML before transformation will be saved. Mostly used for debugging purposes. + + + + Wraps getting AppDomain permissions + + + + + Checks to see if Registry access is available to the caller + + + + + + Checks to see if DNS information is available to the caller + + + + + + An interface for getting permissions of the running application + + + + + Checks to see if Registry access is available to the caller + + + + + + Checks to see if DNS information is available to the caller + + + + + + Represents an exception thrown by the HtmlWeb utility class. + + + + + Creates an instance of the HtmlWebException. + + The exception's message. + + + + Represents a document with mixed code and text. ASP, ASPX, JSP, are good example of such documents. + + + + + Gets or sets the token representing code end. + + + + + Gets or sets the token representing code start. + + + + + Gets or sets the token representing code directive. + + + + + Gets or sets the token representing response write directive. + + + + + Creates a mixed code document instance. + + + + + Gets the code represented by the mixed code document seen as a template. + + + + + Gets the list of code fragments in the document. + + + + + Gets the list of all fragments in the document. + + + + + Gets the encoding of the stream used to read the document. + + + + + Gets the list of text fragments in the document. + + + + + Create a code fragment instances. + + The newly created code fragment instance. + + + + Create a text fragment instances. + + The newly created text fragment instance. + + + + Loads a mixed code document from a stream. + + The input stream. + + + + Loads a mixed code document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Loads the mixed code document from the specified TextReader. + + The TextReader used to feed the HTML data into the document. + + + + Loads a mixed document from a text + + The text to load. + + + + Saves the mixed document to the specified stream. + + The stream to which you want to save. + + + + Saves the mixed document to the specified stream. + + The stream to which you want to save. + The character encoding to use. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + The character encoding to use. + + + + Saves the mixed document to the specified StreamWriter. + + The StreamWriter to which you want to save. + + + + Saves the mixed document to the specified TextWriter. + + The TextWriter to which you want to save. + + + + Represents a fragment of code in a mixed code document. + + + + + Gets the fragment code text. + + + + + Represents a base class for fragments in a mixed code document. + + + + + Gets the fragement text. + + + + + Gets the type of fragment. + + + + + Gets the line number of the fragment. + + + + + Gets the line position (column) of the fragment. + + + + + Gets the fragment position in the document's stream. + + + + + Represents a list of mixed code fragments. + + + + + Gets the Document + + + + + Gets the number of fragments contained in the list. + + + + + Gets a fragment from the list using its index. + + + + + Gets an enumerator that can iterate through the fragment list. + + + + + Appends a fragment to the list of fragments. + + The fragment to append. May not be null. + + + + Gets an enumerator that can iterate through the fragment list. + + + + + Prepends a fragment to the list of fragments. + + The fragment to append. May not be null. + + + + Remove a fragment from the list of fragments. If this fragment was not in the list, an exception will be raised. + + The fragment to remove. May not be null. + + + + Remove all fragments from the list. + + + + + Remove a fragment from the list of fragments, using its index in the list. + + The index of the fragment to remove. + + + + Represents a fragment enumerator. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + Advances the enumerator to the next element of the collection. + + true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. + + + + Sets the enumerator to its initial position, which is before the first element in the collection. + + + + + Represents the type of fragment in a mixed code document. + + + + + The fragment contains code. + + + + + The fragment contains text. + + + + + Represents a fragment of text in a mixed code document. + + + + + Gets the fragment text. + + + + diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/Net45/HtmlAgilityPack.dll b/Packages/HtmlAgilityPack.1.9.2/lib/Net45/HtmlAgilityPack.dll new file mode 100644 index 0000000..5839761 Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/Net45/HtmlAgilityPack.dll differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/Net45/HtmlAgilityPack.pdb b/Packages/HtmlAgilityPack.1.9.2/lib/Net45/HtmlAgilityPack.pdb new file mode 100644 index 0000000..9b65c10 Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/Net45/HtmlAgilityPack.pdb differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/NetCore45/HtmlAgilityPack.XML b/Packages/HtmlAgilityPack.1.9.2/lib/NetCore45/HtmlAgilityPack.XML new file mode 100644 index 0000000..19bcd09 --- /dev/null +++ b/Packages/HtmlAgilityPack.1.9.2/lib/NetCore45/HtmlAgilityPack.XML @@ -0,0 +1,1739 @@ + + + + HtmlAgilityPack + + + + + A utility class to compute CRC32. + + + + + Compute a checksum for a given array of bytes. + + The array of bytes to compute the checksum for. + The computed checksum. + + + + Compute a checksum for a given string. + + The string to compute the checksum for. + The computed checksum. + + + + Represents an HTML attribute. + + + + + Gets the line number of this attribute in the document. + + + + + Gets the column number of this attribute in the document. + + + + + Gets the stream position of the value of this attribute in the document, relative to the start of the document. + + + + + Gets the length of the value. + + + + + Gets the qualified name of the attribute. + + + + + Name of attribute with original case + + + + + Gets the HTML document to which this attribute belongs. + + + + + Gets the HTML node to which this attribute belongs. + + + + + Specifies what type of quote the data should be wrapped in + + + + + Gets the stream position of this attribute in the document, relative to the start of the document. + + + + + Gets or sets the value of the attribute. + + + + + Gets the DeEntitized value of the attribute. + + + + + Gets a valid XPath string that points to this Attribute + + + + + Compares the current instance with another attribute. Comparison is based on attributes' name. + + An attribute to compare with this instance. + A 32-bit signed integer that indicates the relative order of the names comparison. + + + + Creates a duplicate of this attribute. + + The cloned attribute. + + + + Removes this attribute from it's parents collection + + + + + An Enum representing different types of Quotes used for surrounding attribute values + + + + + A single quote mark ' + + + + + A double quote mark " + + + + + Represents a combined list and collection of HTML nodes. + + + + + Gets the number of elements actually contained in the list. + + + + + Gets readonly status of colelction + + + + + Gets the attribute at the specified index. + + + + + Gets a given attribute from the list using its name. + + + + + Adds supplied item to collection + + + + + + Explicit clear + + + + + Retreives existence of supplied item + + + + + + + Copies collection to array + + + + + + + Get Explicit enumerator + + + + + + Explicit non-generic enumerator + + + + + + Retrieves the index for the supplied item, -1 if not found + + + + + + + Inserts given item into collection at supplied index + + + + + + + Explicit collection remove + + + + + + + Removes the attribute at the specified index. + + The index of the attribute to remove. + + + + Adds a new attribute to the collection with the given values + + + + + + + Inserts the specified attribute as the last attribute in the collection. + + The attribute to insert. May not be null. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The value of the attribute to insert. + The appended attribute. + + + + Checks for existance of attribute with given name + + + + + + + Inserts the specified attribute as the first node in the collection. + + The attribute to insert. May not be null. + The prepended attribute. + + + + Removes a given attribute from the list. + + The attribute to remove. May not be null. + + + + Removes an attribute from the list, using its name. If there are more than one attributes with this name, they will all be removed. + + The attribute's name. May not be null. + + + + Remove all attributes in the list. + + + + + Returns all attributes with specified name. Handles case insentivity + + Name of the attribute + + + + + Removes all attributes from the collection + + + + + Clears the attribute collection + + + + + Represents an HTML comment. + + + + + Gets or Sets the comment text of the node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Represents a complete HTML document. + + + + True to disable, false to enable the behavaior tag p. + + + Default builder to use in the HtmlDocument constructor + + + Action to execute before the Parse is executed + + + + Defines the max level we would go deep into the html document + + + + The HtmlDocument Text. Careful if you modify it. + + + True to stay backward compatible with previous version of HAP. This option does not guarantee 100% compatibility. + + + + Adds Debugging attributes to node. Default is false. + + + + + Defines if closing for non closed nodes must be done at the end or directly in the document. + Setting this to true can actually change how browsers render the page. Default is false. + + + + + Defines if non closed nodes will be checked at the end of parsing. Default is true. + + + + + Defines if a checksum must be computed for the document while parsing. Default is false. + + + + + Defines if SelectNodes method will return null or empty collection when no node matched the XPath expression. + Setting this to true will return empty collection and false will return null. Default is false. + + + + True to disable, false to enable the server side code. + + + + Defines the default stream encoding to use. Default is System.Text.Encoding.Default. + + + + + Defines if source text must be extracted while parsing errors. + If the document has a lot of errors, or cascading errors, parsing performance can be dramatically affected if set to true. + Default is false. + + + + + Defines the maximum length of source text or parse errors. Default is 100. + + + + + Defines if LI, TR, TH, TD tags must be partially fixed when nesting errors are detected. Default is false. + + + + + Defines if output must conform to XML, instead of HTML. Default is false. + + + + + If used together with and enabled, Xml namespaces in element names are preserved. Default is false. + + + + + Defines if attribute value output must be optimized (not bound with double quotes if it is possible). Default is false. + + + + + Defines if name must be output with it's original case. Useful for asp.net tags and attributes. Default is false. + + + + + Defines if name must be output in uppercase. Default is false. + + + + + Defines if declared encoding must be read from the document. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node. + Default is true. + + + + + Defines the name of a node that will throw the StopperNodeException when found as an end node. Default is null. + + + + + Defines if the 'id' attribute must be specifically used. Default is true. + + + + + Defines if empty nodes must be written as closed during output. Default is false. + + + + + Creates an instance of an HTML document. + + + + Gets the parsed text. + The parsed text. + + + + Defines the max level we would go deep into the html document. If this depth level is exceeded, and exception is + thrown. + + + + + Gets the document CRC32 checksum if OptionComputeChecksum was set to true before parsing, 0 otherwise. + + + + + Gets the document's declared encoding. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node (pre-HTML5) or the meta charset="XXXXX" html node (HTML5). + + + + + Gets the root node of the document. + + + + + Gets the document's output encoding. + + + + + Gets a list of parse errors found in the document. + + + + + Gets the remaining text. + Will always be null if OptionStopperNodeName is null. + + + + + Gets the offset of Remainder in the original Html text. + If OptionStopperNodeName is null, this will return the length of the original Html text. + + + + + Gets the document's stream encoding. + + + + + Gets a valid XML name. + + Any text. + A string that is a valid XML name. + + + + Applies HTML encoding to a specified string. + + The input string to encode. May not be null. + The encoded string. + + + + Determines if the specified character is considered as a whitespace character. + + The character to check. + true if if the specified character is considered as a whitespace character. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The new HTML attribute. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The value of the attribute. + The new HTML attribute. + + + + Creates an HTML comment node. + + The new HTML comment node. + + + + Creates an HTML comment node with the specified comment text. + + The comment text. May not be null. + The new HTML comment node. + + + + Creates an HTML element node with the specified name. + + The qualified name of the element. May not be null. + The new HTML node. + + + + Creates an HTML text node. + + The new HTML text node. + + + + Creates an HTML text node with the specified text. + + The text of the node. May not be null. + The new HTML text node. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The html is checked. + The detected encoding. + + + + Detects the encoding of an HTML text provided on a TextReader. + + The TextReader used to feed the HTML. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML text. + + The input html text. May not be null. + The detected encoding. + + + + Gets the HTML node with the specified 'id' attribute value. + + The attribute id to match. May not be null. + The HTML node with the matching id or null if not found. + + + + Loads an HTML document from a stream. + + The input stream. + + + + Loads an HTML document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + The minimum buffer size. + + + + Loads the HTML document from the specified TextReader. + + The TextReader used to feed the HTML data into the document. May not be null. + + + + Loads the HTML document from the specified string. + + String containing the HTML document to load. May not be null. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. May not be null. + The character encoding to use. May not be null. + + + + Saves the HTML document to the specified StreamWriter. + + The StreamWriter to which you want to save. + + + + Saves the HTML document to the specified TextWriter. + + The TextWriter to which you want to save. May not be null. + + + + Saves the HTML document to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Flags that describe the behavior of an Element node. + + + + + The node is a CDATA node. + + + + + The node is empty. META or IMG are example of such nodes. + + + + + The node will automatically be closed during parsing. + + + + + The node can overlap. + + + + + A utility class to replace special characters by entities and vice-versa. + Follows HTML 4.0 specification found at http://www.w3.org/TR/html4/sgml/entities.html + Follows Additional specification found at https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references + See also: https://html.spec.whatwg.org/multipage/named-characters.html#named-character-references + + + + + A collection of entities indexed by name. + + + + + A collection of entities indexed by value. + + + + + Replace known entities by characters. + + The source text. + The result text. + + + + Clone and entitize an HtmlNode. This will affect attribute values and nodes' text. It will also entitize all child nodes. + + The node to entitize. + An entitized cloned node. + + + + Replace characters above 127 by entities. + + The source text. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + If set to true, the [quote], [ampersand], [lower than] and [greather than] characters will be entitized. + The result text + + + + Represents an HTML node. + + + + + Gets the name of a comment node. It is actually defined as '#comment'. + + + + + Gets the name of the document node. It is actually defined as '#document'. + + + + + Gets the name of a text node. It is actually defined as '#text'. + + + + + Gets a collection of flags that define specific behaviors for specific element nodes. + The table contains a DictionaryEntry list with the lowercase tag name as the Key, and a combination of HtmlElementFlags as the Value. + + + + + Initialize HtmlNode. Builds a list of all tags that have special allowances + + + + + Initializes HtmlNode, providing type, owner and where it exists in a collection + + + + + + + + Gets the collection of HTML attributes for this node. May not be null. + + + + + Gets all the children of the node. + + + + + Gets a value indicating if this node has been closed or not. + + + + + Gets the collection of HTML attributes for the closing tag. May not be null. + + + + + Gets the closing tag of the node, null if the node is self-closing. + + + + + Gets the first child of the node. + + + + + Gets a value indicating whether the current node has any attributes. + + + + + Gets a value indicating whether this node has any child nodes. + + + + + Gets a value indicating whether the current node has any attributes on the closing tag. + + + + + Gets or sets the value of the 'id' HTML attribute. The document must have been parsed using the OptionUseIdAttribute set to true. + + + + + Gets or Sets the HTML between the start and end tags of the object. + + + + + Gets or Sets the text between the start and end tags of the object. + + + + + Gets the last child of the node. + + + + + Gets the line number of this node in the document. + + + + + Gets the column number of this node in the document. + + + + + Gets the stream position of the area between the opening and closing tag of the node, relative to the start of the document. + + + + + Gets the length of the area between the opening and closing tag of the node. + + + + + Gets the length of the entire node, opening and closing tag included. + + + + + Gets or sets this node's name. + + + + + Gets the HTML node immediately following this element. + + + + + Gets the type of this node. + + + + + The original unaltered name of the tag + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets the to which this node belongs. + + + + + Gets the parent of this node (for nodes that can have parents). + + + + + Gets the node immediately preceding this node. + + + + + Gets the stream position of this node in the document, relative to the start of the document. + + + + + Gets a valid XPath string that points to this node + + + + + Determines if an element node can be kept overlapped. + + The name of the element node to check. May not be null. + true if the name is the name of an element node that can be kept overlapped, false otherwise. + + + + Creates an HTML node from a string representing literal HTML. + + The HTML text. + The newly created node instance. + + + + Determines if an element node is a CDATA element node. + + The name of the element node to check. May not be null. + true if the name is the name of a CDATA element node, false otherwise. + + + + Determines if an element node is closed. + + The name of the element node to check. May not be null. + true if the name is the name of a closed element node, false otherwise. + + + + Determines if an element node is defined as empty. + + The name of the element node to check. May not be null. + true if the name is the name of an empty element node, false otherwise. + + + + Determines if a text corresponds to the closing tag of an node that can be kept overlapped. + + The text to check. May not be null. + true or false. + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Get Ancestors with matching name + + + + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Gets all anscestor nodes and the current node + + + + + + + Adds the specified node to the end of the list of children of this node. + + The node to add. May not be null. + The node added. + + + Sets child nodes identifier. + The chil node. + + + + Adds the specified node to the end of the list of children of this node. + + The node list to add. May not be null. + + + + Gets all Attributes with name + + + + + + + Creates a duplicate of the node + + + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + The cloned node. + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node. + + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node and the subtree under it. + + The node to duplicate. May not be null. + + + + Creates a duplicate of the node. + + The node to duplicate. May not be null. + true to recursively clone the subtree under the specified node, false to clone only the node itself. + + + + Gets all Descendant nodes for this node and each of child nodes + + The depth level of the node to parse in the html tree + the current element as an HtmlNode + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Get all descendant nodes with matching name + + + + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all descendant nodes including this node + + + + + + + Gets first generation child node matching name + + + + + + + Gets matching first generation child nodes matching name + + + + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Inserts the specified node immediately after the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newNode is placed after the refNode. + The node being inserted. + + + + Inserts the specified node immediately before the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newChild is placed before this node. + The node being inserted. + + + + Adds the specified node to the beginning of the list of children of this node. + + The node to add. May not be null. + The node added. + + + + Adds the specified node list to the beginning of the list of children of this node. + + The node list to add. May not be null. + + + + Removes node from parent collection + + + + + Removes all the children and/or attributes of the current node. + + + + + Removes all the children of the current node. + + + + Removes all id for node described by node. + The node. + + + + Removes the specified child node. + + The node being removed. May not be null. + The node removed. + + + + Removes the specified child node. + + The node being removed. May not be null. + true to keep grand children of the node, false otherwise. + The node removed. + + + + Replaces the child node oldChild with newChild node. + + The new node to put in the child list. + The node being replaced in the list. + The node replaced. + + + + Helper method to set the value of an attribute of this node. If the attribute is not found, it will be created automatically. + + The name of the attribute to set. May not be null. + The value for the attribute. + The corresponding attribute instance. + + + + Saves all the children of the node to the specified TextWriter. + + The TextWriter to which you want to save. + Identifies the level we are in starting at root with 0 + + + + Saves all the children of the node to a string. + + The saved string. + + + + Saves the current node to the specified TextWriter. + + The TextWriter to which you want to save. + identifies the level we are in starting at root with 0 + + + + Saves the current node to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Saves the current node to a string. + + The saved string. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + true to throw Error if class name exists, false otherwise. + + + + Removes the class attribute from the node. + + + + + Removes the class attribute from the node. + + true to throw Error if class name doesn't exist, false otherwise. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + true to throw Error if class name doesn't exist, false otherwise. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + true to throw Error if class name doesn't exist, false otherwise. + + + Gets the CSS Class from the node. + + The CSS Class from the node + + + + Check if the node class has the parameter class. + The class. + True if node class has the parameter class, false if not. + + + + Represents a combined list and collection of HTML nodes. + + + + + Initialize the HtmlNodeCollection with the base parent node + + The base node of the collection + + + + Gets a given node from the list. + + + + + Get node with tag name + + + + + + + Gets the number of elements actually contained in the list. + + + + + Is collection read only + + + + + Gets the node at the specified index. + + + + + Add node to the collection + + + + + + Add node to the collection + + + + + + + Clears out the collection of HtmlNodes. Removes each nodes reference to parentnode, nextnode and prevnode + + + + + Gets existence of node in collection + + + + + + + Copy collection to array + + + + + + + Get Enumerator + + + + + + Get Explicit Enumerator + + + + + + Get index of node + + + + + + + Insert node at index + + + + + + + Remove node + + + + + + + Remove at index + + + + + + Get first instance of node in supplied collection + + + + + + + + Add node to the end of the collection + + + + + + Get first instance of node with name + + + + + + + Get index of node + + + + + + + Add node to the beginning of the collection + + + + + + Remove node at index + + + + + + + Replace node at index + + + + + + + Get all node descended from this collection + + + + + + Get all node descended from this collection with matching name + + + + + + Gets all first generation elements in collection + + + + + + Gets all first generation elements matching name + + + + + + + All first generation nodes in collection + + + + + + Represents the type of a node. + + + + + The root of a document. + + + + + An HTML element. + + + + + An HTML comment. + + + + + A text node is always the child of an element or a document node. + + + + + Represents a parsing error found during document parsing. + + + + + Gets the type of error. + + + + + Gets the line number of this error in the document. + + + + + Gets the column number of this error in the document. + + + + + Gets a description for the error. + + + + + Gets the the full text of the line containing the error. + + + + + Gets the absolute stream position of this error in the document, relative to the start of the document. + + + + + Represents the type of parsing error. + + + + + A tag was not closed. + + + + + A tag was not opened. + + + + + There is a charset mismatch between stream and declared (META) encoding. + + + + + An end tag was not required. + + + + + An end tag is invalid at this position. + + + + + Represents an HTML text node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets or Sets the text of the node. + + + + + Represents an exception thrown by the HtmlWeb utility class. + + + + + Creates an instance of the HtmlWebException. + + The exception's message. + + + + Used for downloading and parsing html from the internet + + + + + Allows for setting document defaults before loading + + + + + Begins the process of downloading an internet resource + + Url to the html document + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The credentials to use for authenticating the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + The credentials to use for authenticating the web request + + + + The exception that is thrown when a program contains invalid Microsoft intermediate language (MSIL) or metadata. Generally this indicates a bug in the compiler that generated the program. + + 2 + + + + Initializes a new instance of the class with default properties. + + + + + Initializes a new instance of the class with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. The exception that is the cause of the current exception. If the parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. + + + diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/NetCore45/HtmlAgilityPack.dll b/Packages/HtmlAgilityPack.1.9.2/lib/NetCore45/HtmlAgilityPack.dll new file mode 100644 index 0000000..b51d044 Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/NetCore45/HtmlAgilityPack.dll differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/NetCore45/HtmlAgilityPack.pdb b/Packages/HtmlAgilityPack.1.9.2/lib/NetCore45/HtmlAgilityPack.pdb new file mode 100644 index 0000000..03c3e86 Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/NetCore45/HtmlAgilityPack.pdb differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.3/HtmlAgilityPack.deps.json b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.3/HtmlAgilityPack.deps.json new file mode 100644 index 0000000..067cec8 --- /dev/null +++ b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.3/HtmlAgilityPack.deps.json @@ -0,0 +1,1131 @@ +{ + "runtimeTarget": { + "name": ".NETStandard,Version=v1.3/", + "signature": "dca975eb7ab75bdd01ed8009b71413aa9a3adbb0" + }, + "compilationOptions": {}, + "targets": { + ".NETStandard,Version=v1.3": {}, + ".NETStandard,Version=v1.3/": { + "HtmlAgilityPack/1.9.2": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Net.Http": "4.3.1", + "System.Xml.XPath": "4.3.0", + "System.Xml.XPath.XmlDocument": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "HtmlAgilityPack.dll": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.1", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": { + "assemblyVersion": "4.0.13.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Net.Http/4.3.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": { + "assemblyVersion": "4.0.13.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": { + "assemblyVersion": "4.0.12.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "4.1.0.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": { + "assemblyVersion": "4.1.0.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": { + "assemblyVersion": "4.0.12.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Xml.XPath/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Xml.XPath.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XPath": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + } + } + }, + "libraries": { + "HtmlAgilityPack/1.9.2": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "path": "system.buffers/4.3.0", + "hashPath": "system.buffers.4.3.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Net.Http/4.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UrTyRczM3ZvNk6oetBuwlu67MFKKRva+r7bw4JDVZ6Y2IukyZ24td5ppsieu/4yZlogVAIuZul9GIQ3hoiz0yA==", + "path": "system.net.http/4.3.1", + "hashPath": "system.net.http.4.3.1.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XPath/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", + "path": "system.xml.xpath/4.3.0", + "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" + }, + "System.Xml.XPath.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", + "path": "system.xml.xpath.xmldocument/4.3.0", + "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.3/HtmlAgilityPack.dll b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.3/HtmlAgilityPack.dll new file mode 100644 index 0000000..4b38830 Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.3/HtmlAgilityPack.dll differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.3/HtmlAgilityPack.pdb b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.3/HtmlAgilityPack.pdb new file mode 100644 index 0000000..d18440a Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.3/HtmlAgilityPack.pdb differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.3/HtmlAgilityPack.xml b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.3/HtmlAgilityPack.xml new file mode 100644 index 0000000..659f839 --- /dev/null +++ b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.3/HtmlAgilityPack.xml @@ -0,0 +1,2700 @@ + + + + HtmlAgilityPack + + + + + A utility class to compute CRC32. + + + + + Compute a checksum for a given array of bytes. + + The array of bytes to compute the checksum for. + The computed checksum. + + + + Compute a checksum for a given string. + + The string to compute the checksum for. + The computed checksum. + + + + Represents an HTML attribute. + + + + + Gets the line number of this attribute in the document. + + + + + Gets the column number of this attribute in the document. + + + + + Gets the stream position of the value of this attribute in the document, relative to the start of the document. + + + + + Gets the length of the value. + + + + + Gets the qualified name of the attribute. + + + + + Name of attribute with original case + + + + + Gets the HTML document to which this attribute belongs. + + + + + Gets the HTML node to which this attribute belongs. + + + + + Specifies what type of quote the data should be wrapped in + + + + + Gets the stream position of this attribute in the document, relative to the start of the document. + + + + + Gets or sets the value of the attribute. + + + + + Gets the DeEntitized value of the attribute. + + + + + Gets a valid XPath string that points to this Attribute + + + + + Compares the current instance with another attribute. Comparison is based on attributes' name. + + An attribute to compare with this instance. + A 32-bit signed integer that indicates the relative order of the names comparison. + + + + Creates a duplicate of this attribute. + + The cloned attribute. + + + + Removes this attribute from it's parents collection + + + + + An Enum representing different types of Quotes used for surrounding attribute values + + + + + A single quote mark ' + + + + + A double quote mark " + + + + + Represents a combined list and collection of HTML nodes. + + + + + Gets the number of elements actually contained in the list. + + + + + Gets readonly status of colelction + + + + + Gets the attribute at the specified index. + + + + + Gets a given attribute from the list using its name. + + + + + Adds supplied item to collection + + + + + + Explicit clear + + + + + Retreives existence of supplied item + + + + + + + Copies collection to array + + + + + + + Get Explicit enumerator + + + + + + Explicit non-generic enumerator + + + + + + Retrieves the index for the supplied item, -1 if not found + + + + + + + Inserts given item into collection at supplied index + + + + + + + Explicit collection remove + + + + + + + Removes the attribute at the specified index. + + The index of the attribute to remove. + + + + Adds a new attribute to the collection with the given values + + + + + + + Inserts the specified attribute as the last attribute in the collection. + + The attribute to insert. May not be null. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The value of the attribute to insert. + The appended attribute. + + + + Checks for existance of attribute with given name + + + + + + + Inserts the specified attribute as the first node in the collection. + + The attribute to insert. May not be null. + The prepended attribute. + + + + Removes a given attribute from the list. + + The attribute to remove. May not be null. + + + + Removes an attribute from the list, using its name. If there are more than one attributes with this name, they will all be removed. + + The attribute's name. May not be null. + + + + Remove all attributes in the list. + + + + + Returns all attributes with specified name. Handles case insentivity + + Name of the attribute + + + + + Removes all attributes from the collection + + + + + Clears the attribute collection + + + + + Represents an HTML comment. + + + + + Gets or Sets the comment text of the node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Represents a complete HTML document. + + + + True to disable, false to enable the behavaior tag p. + + + Default builder to use in the HtmlDocument constructor + + + Action to execute before the Parse is executed + + + + Defines the max level we would go deep into the html document + + + + The HtmlDocument Text. Careful if you modify it. + + + True to stay backward compatible with previous version of HAP. This option does not guarantee 100% compatibility. + + + + Adds Debugging attributes to node. Default is false. + + + + + Defines if closing for non closed nodes must be done at the end or directly in the document. + Setting this to true can actually change how browsers render the page. Default is false. + + + + + Defines if non closed nodes will be checked at the end of parsing. Default is true. + + + + + Defines if a checksum must be computed for the document while parsing. Default is false. + + + + + Defines if SelectNodes method will return null or empty collection when no node matched the XPath expression. + Setting this to true will return empty collection and false will return null. Default is false. + + + + True to disable, false to enable the server side code. + + + + Defines the default stream encoding to use. Default is System.Text.Encoding.Default. + + + + + Defines if source text must be extracted while parsing errors. + If the document has a lot of errors, or cascading errors, parsing performance can be dramatically affected if set to true. + Default is false. + + + + + Defines the maximum length of source text or parse errors. Default is 100. + + + + + Defines if LI, TR, TH, TD tags must be partially fixed when nesting errors are detected. Default is false. + + + + + Defines if output must conform to XML, instead of HTML. Default is false. + + + + + If used together with and enabled, Xml namespaces in element names are preserved. Default is false. + + + + + Defines if attribute value output must be optimized (not bound with double quotes if it is possible). Default is false. + + + + + Defines if name must be output with it's original case. Useful for asp.net tags and attributes. Default is false. + + + + + Defines if name must be output in uppercase. Default is false. + + + + + Defines if declared encoding must be read from the document. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node. + Default is true. + + + + + Defines the name of a node that will throw the StopperNodeException when found as an end node. Default is null. + + + + + Defines if the 'id' attribute must be specifically used. Default is true. + + + + + Defines if empty nodes must be written as closed during output. Default is false. + + + + + Creates an instance of an HTML document. + + + + Gets the parsed text. + The parsed text. + + + + Defines the max level we would go deep into the html document. If this depth level is exceeded, and exception is + thrown. + + + + + Gets the document CRC32 checksum if OptionComputeChecksum was set to true before parsing, 0 otherwise. + + + + + Gets the document's declared encoding. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node (pre-HTML5) or the meta charset="XXXXX" html node (HTML5). + + + + + Gets the root node of the document. + + + + + Gets the document's output encoding. + + + + + Gets a list of parse errors found in the document. + + + + + Gets the remaining text. + Will always be null if OptionStopperNodeName is null. + + + + + Gets the offset of Remainder in the original Html text. + If OptionStopperNodeName is null, this will return the length of the original Html text. + + + + + Gets the document's stream encoding. + + + + + Gets a valid XML name. + + Any text. + A string that is a valid XML name. + + + + Applies HTML encoding to a specified string. + + The input string to encode. May not be null. + The encoded string. + + + + Determines if the specified character is considered as a whitespace character. + + The character to check. + true if if the specified character is considered as a whitespace character. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The new HTML attribute. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The value of the attribute. + The new HTML attribute. + + + + Creates an HTML comment node. + + The new HTML comment node. + + + + Creates an HTML comment node with the specified comment text. + + The comment text. May not be null. + The new HTML comment node. + + + + Creates an HTML element node with the specified name. + + The qualified name of the element. May not be null. + The new HTML node. + + + + Creates an HTML text node. + + The new HTML text node. + + + + Creates an HTML text node with the specified text. + + The text of the node. May not be null. + The new HTML text node. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The html is checked. + The detected encoding. + + + + Detects the encoding of an HTML text provided on a TextReader. + + The TextReader used to feed the HTML. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML text. + + The input html text. May not be null. + The detected encoding. + + + + Gets the HTML node with the specified 'id' attribute value. + + The attribute id to match. May not be null. + The HTML node with the matching id or null if not found. + + + + Loads an HTML document from a stream. + + The input stream. + + + + Loads an HTML document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + The minimum buffer size. + + + + Loads the HTML document from the specified TextReader. + + The TextReader used to feed the HTML data into the document. May not be null. + + + + Loads the HTML document from the specified string. + + String containing the HTML document to load. May not be null. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. May not be null. + The character encoding to use. May not be null. + + + + Saves the HTML document to the specified StreamWriter. + + The StreamWriter to which you want to save. + + + + Saves the HTML document to the specified TextWriter. + + The TextWriter to which you want to save. May not be null. + + + + Saves the HTML document to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Detects the encoding of an HTML document from a file first, and then loads the file. + + The complete file path to be read. + + + + Detects the encoding of an HTML document from a file first, and then loads the file. + + The complete file path to be read. May not be null. + true to detect encoding, false otherwise. + + + + Detects the encoding of an HTML file. + + Path for the file containing the HTML document to detect. May not be null. + The detected encoding. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. May not be null. + The character encoding to use. May not be null. + + + + Creates a new XPathNavigator object for navigating this HTML document. + + An XPathNavigator object. The XPathNavigator is positioned on the root of the document. + + + + Flags that describe the behavior of an Element node. + + + + + The node is a CDATA node. + + + + + The node is empty. META or IMG are example of such nodes. + + + + + The node will automatically be closed during parsing. + + + + + The node can overlap. + + + + + A utility class to replace special characters by entities and vice-versa. + Follows HTML 4.0 specification found at http://www.w3.org/TR/html4/sgml/entities.html + Follows Additional specification found at https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references + See also: https://html.spec.whatwg.org/multipage/named-characters.html#named-character-references + + + + + A collection of entities indexed by name. + + + + + A collection of entities indexed by value. + + + + + Replace known entities by characters. + + The source text. + The result text. + + + + Clone and entitize an HtmlNode. This will affect attribute values and nodes' text. It will also entitize all child nodes. + + The node to entitize. + An entitized cloned node. + + + + Replace characters above 127 by entities. + + The source text. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + If set to true, the [quote], [ampersand], [lower than] and [greather than] characters will be entitized. + The result text + + + + Represents an HTML node. + + + + + Gets the name of a comment node. It is actually defined as '#comment'. + + + + + Gets the name of the document node. It is actually defined as '#document'. + + + + + Gets the name of a text node. It is actually defined as '#text'. + + + + + Gets a collection of flags that define specific behaviors for specific element nodes. + The table contains a DictionaryEntry list with the lowercase tag name as the Key, and a combination of HtmlElementFlags as the Value. + + + + + Initialize HtmlNode. Builds a list of all tags that have special allowances + + + + + Initializes HtmlNode, providing type, owner and where it exists in a collection + + + + + + + + Gets the collection of HTML attributes for this node. May not be null. + + + + + Gets all the children of the node. + + + + + Gets a value indicating if this node has been closed or not. + + + + + Gets the collection of HTML attributes for the closing tag. May not be null. + + + + + Gets the closing tag of the node, null if the node is self-closing. + + + + + Gets the first child of the node. + + + + + Gets a value indicating whether the current node has any attributes. + + + + + Gets a value indicating whether this node has any child nodes. + + + + + Gets a value indicating whether the current node has any attributes on the closing tag. + + + + + Gets or sets the value of the 'id' HTML attribute. The document must have been parsed using the OptionUseIdAttribute set to true. + + + + + Gets or Sets the HTML between the start and end tags of the object. + + + + + Gets or Sets the text between the start and end tags of the object. + + + + + Gets the last child of the node. + + + + + Gets the line number of this node in the document. + + + + + Gets the column number of this node in the document. + + + + + Gets the stream position of the area between the opening and closing tag of the node, relative to the start of the document. + + + + + Gets the length of the area between the opening and closing tag of the node. + + + + + Gets the length of the entire node, opening and closing tag included. + + + + + Gets or sets this node's name. + + + + + Gets the HTML node immediately following this element. + + + + + Gets the type of this node. + + + + + The original unaltered name of the tag + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets the to which this node belongs. + + + + + Gets the parent of this node (for nodes that can have parents). + + + + + Gets the node immediately preceding this node. + + + + + Gets the stream position of this node in the document, relative to the start of the document. + + + + + Gets a valid XPath string that points to this node + + + + + Determines if an element node can be kept overlapped. + + The name of the element node to check. May not be null. + true if the name is the name of an element node that can be kept overlapped, false otherwise. + + + + Creates an HTML node from a string representing literal HTML. + + The HTML text. + The newly created node instance. + + + + Determines if an element node is a CDATA element node. + + The name of the element node to check. May not be null. + true if the name is the name of a CDATA element node, false otherwise. + + + + Determines if an element node is closed. + + The name of the element node to check. May not be null. + true if the name is the name of a closed element node, false otherwise. + + + + Determines if an element node is defined as empty. + + The name of the element node to check. May not be null. + true if the name is the name of an empty element node, false otherwise. + + + + Determines if a text corresponds to the closing tag of an node that can be kept overlapped. + + The text to check. May not be null. + true or false. + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Get Ancestors with matching name + + + + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Gets all anscestor nodes and the current node + + + + + + + Adds the specified node to the end of the list of children of this node. + + The node to add. May not be null. + The node added. + + + Sets child nodes identifier. + The chil node. + + + + Adds the specified node to the end of the list of children of this node. + + The node list to add. May not be null. + + + + Gets all Attributes with name + + + + + + + Creates a duplicate of the node + + + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + The cloned node. + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node. + + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node and the subtree under it. + + The node to duplicate. May not be null. + + + + Creates a duplicate of the node. + + The node to duplicate. May not be null. + true to recursively clone the subtree under the specified node, false to clone only the node itself. + + + + Gets all Descendant nodes for this node and each of child nodes + + The depth level of the node to parse in the html tree + the current element as an HtmlNode + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Get all descendant nodes with matching name + + + + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all descendant nodes including this node + + + + + + + Gets first generation child node matching name + + + + + + + Gets matching first generation child nodes matching name + + + + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Inserts the specified node immediately after the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newNode is placed after the refNode. + The node being inserted. + + + + Inserts the specified node immediately before the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newChild is placed before this node. + The node being inserted. + + + + Adds the specified node to the beginning of the list of children of this node. + + The node to add. May not be null. + The node added. + + + + Adds the specified node list to the beginning of the list of children of this node. + + The node list to add. May not be null. + + + + Removes node from parent collection + + + + + Removes all the children and/or attributes of the current node. + + + + + Removes all the children of the current node. + + + + Removes all id for node described by node. + The node. + + + + Removes the specified child node. + + The node being removed. May not be null. + The node removed. + + + + Removes the specified child node. + + The node being removed. May not be null. + true to keep grand children of the node, false otherwise. + The node removed. + + + + Replaces the child node oldChild with newChild node. + + The new node to put in the child list. + The node being replaced in the list. + The node replaced. + + + + Helper method to set the value of an attribute of this node. If the attribute is not found, it will be created automatically. + + The name of the attribute to set. May not be null. + The value for the attribute. + The corresponding attribute instance. + + + + Saves all the children of the node to the specified TextWriter. + + The TextWriter to which you want to save. + Identifies the level we are in starting at root with 0 + + + + Saves all the children of the node to a string. + + The saved string. + + + + Saves the current node to the specified TextWriter. + + The TextWriter to which you want to save. + identifies the level we are in starting at root with 0 + + + + Saves the current node to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Saves the current node to a string. + + The saved string. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + true to throw Error if class name exists, false otherwise. + + + + Removes the class attribute from the node. + + + + + Removes the class attribute from the node. + + true to throw Error if class name doesn't exist, false otherwise. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + true to throw Error if class name doesn't exist, false otherwise. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + true to throw Error if class name doesn't exist, false otherwise. + + + Gets the CSS Class from the node. + + The CSS Class from the node + + + + Check if the node class has the parameter class. + The class. + True if node class has the parameter class, false if not. + + + + Creates a new XPathNavigator object for navigating this HTML node. + + An XPathNavigator object. The XPathNavigator is positioned on the node from which the method was called. It is not positioned on the root of the document. + + + + Creates an XPathNavigator using the root of this document. + + + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Selects the first XmlNode that matches the XPath expression. + + The XPath expression. May not be null. + The first that matches the XPath query or a null reference if no matching node was found. + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Represents a combined list and collection of HTML nodes. + + + + + Initialize the HtmlNodeCollection with the base parent node + + The base node of the collection + + + + Gets a given node from the list. + + + + + Get node with tag name + + + + + + + Gets the number of elements actually contained in the list. + + + + + Is collection read only + + + + + Gets the node at the specified index. + + + + + Add node to the collection + + + + + + Add node to the collection + + + + + + + Clears out the collection of HtmlNodes. Removes each nodes reference to parentnode, nextnode and prevnode + + + + + Gets existence of node in collection + + + + + + + Copy collection to array + + + + + + + Get Enumerator + + + + + + Get Explicit Enumerator + + + + + + Get index of node + + + + + + + Insert node at index + + + + + + + Remove node + + + + + + + Remove at index + + + + + + Get first instance of node in supplied collection + + + + + + + + Add node to the end of the collection + + + + + + Get first instance of node with name + + + + + + + Get index of node + + + + + + + Add node to the beginning of the collection + + + + + + Remove node at index + + + + + + + Replace node at index + + + + + + + Get all node descended from this collection + + + + + + Get all node descended from this collection with matching name + + + + + + Gets all first generation elements in collection + + + + + + Gets all first generation elements matching name + + + + + + + All first generation nodes in collection + + + + + + Represents an HTML navigator on an HTML document seen as a data store. + + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + The minimum buffer size. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a TextReader. + + The TextReader used to feed the HTML data into the document. + + + + Gets the base URI for the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the current HTML document. + + + + + Gets the current HTML node. + + + + + Gets a value indicating whether the current node has child nodes. + + + + + Gets a value indicating whether the current node has child nodes. + + + + + Gets a value indicating whether the current node is an empty element. + + + + + Gets the name of the current HTML node without the namespace prefix. + + + + + Gets the qualified name of the current node. + + + + + Gets the namespace URI (as defined in the W3C Namespace Specification) of the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the associated with this implementation. + + + + + Gets the type of the current node. + + + + + Gets the prefix associated with the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the text value of the current node. + + + + + Gets the xml:lang scope for the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Creates a new HtmlNavigator positioned at the same node as this HtmlNavigator. + + A new HtmlNavigator object positioned at the same node as the original HtmlNavigator. + + + + Gets the value of the HTML attribute with the specified LocalName and NamespaceURI. + + The local name of the HTML attribute. + The namespace URI of the attribute. Unsupported with the HtmlNavigator implementation. + The value of the specified HTML attribute. String.Empty or null if a matching attribute is not found or if the navigator is not positioned on an element node. + + + + Returns the value of the namespace node corresponding to the specified local name. + Always returns string.Empty for the HtmlNavigator implementation. + + The local name of the namespace node. + Always returns string.Empty for the HtmlNavigator implementation. + + + + Determines whether the current HtmlNavigator is at the same position as the specified HtmlNavigator. + + The HtmlNavigator that you want to compare against. + true if the two navigators have the same position, otherwise, false. + + + + Moves to the same position as the specified HtmlNavigator. + + The HtmlNavigator positioned on the node that you want to move to. + true if successful, otherwise false. If false, the position of the navigator is unchanged. + + + + Moves to the HTML attribute with matching LocalName and NamespaceURI. + + The local name of the HTML attribute. + The namespace URI of the attribute. Unsupported with the HtmlNavigator implementation. + true if the HTML attribute is found, otherwise, false. If false, the position of the navigator does not change. + + + + Moves to the first sibling of the current node. + + true if the navigator is successful moving to the first sibling node, false if there is no first sibling or if the navigator is currently positioned on an attribute node. + + + + Moves to the first HTML attribute. + + true if the navigator is successful moving to the first HTML attribute, otherwise, false. + + + + Moves to the first child of the current node. + + true if there is a first child node, otherwise false. + + + + Moves the XPathNavigator to the first namespace node of the current element. + Always returns false for the HtmlNavigator implementation. + + An XPathNamespaceScope value describing the namespace scope. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the node that has an attribute of type ID whose value matches the specified string. + + A string representing the ID value of the node to which you want to move. This argument does not need to be atomized. + true if the move was successful, otherwise false. If false, the position of the navigator is unchanged. + + + + Moves the XPathNavigator to the namespace node with the specified local name. + Always returns false for the HtmlNavigator implementation. + + The local name of the namespace node. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the next sibling of the current node. + + true if the navigator is successful moving to the next sibling node, false if there are no more siblings or if the navigator is currently positioned on an attribute node. If false, the position of the navigator is unchanged. + + + + Moves to the next HTML attribute. + + + + + + Moves the XPathNavigator to the next namespace node. + Always returns falsefor the HtmlNavigator implementation. + + An XPathNamespaceScope value describing the namespace scope. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the parent of the current node. + + true if there is a parent node, otherwise false. + + + + Moves to the previous sibling of the current node. + + true if the navigator is successful moving to the previous sibling node, false if there is no previous sibling or if the navigator is currently positioned on an attribute node. + + + + Moves to the root node to which the current node belongs. + + + + + Represents the type of a node. + + + + + The root of a document. + + + + + An HTML element. + + + + + An HTML comment. + + + + + A text node is always the child of an element or a document node. + + + + + Represents a parsing error found during document parsing. + + + + + Gets the type of error. + + + + + Gets the line number of this error in the document. + + + + + Gets the column number of this error in the document. + + + + + Gets a description for the error. + + + + + Gets the the full text of the line containing the error. + + + + + Gets the absolute stream position of this error in the document, relative to the start of the document. + + + + + Represents the type of parsing error. + + + + + A tag was not closed. + + + + + A tag was not opened. + + + + + There is a charset mismatch between stream and declared (META) encoding. + + + + + An end tag was not required. + + + + + An end tag is invalid at this position. + + + + + Represents an HTML text node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets or Sets the text of the node. + + + + + A utility class to get HTML document from HTTP. + + + + + Represents the method that will handle the PostResponse event. + + + + + Represents the method that will handle the PreHandleDocument event. + + + + + Represents the method that will handle the PostResponse event. + + + + + Occurs after an HTTP request has been executed. + + + + + Occurs before an HTML document is handled. + + + + + Occurs before an HTTP request is executed. + + + + + Gets or Sets a value indicating if document encoding must be automatically detected. + + + + + Gets or sets the Encoding used to override the response stream from any web request + + + + + Gets or Sets a value indicating whether to get document only from the cache. + If this is set to true and document is not found in the cache, nothing will be loaded. + + + + + Gets or Sets a value indicating whether to get document from the cache if exists, otherwise from the web + A value indicating whether to get document from the cache if exists, otherwise from the web + + + + + Gets or Sets the cache path. If null, no caching mechanism will be used. + + + + + Gets a value indicating if the last document was retrieved from the cache. + + + + + Gets the last request duration in milliseconds. + + + + + Gets the URI of the Internet resource that actually responded to the request. + + + + + Gets the last request status. + + + + + Gets or Sets the size of the buffer used for memory operations. + + + + + Gets or Sets a value indicating if cookies will be stored. + + + + Gets or sets a value indicating whether redirect should be captured instead of the current location. + True if capture redirect, false if not. + + + + Gets or Sets the User Agent HTTP 1.1 header sent on any webrequest + + + + + Gets or Sets a value indicating whether the caching mechanisms should be used or not. + + + + + Gets an HTML document from an Internet resource and saves it to the specified file. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + + + Gets an HTML document from an Internet resource and saves it to the specified file. - Proxy aware + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + + + + + Gets an HTML document from an Internet resource and saves it to the specified file. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + + + + Gets an HTML document from an Internet resource and saves it to the specified file. Understands Proxies + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + + + + + Gets the cache file path for a specified url. + + The url fo which to retrieve the cache path. May not be null. + The cache file path. + + + + Gets an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + A new HTML document. + + + + Gets an HTML document from an Internet resource. + + The requested Uri, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + Proxy to use with this request + Credentials to use when authenticating + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested Uri, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + Proxy to use with this request + Credentials to use when authenticating + A new HTML document. + + + + Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The XmlTextWriter to which you want to save to. + + + + Begins the process of downloading an internet resource + + Url to the html document + + + + Begins the process of downloading an internet resource + + Url to the html document + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The credentials to use for authenticating the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The credentials to use for authenticating the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + The credentials to use for authenticating the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + The credentials to use for authenticating the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + An interface for getting permissions of the running application + + + + + Checks to see if Registry access is available to the caller + + + + + + Checks to see if DNS information is available to the caller + + + + + + Represents an exception thrown by the HtmlWeb utility class. + + + + + Creates an instance of the HtmlWebException. + + The exception's message. + + + + Represents a document with mixed code and text. ASP, ASPX, JSP, are good example of such documents. + + + + + Gets or sets the token representing code end. + + + + + Gets or sets the token representing code start. + + + + + Gets or sets the token representing code directive. + + + + + Gets or sets the token representing response write directive. + + + + + Creates a mixed code document instance. + + + + + Gets the code represented by the mixed code document seen as a template. + + + + + Gets the list of code fragments in the document. + + + + + Gets the list of all fragments in the document. + + + + + Gets the encoding of the stream used to read the document. + + + + + Gets the list of text fragments in the document. + + + + + Create a code fragment instances. + + The newly created code fragment instance. + + + + Create a text fragment instances. + + The newly created text fragment instance. + + + + Loads a mixed code document from a stream. + + The input stream. + + + + Loads a mixed code document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Loads the mixed code document from the specified TextReader. + + The TextReader used to feed the HTML data into the document. + + + + Loads a mixed document from a text + + The text to load. + + + + Saves the mixed document to the specified stream. + + The stream to which you want to save. + + + + Saves the mixed document to the specified stream. + + The stream to which you want to save. + The character encoding to use. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + The character encoding to use. + + + + Saves the mixed document to the specified StreamWriter. + + The StreamWriter to which you want to save. + + + + Saves the mixed document to the specified TextWriter. + + The TextWriter to which you want to save. + + + + Represents a fragment of code in a mixed code document. + + + + + Gets the fragment code text. + + + + + Represents a base class for fragments in a mixed code document. + + + + + Gets the fragement text. + + + + + Gets the type of fragment. + + + + + Gets the line number of the fragment. + + + + + Gets the line position (column) of the fragment. + + + + + Gets the fragment position in the document's stream. + + + + + Represents a list of mixed code fragments. + + + + + Gets the Document + + + + + Gets the number of fragments contained in the list. + + + + + Gets a fragment from the list using its index. + + + + + Gets an enumerator that can iterate through the fragment list. + + + + + Appends a fragment to the list of fragments. + + The fragment to append. May not be null. + + + + Gets an enumerator that can iterate through the fragment list. + + + + + Prepends a fragment to the list of fragments. + + The fragment to append. May not be null. + + + + Remove a fragment from the list of fragments. If this fragment was not in the list, an exception will be raised. + + The fragment to remove. May not be null. + + + + Remove all fragments from the list. + + + + + Remove a fragment from the list of fragments, using its index in the list. + + The index of the fragment to remove. + + + + Represents a fragment enumerator. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + Advances the enumerator to the next element of the collection. + + true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. + + + + Sets the enumerator to its initial position, which is before the first element in the collection. + + + + + Represents the type of fragment in a mixed code document. + + + + + The fragment contains code. + + + + + The fragment contains text. + + + + + Represents a fragment of text in a mixed code document. + + + + + Gets the fragment text. + + + + diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.6/HtmlAgilityPack.deps.json b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.6/HtmlAgilityPack.deps.json new file mode 100644 index 0000000..e370874 --- /dev/null +++ b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.6/HtmlAgilityPack.deps.json @@ -0,0 +1,1425 @@ +{ + "runtimeTarget": { + "name": ".NETStandard,Version=v1.6/", + "signature": "e9f4846954ef0afe6bd6f82938af136cf6e69c17" + }, + "compilationOptions": {}, + "targets": { + ".NETStandard,Version=v1.6": {}, + ".NETStandard,Version=v1.6/": { + "HtmlAgilityPack/1.9.2": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Net.Http": "4.3.1", + "System.Xml.XPath": "4.3.0", + "System.Xml.XPath.XmlDocument": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "HtmlAgilityPack.dll": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.1", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Buffers/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": { + "assemblyVersion": "4.0.13.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Net.Http/4.3.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": { + "assemblyVersion": "4.0.13.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "1.0.24212.1" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": { + "assemblyVersion": "4.0.12.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "4.1.0.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": { + "assemblyVersion": "4.1.0.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": { + "assemblyVersion": "4.0.12.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Xml.XPath/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Xml.XPath.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XPath": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + } + } + }, + "libraries": { + "HtmlAgilityPack/1.9.2": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "path": "system.buffers/4.3.0", + "hashPath": "system.buffers.4.3.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Net.Http/4.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UrTyRczM3ZvNk6oetBuwlu67MFKKRva+r7bw4JDVZ6Y2IukyZ24td5ppsieu/4yZlogVAIuZul9GIQ3hoiz0yA==", + "path": "system.net.http/4.3.1", + "hashPath": "system.net.http.4.3.1.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XPath/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", + "path": "system.xml.xpath/4.3.0", + "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" + }, + "System.Xml.XPath.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", + "path": "system.xml.xpath.xmldocument/4.3.0", + "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.6/HtmlAgilityPack.dll b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.6/HtmlAgilityPack.dll new file mode 100644 index 0000000..0288c29 Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.6/HtmlAgilityPack.dll differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.6/HtmlAgilityPack.pdb b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.6/HtmlAgilityPack.pdb new file mode 100644 index 0000000..14f9906 Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.6/HtmlAgilityPack.pdb differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.6/HtmlAgilityPack.xml b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.6/HtmlAgilityPack.xml new file mode 100644 index 0000000..0756faf --- /dev/null +++ b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard1.6/HtmlAgilityPack.xml @@ -0,0 +1,2830 @@ + + + + HtmlAgilityPack + + + + + A utility class to compute CRC32. + + + + + Compute a checksum for a given array of bytes. + + The array of bytes to compute the checksum for. + The computed checksum. + + + + Compute a checksum for a given string. + + The string to compute the checksum for. + The computed checksum. + + + + Represents an HTML attribute. + + + + + Gets the line number of this attribute in the document. + + + + + Gets the column number of this attribute in the document. + + + + + Gets the stream position of the value of this attribute in the document, relative to the start of the document. + + + + + Gets the length of the value. + + + + + Gets the qualified name of the attribute. + + + + + Name of attribute with original case + + + + + Gets the HTML document to which this attribute belongs. + + + + + Gets the HTML node to which this attribute belongs. + + + + + Specifies what type of quote the data should be wrapped in + + + + + Gets the stream position of this attribute in the document, relative to the start of the document. + + + + + Gets or sets the value of the attribute. + + + + + Gets the DeEntitized value of the attribute. + + + + + Gets a valid XPath string that points to this Attribute + + + + + Compares the current instance with another attribute. Comparison is based on attributes' name. + + An attribute to compare with this instance. + A 32-bit signed integer that indicates the relative order of the names comparison. + + + + Creates a duplicate of this attribute. + + The cloned attribute. + + + + Removes this attribute from it's parents collection + + + + + An Enum representing different types of Quotes used for surrounding attribute values + + + + + A single quote mark ' + + + + + A double quote mark " + + + + + Represents a combined list and collection of HTML nodes. + + + + + Gets the number of elements actually contained in the list. + + + + + Gets readonly status of colelction + + + + + Gets the attribute at the specified index. + + + + + Gets a given attribute from the list using its name. + + + + + Adds supplied item to collection + + + + + + Explicit clear + + + + + Retreives existence of supplied item + + + + + + + Copies collection to array + + + + + + + Get Explicit enumerator + + + + + + Explicit non-generic enumerator + + + + + + Retrieves the index for the supplied item, -1 if not found + + + + + + + Inserts given item into collection at supplied index + + + + + + + Explicit collection remove + + + + + + + Removes the attribute at the specified index. + + The index of the attribute to remove. + + + + Adds a new attribute to the collection with the given values + + + + + + + Inserts the specified attribute as the last attribute in the collection. + + The attribute to insert. May not be null. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The value of the attribute to insert. + The appended attribute. + + + + Checks for existance of attribute with given name + + + + + + + Inserts the specified attribute as the first node in the collection. + + The attribute to insert. May not be null. + The prepended attribute. + + + + Removes a given attribute from the list. + + The attribute to remove. May not be null. + + + + Removes an attribute from the list, using its name. If there are more than one attributes with this name, they will all be removed. + + The attribute's name. May not be null. + + + + Remove all attributes in the list. + + + + + Returns all attributes with specified name. Handles case insentivity + + Name of the attribute + + + + + Removes all attributes from the collection + + + + + Clears the attribute collection + + + + + Represents an HTML comment. + + + + + Gets or Sets the comment text of the node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Represents a complete HTML document. + + + + True to disable, false to enable the behavaior tag p. + + + Default builder to use in the HtmlDocument constructor + + + Action to execute before the Parse is executed + + + + Defines the max level we would go deep into the html document + + + + The HtmlDocument Text. Careful if you modify it. + + + True to stay backward compatible with previous version of HAP. This option does not guarantee 100% compatibility. + + + + Adds Debugging attributes to node. Default is false. + + + + + Defines if closing for non closed nodes must be done at the end or directly in the document. + Setting this to true can actually change how browsers render the page. Default is false. + + + + + Defines if non closed nodes will be checked at the end of parsing. Default is true. + + + + + Defines if a checksum must be computed for the document while parsing. Default is false. + + + + + Defines if SelectNodes method will return null or empty collection when no node matched the XPath expression. + Setting this to true will return empty collection and false will return null. Default is false. + + + + True to disable, false to enable the server side code. + + + + Defines the default stream encoding to use. Default is System.Text.Encoding.Default. + + + + + Defines if source text must be extracted while parsing errors. + If the document has a lot of errors, or cascading errors, parsing performance can be dramatically affected if set to true. + Default is false. + + + + + Defines the maximum length of source text or parse errors. Default is 100. + + + + + Defines if LI, TR, TH, TD tags must be partially fixed when nesting errors are detected. Default is false. + + + + + Defines if output must conform to XML, instead of HTML. Default is false. + + + + + If used together with and enabled, Xml namespaces in element names are preserved. Default is false. + + + + + Defines if attribute value output must be optimized (not bound with double quotes if it is possible). Default is false. + + + + + Defines if name must be output with it's original case. Useful for asp.net tags and attributes. Default is false. + + + + + Defines if name must be output in uppercase. Default is false. + + + + + Defines if declared encoding must be read from the document. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node. + Default is true. + + + + + Defines the name of a node that will throw the StopperNodeException when found as an end node. Default is null. + + + + + Defines if the 'id' attribute must be specifically used. Default is true. + + + + + Defines if empty nodes must be written as closed during output. Default is false. + + + + + Creates an instance of an HTML document. + + + + Gets the parsed text. + The parsed text. + + + + Defines the max level we would go deep into the html document. If this depth level is exceeded, and exception is + thrown. + + + + + Gets the document CRC32 checksum if OptionComputeChecksum was set to true before parsing, 0 otherwise. + + + + + Gets the document's declared encoding. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node (pre-HTML5) or the meta charset="XXXXX" html node (HTML5). + + + + + Gets the root node of the document. + + + + + Gets the document's output encoding. + + + + + Gets a list of parse errors found in the document. + + + + + Gets the remaining text. + Will always be null if OptionStopperNodeName is null. + + + + + Gets the offset of Remainder in the original Html text. + If OptionStopperNodeName is null, this will return the length of the original Html text. + + + + + Gets the document's stream encoding. + + + + + Gets a valid XML name. + + Any text. + A string that is a valid XML name. + + + + Applies HTML encoding to a specified string. + + The input string to encode. May not be null. + The encoded string. + + + + Determines if the specified character is considered as a whitespace character. + + The character to check. + true if if the specified character is considered as a whitespace character. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The new HTML attribute. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The value of the attribute. + The new HTML attribute. + + + + Creates an HTML comment node. + + The new HTML comment node. + + + + Creates an HTML comment node with the specified comment text. + + The comment text. May not be null. + The new HTML comment node. + + + + Creates an HTML element node with the specified name. + + The qualified name of the element. May not be null. + The new HTML node. + + + + Creates an HTML text node. + + The new HTML text node. + + + + Creates an HTML text node with the specified text. + + The text of the node. May not be null. + The new HTML text node. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The html is checked. + The detected encoding. + + + + Detects the encoding of an HTML text provided on a TextReader. + + The TextReader used to feed the HTML. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML text. + + The input html text. May not be null. + The detected encoding. + + + + Gets the HTML node with the specified 'id' attribute value. + + The attribute id to match. May not be null. + The HTML node with the matching id or null if not found. + + + + Loads an HTML document from a stream. + + The input stream. + + + + Loads an HTML document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + The minimum buffer size. + + + + Loads the HTML document from the specified TextReader. + + The TextReader used to feed the HTML data into the document. May not be null. + + + + Loads the HTML document from the specified string. + + String containing the HTML document to load. May not be null. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. May not be null. + The character encoding to use. May not be null. + + + + Saves the HTML document to the specified StreamWriter. + + The StreamWriter to which you want to save. + + + + Saves the HTML document to the specified TextWriter. + + The TextWriter to which you want to save. May not be null. + + + + Saves the HTML document to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Detects the encoding of an HTML document from a file first, and then loads the file. + + The complete file path to be read. + + + + Detects the encoding of an HTML document from a file first, and then loads the file. + + The complete file path to be read. May not be null. + true to detect encoding, false otherwise. + + + + Detects the encoding of an HTML file. + + Path for the file containing the HTML document to detect. May not be null. + The detected encoding. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. May not be null. + The character encoding to use. May not be null. + + + + Creates a new XPathNavigator object for navigating this HTML document. + + An XPathNavigator object. The XPathNavigator is positioned on the root of the document. + + + + Flags that describe the behavior of an Element node. + + + + + The node is a CDATA node. + + + + + The node is empty. META or IMG are example of such nodes. + + + + + The node will automatically be closed during parsing. + + + + + The node can overlap. + + + + + A utility class to replace special characters by entities and vice-versa. + Follows HTML 4.0 specification found at http://www.w3.org/TR/html4/sgml/entities.html + Follows Additional specification found at https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references + See also: https://html.spec.whatwg.org/multipage/named-characters.html#named-character-references + + + + + A collection of entities indexed by name. + + + + + A collection of entities indexed by value. + + + + + Replace known entities by characters. + + The source text. + The result text. + + + + Clone and entitize an HtmlNode. This will affect attribute values and nodes' text. It will also entitize all child nodes. + + The node to entitize. + An entitized cloned node. + + + + Replace characters above 127 by entities. + + The source text. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + If set to true, the [quote], [ampersand], [lower than] and [greather than] characters will be entitized. + The result text + + + + Represents an HTML node. + + + + + Gets the name of a comment node. It is actually defined as '#comment'. + + + + + Gets the name of the document node. It is actually defined as '#document'. + + + + + Gets the name of a text node. It is actually defined as '#text'. + + + + + Gets a collection of flags that define specific behaviors for specific element nodes. + The table contains a DictionaryEntry list with the lowercase tag name as the Key, and a combination of HtmlElementFlags as the Value. + + + + + Initialize HtmlNode. Builds a list of all tags that have special allowances + + + + + Initializes HtmlNode, providing type, owner and where it exists in a collection + + + + + + + + Gets the collection of HTML attributes for this node. May not be null. + + + + + Gets all the children of the node. + + + + + Gets a value indicating if this node has been closed or not. + + + + + Gets the collection of HTML attributes for the closing tag. May not be null. + + + + + Gets the closing tag of the node, null if the node is self-closing. + + + + + Gets the first child of the node. + + + + + Gets a value indicating whether the current node has any attributes. + + + + + Gets a value indicating whether this node has any child nodes. + + + + + Gets a value indicating whether the current node has any attributes on the closing tag. + + + + + Gets or sets the value of the 'id' HTML attribute. The document must have been parsed using the OptionUseIdAttribute set to true. + + + + + Gets or Sets the HTML between the start and end tags of the object. + + + + + Gets or Sets the text between the start and end tags of the object. + + + + + Gets the last child of the node. + + + + + Gets the line number of this node in the document. + + + + + Gets the column number of this node in the document. + + + + + Gets the stream position of the area between the opening and closing tag of the node, relative to the start of the document. + + + + + Gets the length of the area between the opening and closing tag of the node. + + + + + Gets the length of the entire node, opening and closing tag included. + + + + + Gets or sets this node's name. + + + + + Gets the HTML node immediately following this element. + + + + + Gets the type of this node. + + + + + The original unaltered name of the tag + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets the to which this node belongs. + + + + + Gets the parent of this node (for nodes that can have parents). + + + + + Gets the node immediately preceding this node. + + + + + Gets the stream position of this node in the document, relative to the start of the document. + + + + + Gets a valid XPath string that points to this node + + + + + Determines if an element node can be kept overlapped. + + The name of the element node to check. May not be null. + true if the name is the name of an element node that can be kept overlapped, false otherwise. + + + + Creates an HTML node from a string representing literal HTML. + + The HTML text. + The newly created node instance. + + + + Determines if an element node is a CDATA element node. + + The name of the element node to check. May not be null. + true if the name is the name of a CDATA element node, false otherwise. + + + + Determines if an element node is closed. + + The name of the element node to check. May not be null. + true if the name is the name of a closed element node, false otherwise. + + + + Determines if an element node is defined as empty. + + The name of the element node to check. May not be null. + true if the name is the name of an empty element node, false otherwise. + + + + Determines if a text corresponds to the closing tag of an node that can be kept overlapped. + + The text to check. May not be null. + true or false. + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Get Ancestors with matching name + + + + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Gets all anscestor nodes and the current node + + + + + + + Adds the specified node to the end of the list of children of this node. + + The node to add. May not be null. + The node added. + + + Sets child nodes identifier. + The chil node. + + + + Adds the specified node to the end of the list of children of this node. + + The node list to add. May not be null. + + + + Gets all Attributes with name + + + + + + + Creates a duplicate of the node + + + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + The cloned node. + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node. + + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node and the subtree under it. + + The node to duplicate. May not be null. + + + + Creates a duplicate of the node. + + The node to duplicate. May not be null. + true to recursively clone the subtree under the specified node, false to clone only the node itself. + + + + Gets all Descendant nodes for this node and each of child nodes + + The depth level of the node to parse in the html tree + the current element as an HtmlNode + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Get all descendant nodes with matching name + + + + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all descendant nodes including this node + + + + + + + Gets first generation child node matching name + + + + + + + Gets matching first generation child nodes matching name + + + + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Inserts the specified node immediately after the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newNode is placed after the refNode. + The node being inserted. + + + + Inserts the specified node immediately before the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newChild is placed before this node. + The node being inserted. + + + + Adds the specified node to the beginning of the list of children of this node. + + The node to add. May not be null. + The node added. + + + + Adds the specified node list to the beginning of the list of children of this node. + + The node list to add. May not be null. + + + + Removes node from parent collection + + + + + Removes all the children and/or attributes of the current node. + + + + + Removes all the children of the current node. + + + + Removes all id for node described by node. + The node. + + + + Removes the specified child node. + + The node being removed. May not be null. + The node removed. + + + + Removes the specified child node. + + The node being removed. May not be null. + true to keep grand children of the node, false otherwise. + The node removed. + + + + Replaces the child node oldChild with newChild node. + + The new node to put in the child list. + The node being replaced in the list. + The node replaced. + + + + Helper method to set the value of an attribute of this node. If the attribute is not found, it will be created automatically. + + The name of the attribute to set. May not be null. + The value for the attribute. + The corresponding attribute instance. + + + + Saves all the children of the node to the specified TextWriter. + + The TextWriter to which you want to save. + Identifies the level we are in starting at root with 0 + + + + Saves all the children of the node to a string. + + The saved string. + + + + Saves the current node to the specified TextWriter. + + The TextWriter to which you want to save. + identifies the level we are in starting at root with 0 + + + + Saves the current node to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Saves the current node to a string. + + The saved string. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + true to throw Error if class name exists, false otherwise. + + + + Removes the class attribute from the node. + + + + + Removes the class attribute from the node. + + true to throw Error if class name doesn't exist, false otherwise. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + true to throw Error if class name doesn't exist, false otherwise. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + true to throw Error if class name doesn't exist, false otherwise. + + + Gets the CSS Class from the node. + + The CSS Class from the node + + + + Check if the node class has the parameter class. + The class. + True if node class has the parameter class, false if not. + + + + Fill an object and go through it's properties and fill them too. + + Type of object to want to fill. It should have atleast one property that defined XPath. + If htmlDocument includes data , leave this parameter null. Else pass your specific htmldocument. + Returns an object of type T including Encapsulated data. + + + + Fill an object and go through it's properties and fill them too. + + Type of object to want to fill. It should have atleast one property that defined XPath. + If htmlDocument includes data , leave this parameter null. Else pass your specific htmldocument. + Returns an object of type targetType including Encapsulated data. + + + + Creates a new XPathNavigator object for navigating this HTML node. + + An XPathNavigator object. The XPathNavigator is positioned on the node from which the method was called. It is not positioned on the root of the document. + + + + Creates an XPathNavigator using the root of this document. + + + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Selects the first XmlNode that matches the XPath expression. + + The XPath expression. May not be null. + The first that matches the XPath query or a null reference if no matching node was found. + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Includes tools that GetEncapsulatedData method uses them. + + + + + Determine if a type define an attribute or not , supporting both .NetStandard and .NetFramework2.0 + + Type you want to test it. + Attribute that type must have or not. + If true , The type parameter define attributeType parameter. + + + + Retrive properties of type that defined . + + Type that you want to find it's XPath-Defined properties. + IEnumerable of property infos of a type , that defined specific attribute. + + + + Determine if a has implemented BUT is considered as NONE-IEnumerable ! + + The property info you want to test. + True if property info is IEnumerable. + + + + Returns T type(first generic type) of or . + + IEnumerable-Implemented property + List of generic types. + + + + Find and Return a mehtod that defined in a class by it's name. + + Type of class include requested method. + Name of requested method as string. + Method info of requested method. + + + + Create of given type. + + Type that you want to make a List of it. + Returns IList of given type. + + + + Returns the part of value of you want as . + + A htmlNode instance. + Attribute that includes ReturnType + String that choosen from HtmlNode as result. + + + + Returns parts of values of you want as . + + that you want to retrive each value. + A instnce incules . + Type of IList generic you want. + + + + + Simulate Func method to use in Lambada Expression. + + + + + + + + + This method works like Where method in LINQ. + + + + + + + + + Check if the type can instantiated. + + + + + + + Returns count of elements stored in IEnumerable of T + + + + + + + + Specify which part of is requested. + + + + + Just mark and flag classes to show they have properties that defined . + + + + + Includes XPath and . XPath for finding html tags and for specify which part of you want to return. + + + + + Represents a combined list and collection of HTML nodes. + + + + + Initialize the HtmlNodeCollection with the base parent node + + The base node of the collection + + + + Gets a given node from the list. + + + + + Get node with tag name + + + + + + + Gets the number of elements actually contained in the list. + + + + + Is collection read only + + + + + Gets the node at the specified index. + + + + + Add node to the collection + + + + + + Add node to the collection + + + + + + + Clears out the collection of HtmlNodes. Removes each nodes reference to parentnode, nextnode and prevnode + + + + + Gets existence of node in collection + + + + + + + Copy collection to array + + + + + + + Get Enumerator + + + + + + Get Explicit Enumerator + + + + + + Get index of node + + + + + + + Insert node at index + + + + + + + Remove node + + + + + + + Remove at index + + + + + + Get first instance of node in supplied collection + + + + + + + + Add node to the end of the collection + + + + + + Get first instance of node with name + + + + + + + Get index of node + + + + + + + Add node to the beginning of the collection + + + + + + Remove node at index + + + + + + + Replace node at index + + + + + + + Get all node descended from this collection + + + + + + Get all node descended from this collection with matching name + + + + + + Gets all first generation elements in collection + + + + + + Gets all first generation elements matching name + + + + + + + All first generation nodes in collection + + + + + + Represents an HTML navigator on an HTML document seen as a data store. + + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + The minimum buffer size. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a TextReader. + + The TextReader used to feed the HTML data into the document. + + + + Gets the base URI for the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the current HTML document. + + + + + Gets the current HTML node. + + + + + Gets a value indicating whether the current node has child nodes. + + + + + Gets a value indicating whether the current node has child nodes. + + + + + Gets a value indicating whether the current node is an empty element. + + + + + Gets the name of the current HTML node without the namespace prefix. + + + + + Gets the qualified name of the current node. + + + + + Gets the namespace URI (as defined in the W3C Namespace Specification) of the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the associated with this implementation. + + + + + Gets the type of the current node. + + + + + Gets the prefix associated with the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the text value of the current node. + + + + + Gets the xml:lang scope for the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Creates a new HtmlNavigator positioned at the same node as this HtmlNavigator. + + A new HtmlNavigator object positioned at the same node as the original HtmlNavigator. + + + + Gets the value of the HTML attribute with the specified LocalName and NamespaceURI. + + The local name of the HTML attribute. + The namespace URI of the attribute. Unsupported with the HtmlNavigator implementation. + The value of the specified HTML attribute. String.Empty or null if a matching attribute is not found or if the navigator is not positioned on an element node. + + + + Returns the value of the namespace node corresponding to the specified local name. + Always returns string.Empty for the HtmlNavigator implementation. + + The local name of the namespace node. + Always returns string.Empty for the HtmlNavigator implementation. + + + + Determines whether the current HtmlNavigator is at the same position as the specified HtmlNavigator. + + The HtmlNavigator that you want to compare against. + true if the two navigators have the same position, otherwise, false. + + + + Moves to the same position as the specified HtmlNavigator. + + The HtmlNavigator positioned on the node that you want to move to. + true if successful, otherwise false. If false, the position of the navigator is unchanged. + + + + Moves to the HTML attribute with matching LocalName and NamespaceURI. + + The local name of the HTML attribute. + The namespace URI of the attribute. Unsupported with the HtmlNavigator implementation. + true if the HTML attribute is found, otherwise, false. If false, the position of the navigator does not change. + + + + Moves to the first sibling of the current node. + + true if the navigator is successful moving to the first sibling node, false if there is no first sibling or if the navigator is currently positioned on an attribute node. + + + + Moves to the first HTML attribute. + + true if the navigator is successful moving to the first HTML attribute, otherwise, false. + + + + Moves to the first child of the current node. + + true if there is a first child node, otherwise false. + + + + Moves the XPathNavigator to the first namespace node of the current element. + Always returns false for the HtmlNavigator implementation. + + An XPathNamespaceScope value describing the namespace scope. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the node that has an attribute of type ID whose value matches the specified string. + + A string representing the ID value of the node to which you want to move. This argument does not need to be atomized. + true if the move was successful, otherwise false. If false, the position of the navigator is unchanged. + + + + Moves the XPathNavigator to the namespace node with the specified local name. + Always returns false for the HtmlNavigator implementation. + + The local name of the namespace node. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the next sibling of the current node. + + true if the navigator is successful moving to the next sibling node, false if there are no more siblings or if the navigator is currently positioned on an attribute node. If false, the position of the navigator is unchanged. + + + + Moves to the next HTML attribute. + + + + + + Moves the XPathNavigator to the next namespace node. + Always returns falsefor the HtmlNavigator implementation. + + An XPathNamespaceScope value describing the namespace scope. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the parent of the current node. + + true if there is a parent node, otherwise false. + + + + Moves to the previous sibling of the current node. + + true if the navigator is successful moving to the previous sibling node, false if there is no previous sibling or if the navigator is currently positioned on an attribute node. + + + + Moves to the root node to which the current node belongs. + + + + + Represents the type of a node. + + + + + The root of a document. + + + + + An HTML element. + + + + + An HTML comment. + + + + + A text node is always the child of an element or a document node. + + + + + Represents a parsing error found during document parsing. + + + + + Gets the type of error. + + + + + Gets the line number of this error in the document. + + + + + Gets the column number of this error in the document. + + + + + Gets a description for the error. + + + + + Gets the the full text of the line containing the error. + + + + + Gets the absolute stream position of this error in the document, relative to the start of the document. + + + + + Represents the type of parsing error. + + + + + A tag was not closed. + + + + + A tag was not opened. + + + + + There is a charset mismatch between stream and declared (META) encoding. + + + + + An end tag was not required. + + + + + An end tag is invalid at this position. + + + + + Represents an HTML text node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets or Sets the text of the node. + + + + + A utility class to get HTML document from HTTP. + + + + + Represents the method that will handle the PostResponse event. + + + + + Represents the method that will handle the PreHandleDocument event. + + + + + Represents the method that will handle the PostResponse event. + + + + + Occurs after an HTTP request has been executed. + + + + + Occurs before an HTML document is handled. + + + + + Occurs before an HTTP request is executed. + + + + + Gets or Sets a value indicating if document encoding must be automatically detected. + + + + + Gets or sets the Encoding used to override the response stream from any web request + + + + + Gets or Sets a value indicating whether to get document only from the cache. + If this is set to true and document is not found in the cache, nothing will be loaded. + + + + + Gets or Sets a value indicating whether to get document from the cache if exists, otherwise from the web + A value indicating whether to get document from the cache if exists, otherwise from the web + + + + + Gets or Sets the cache path. If null, no caching mechanism will be used. + + + + + Gets a value indicating if the last document was retrieved from the cache. + + + + + Gets the last request duration in milliseconds. + + + + + Gets the URI of the Internet resource that actually responded to the request. + + + + + Gets the last request status. + + + + + Gets or Sets the size of the buffer used for memory operations. + + + + + Gets or Sets a value indicating if cookies will be stored. + + + + Gets or sets a value indicating whether redirect should be captured instead of the current location. + True if capture redirect, false if not. + + + + Gets or Sets the User Agent HTTP 1.1 header sent on any webrequest + + + + + Gets or Sets a value indicating whether the caching mechanisms should be used or not. + + + + + Gets an HTML document from an Internet resource and saves it to the specified file. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + + + Gets an HTML document from an Internet resource and saves it to the specified file. - Proxy aware + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + + + + + Gets an HTML document from an Internet resource and saves it to the specified file. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + + + + Gets an HTML document from an Internet resource and saves it to the specified file. Understands Proxies + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + + + + + Gets the cache file path for a specified url. + + The url fo which to retrieve the cache path. May not be null. + The cache file path. + + + + Gets an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + A new HTML document. + + + + Gets an HTML document from an Internet resource. + + The requested Uri, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + Proxy to use with this request + Credentials to use when authenticating + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested Uri, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + Proxy to use with this request + Credentials to use when authenticating + A new HTML document. + + + + Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The XmlTextWriter to which you want to save to. + + + + Begins the process of downloading an internet resource + + Url to the html document + + + + Begins the process of downloading an internet resource + + Url to the html document + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The credentials to use for authenticating the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The credentials to use for authenticating the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + The credentials to use for authenticating the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + The credentials to use for authenticating the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + An interface for getting permissions of the running application + + + + + Checks to see if Registry access is available to the caller + + + + + + Checks to see if DNS information is available to the caller + + + + + + Represents an exception thrown by the HtmlWeb utility class. + + + + + Creates an instance of the HtmlWebException. + + The exception's message. + + + + Represents a document with mixed code and text. ASP, ASPX, JSP, are good example of such documents. + + + + + Gets or sets the token representing code end. + + + + + Gets or sets the token representing code start. + + + + + Gets or sets the token representing code directive. + + + + + Gets or sets the token representing response write directive. + + + + + Creates a mixed code document instance. + + + + + Gets the code represented by the mixed code document seen as a template. + + + + + Gets the list of code fragments in the document. + + + + + Gets the list of all fragments in the document. + + + + + Gets the encoding of the stream used to read the document. + + + + + Gets the list of text fragments in the document. + + + + + Create a code fragment instances. + + The newly created code fragment instance. + + + + Create a text fragment instances. + + The newly created text fragment instance. + + + + Loads a mixed code document from a stream. + + The input stream. + + + + Loads a mixed code document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Loads the mixed code document from the specified TextReader. + + The TextReader used to feed the HTML data into the document. + + + + Loads a mixed document from a text + + The text to load. + + + + Saves the mixed document to the specified stream. + + The stream to which you want to save. + + + + Saves the mixed document to the specified stream. + + The stream to which you want to save. + The character encoding to use. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + The character encoding to use. + + + + Saves the mixed document to the specified StreamWriter. + + The StreamWriter to which you want to save. + + + + Saves the mixed document to the specified TextWriter. + + The TextWriter to which you want to save. + + + + Represents a fragment of code in a mixed code document. + + + + + Gets the fragment code text. + + + + + Represents a base class for fragments in a mixed code document. + + + + + Gets the fragement text. + + + + + Gets the type of fragment. + + + + + Gets the line number of the fragment. + + + + + Gets the line position (column) of the fragment. + + + + + Gets the fragment position in the document's stream. + + + + + Represents a list of mixed code fragments. + + + + + Gets the Document + + + + + Gets the number of fragments contained in the list. + + + + + Gets a fragment from the list using its index. + + + + + Gets an enumerator that can iterate through the fragment list. + + + + + Appends a fragment to the list of fragments. + + The fragment to append. May not be null. + + + + Gets an enumerator that can iterate through the fragment list. + + + + + Prepends a fragment to the list of fragments. + + The fragment to append. May not be null. + + + + Remove a fragment from the list of fragments. If this fragment was not in the list, an exception will be raised. + + The fragment to remove. May not be null. + + + + Remove all fragments from the list. + + + + + Remove a fragment from the list of fragments, using its index in the list. + + The index of the fragment to remove. + + + + Represents a fragment enumerator. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + Advances the enumerator to the next element of the collection. + + true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. + + + + Sets the enumerator to its initial position, which is before the first element in the collection. + + + + + Represents the type of fragment in a mixed code document. + + + + + The fragment contains code. + + + + + The fragment contains text. + + + + + Represents a fragment of text in a mixed code document. + + + + + Gets the fragment text. + + + + diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/netstandard2.0/HtmlAgilityPack.deps.json b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard2.0/HtmlAgilityPack.deps.json new file mode 100644 index 0000000..8bad467 --- /dev/null +++ b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard2.0/HtmlAgilityPack.deps.json @@ -0,0 +1,996 @@ +{ + "runtimeTarget": { + "name": ".NETStandard,Version=v2.0/", + "signature": "736d1c99e55ff4bbcec0fbaa1ab3cc51b8f9be8d" + }, + "compilationOptions": {}, + "targets": { + ".NETStandard,Version=v2.0": {}, + ".NETStandard,Version=v2.0/": { + "HtmlAgilityPack/1.9.2": { + "dependencies": { + "NETStandard.Library": "2.0.3", + "System.Net.Http": "4.3.2", + "System.Xml.XPath": "4.3.0", + "System.Xml.XPath.XmlDocument": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "HtmlAgilityPack.dll": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "NETStandard.Library/2.0.3": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": { + "assemblyVersion": "4.0.13.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Net.Http/4.3.2": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "1.0.24212.1" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": { + "assemblyVersion": "4.0.12.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "4.1.0.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": { + "assemblyVersion": "4.1.0.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Xml.XPath/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Xml.XPath.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XPath": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + } + } + }, + "libraries": { + "HtmlAgilityPack/1.9.2": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", + "path": "netstandard.library/2.0.3", + "hashPath": "netstandard.library.2.0.3.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Net.Http/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y7hv0o0weI0j0mvEcBOdt1F3CAADiWlcw3e54m8TfYiRmBPDIsHElx8QUPDlY4x6yWXKPGN0Z2TuXCTPgkm5WQ==", + "path": "system.net.http/4.3.2", + "hashPath": "system.net.http.4.3.2.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XPath/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", + "path": "system.xml.xpath/4.3.0", + "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" + }, + "System.Xml.XPath.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", + "path": "system.xml.xpath.xmldocument/4.3.0", + "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/netstandard2.0/HtmlAgilityPack.dll b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard2.0/HtmlAgilityPack.dll new file mode 100644 index 0000000..59cdddf Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard2.0/HtmlAgilityPack.dll differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/netstandard2.0/HtmlAgilityPack.pdb b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard2.0/HtmlAgilityPack.pdb new file mode 100644 index 0000000..65208ad Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard2.0/HtmlAgilityPack.pdb differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/netstandard2.0/HtmlAgilityPack.xml b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard2.0/HtmlAgilityPack.xml new file mode 100644 index 0000000..8e4fa53 --- /dev/null +++ b/Packages/HtmlAgilityPack.1.9.2/lib/netstandard2.0/HtmlAgilityPack.xml @@ -0,0 +1,2953 @@ + + + + HtmlAgilityPack + + + + + A utility class to compute CRC32. + + + + + Compute a checksum for a given array of bytes. + + The array of bytes to compute the checksum for. + The computed checksum. + + + + Compute a checksum for a given string. + + The string to compute the checksum for. + The computed checksum. + + + + Represents an HTML attribute. + + + + + Gets the line number of this attribute in the document. + + + + + Gets the column number of this attribute in the document. + + + + + Gets the stream position of the value of this attribute in the document, relative to the start of the document. + + + + + Gets the length of the value. + + + + + Gets the qualified name of the attribute. + + + + + Name of attribute with original case + + + + + Gets the HTML document to which this attribute belongs. + + + + + Gets the HTML node to which this attribute belongs. + + + + + Specifies what type of quote the data should be wrapped in + + + + + Gets the stream position of this attribute in the document, relative to the start of the document. + + + + + Gets or sets the value of the attribute. + + + + + Gets the DeEntitized value of the attribute. + + + + + Gets a valid XPath string that points to this Attribute + + + + + Compares the current instance with another attribute. Comparison is based on attributes' name. + + An attribute to compare with this instance. + A 32-bit signed integer that indicates the relative order of the names comparison. + + + + Creates a duplicate of this attribute. + + The cloned attribute. + + + + Removes this attribute from it's parents collection + + + + + An Enum representing different types of Quotes used for surrounding attribute values + + + + + A single quote mark ' + + + + + A double quote mark " + + + + + Represents a combined list and collection of HTML nodes. + + + + + Gets the number of elements actually contained in the list. + + + + + Gets readonly status of colelction + + + + + Gets the attribute at the specified index. + + + + + Gets a given attribute from the list using its name. + + + + + Adds supplied item to collection + + + + + + Explicit clear + + + + + Retreives existence of supplied item + + + + + + + Copies collection to array + + + + + + + Get Explicit enumerator + + + + + + Explicit non-generic enumerator + + + + + + Retrieves the index for the supplied item, -1 if not found + + + + + + + Inserts given item into collection at supplied index + + + + + + + Explicit collection remove + + + + + + + Removes the attribute at the specified index. + + The index of the attribute to remove. + + + + Adds a new attribute to the collection with the given values + + + + + + + Inserts the specified attribute as the last attribute in the collection. + + The attribute to insert. May not be null. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The value of the attribute to insert. + The appended attribute. + + + + Checks for existance of attribute with given name + + + + + + + Inserts the specified attribute as the first node in the collection. + + The attribute to insert. May not be null. + The prepended attribute. + + + + Removes a given attribute from the list. + + The attribute to remove. May not be null. + + + + Removes an attribute from the list, using its name. If there are more than one attributes with this name, they will all be removed. + + The attribute's name. May not be null. + + + + Remove all attributes in the list. + + + + + Returns all attributes with specified name. Handles case insentivity + + Name of the attribute + + + + + Removes all attributes from the collection + + + + + Clears the attribute collection + + + + + Represents an HTML comment. + + + + + Gets or Sets the comment text of the node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Represents a complete HTML document. + + + + True to disable, false to enable the behavaior tag p. + + + Default builder to use in the HtmlDocument constructor + + + Action to execute before the Parse is executed + + + + Defines the max level we would go deep into the html document + + + + The HtmlDocument Text. Careful if you modify it. + + + True to stay backward compatible with previous version of HAP. This option does not guarantee 100% compatibility. + + + + Adds Debugging attributes to node. Default is false. + + + + + Defines if closing for non closed nodes must be done at the end or directly in the document. + Setting this to true can actually change how browsers render the page. Default is false. + + + + + Defines if non closed nodes will be checked at the end of parsing. Default is true. + + + + + Defines if a checksum must be computed for the document while parsing. Default is false. + + + + + Defines if SelectNodes method will return null or empty collection when no node matched the XPath expression. + Setting this to true will return empty collection and false will return null. Default is false. + + + + True to disable, false to enable the server side code. + + + + Defines the default stream encoding to use. Default is System.Text.Encoding.Default. + + + + + Defines if source text must be extracted while parsing errors. + If the document has a lot of errors, or cascading errors, parsing performance can be dramatically affected if set to true. + Default is false. + + + + + Defines the maximum length of source text or parse errors. Default is 100. + + + + + Defines if LI, TR, TH, TD tags must be partially fixed when nesting errors are detected. Default is false. + + + + + Defines if output must conform to XML, instead of HTML. Default is false. + + + + + If used together with and enabled, Xml namespaces in element names are preserved. Default is false. + + + + + Defines if attribute value output must be optimized (not bound with double quotes if it is possible). Default is false. + + + + + Defines if name must be output with it's original case. Useful for asp.net tags and attributes. Default is false. + + + + + Defines if name must be output in uppercase. Default is false. + + + + + Defines if declared encoding must be read from the document. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node. + Default is true. + + + + + Defines the name of a node that will throw the StopperNodeException when found as an end node. Default is null. + + + + + Defines if the 'id' attribute must be specifically used. Default is true. + + + + + Defines if empty nodes must be written as closed during output. Default is false. + + + + + Creates an instance of an HTML document. + + + + Gets the parsed text. + The parsed text. + + + + Defines the max level we would go deep into the html document. If this depth level is exceeded, and exception is + thrown. + + + + + Gets the document CRC32 checksum if OptionComputeChecksum was set to true before parsing, 0 otherwise. + + + + + Gets the document's declared encoding. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node (pre-HTML5) or the meta charset="XXXXX" html node (HTML5). + + + + + Gets the root node of the document. + + + + + Gets the document's output encoding. + + + + + Gets a list of parse errors found in the document. + + + + + Gets the remaining text. + Will always be null if OptionStopperNodeName is null. + + + + + Gets the offset of Remainder in the original Html text. + If OptionStopperNodeName is null, this will return the length of the original Html text. + + + + + Gets the document's stream encoding. + + + + + Gets a valid XML name. + + Any text. + A string that is a valid XML name. + + + + Applies HTML encoding to a specified string. + + The input string to encode. May not be null. + The encoded string. + + + + Determines if the specified character is considered as a whitespace character. + + The character to check. + true if if the specified character is considered as a whitespace character. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The new HTML attribute. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The value of the attribute. + The new HTML attribute. + + + + Creates an HTML comment node. + + The new HTML comment node. + + + + Creates an HTML comment node with the specified comment text. + + The comment text. May not be null. + The new HTML comment node. + + + + Creates an HTML element node with the specified name. + + The qualified name of the element. May not be null. + The new HTML node. + + + + Creates an HTML text node. + + The new HTML text node. + + + + Creates an HTML text node with the specified text. + + The text of the node. May not be null. + The new HTML text node. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The html is checked. + The detected encoding. + + + + Detects the encoding of an HTML text provided on a TextReader. + + The TextReader used to feed the HTML. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML text. + + The input html text. May not be null. + The detected encoding. + + + + Gets the HTML node with the specified 'id' attribute value. + + The attribute id to match. May not be null. + The HTML node with the matching id or null if not found. + + + + Loads an HTML document from a stream. + + The input stream. + + + + Loads an HTML document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + The minimum buffer size. + + + + Loads the HTML document from the specified TextReader. + + The TextReader used to feed the HTML data into the document. May not be null. + + + + Loads the HTML document from the specified string. + + String containing the HTML document to load. May not be null. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. May not be null. + The character encoding to use. May not be null. + + + + Saves the HTML document to the specified StreamWriter. + + The StreamWriter to which you want to save. + + + + Saves the HTML document to the specified TextWriter. + + The TextWriter to which you want to save. May not be null. + + + + Saves the HTML document to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Detects the encoding of an HTML document from a file first, and then loads the file. + + The complete file path to be read. + + + + Detects the encoding of an HTML document from a file first, and then loads the file. + + The complete file path to be read. May not be null. + true to detect encoding, false otherwise. + + + + Detects the encoding of an HTML file. + + Path for the file containing the HTML document to detect. May not be null. + The detected encoding. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. May not be null. + The character encoding to use. May not be null. + + + + Creates a new XPathNavigator object for navigating this HTML document. + + An XPathNavigator object. The XPathNavigator is positioned on the root of the document. + + + + Flags that describe the behavior of an Element node. + + + + + The node is a CDATA node. + + + + + The node is empty. META or IMG are example of such nodes. + + + + + The node will automatically be closed during parsing. + + + + + The node can overlap. + + + + + A utility class to replace special characters by entities and vice-versa. + Follows HTML 4.0 specification found at http://www.w3.org/TR/html4/sgml/entities.html + Follows Additional specification found at https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references + See also: https://html.spec.whatwg.org/multipage/named-characters.html#named-character-references + + + + + A collection of entities indexed by name. + + + + + A collection of entities indexed by value. + + + + + Replace known entities by characters. + + The source text. + The result text. + + + + Clone and entitize an HtmlNode. This will affect attribute values and nodes' text. It will also entitize all child nodes. + + The node to entitize. + An entitized cloned node. + + + + Replace characters above 127 by entities. + + The source text. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + If set to true, the [quote], [ampersand], [lower than] and [greather than] characters will be entitized. + The result text + + + + Represents an HTML node. + + + + + Gets the name of a comment node. It is actually defined as '#comment'. + + + + + Gets the name of the document node. It is actually defined as '#document'. + + + + + Gets the name of a text node. It is actually defined as '#text'. + + + + + Gets a collection of flags that define specific behaviors for specific element nodes. + The table contains a DictionaryEntry list with the lowercase tag name as the Key, and a combination of HtmlElementFlags as the Value. + + + + + Initialize HtmlNode. Builds a list of all tags that have special allowances + + + + + Initializes HtmlNode, providing type, owner and where it exists in a collection + + + + + + + + Gets the collection of HTML attributes for this node. May not be null. + + + + + Gets all the children of the node. + + + + + Gets a value indicating if this node has been closed or not. + + + + + Gets the collection of HTML attributes for the closing tag. May not be null. + + + + + Gets the closing tag of the node, null if the node is self-closing. + + + + + Gets the first child of the node. + + + + + Gets a value indicating whether the current node has any attributes. + + + + + Gets a value indicating whether this node has any child nodes. + + + + + Gets a value indicating whether the current node has any attributes on the closing tag. + + + + + Gets or sets the value of the 'id' HTML attribute. The document must have been parsed using the OptionUseIdAttribute set to true. + + + + + Gets or Sets the HTML between the start and end tags of the object. + + + + + Gets or Sets the text between the start and end tags of the object. + + + + + Gets the last child of the node. + + + + + Gets the line number of this node in the document. + + + + + Gets the column number of this node in the document. + + + + + Gets the stream position of the area between the opening and closing tag of the node, relative to the start of the document. + + + + + Gets the length of the area between the opening and closing tag of the node. + + + + + Gets the length of the entire node, opening and closing tag included. + + + + + Gets or sets this node's name. + + + + + Gets the HTML node immediately following this element. + + + + + Gets the type of this node. + + + + + The original unaltered name of the tag + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets the to which this node belongs. + + + + + Gets the parent of this node (for nodes that can have parents). + + + + + Gets the node immediately preceding this node. + + + + + Gets the stream position of this node in the document, relative to the start of the document. + + + + + Gets a valid XPath string that points to this node + + + + + Determines if an element node can be kept overlapped. + + The name of the element node to check. May not be null. + true if the name is the name of an element node that can be kept overlapped, false otherwise. + + + + Creates an HTML node from a string representing literal HTML. + + The HTML text. + The newly created node instance. + + + + Determines if an element node is a CDATA element node. + + The name of the element node to check. May not be null. + true if the name is the name of a CDATA element node, false otherwise. + + + + Determines if an element node is closed. + + The name of the element node to check. May not be null. + true if the name is the name of a closed element node, false otherwise. + + + + Determines if an element node is defined as empty. + + The name of the element node to check. May not be null. + true if the name is the name of an empty element node, false otherwise. + + + + Determines if a text corresponds to the closing tag of an node that can be kept overlapped. + + The text to check. May not be null. + true or false. + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Get Ancestors with matching name + + + + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Gets all anscestor nodes and the current node + + + + + + + Adds the specified node to the end of the list of children of this node. + + The node to add. May not be null. + The node added. + + + Sets child nodes identifier. + The chil node. + + + + Adds the specified node to the end of the list of children of this node. + + The node list to add. May not be null. + + + + Gets all Attributes with name + + + + + + + Creates a duplicate of the node + + + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + The cloned node. + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node. + + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node and the subtree under it. + + The node to duplicate. May not be null. + + + + Creates a duplicate of the node. + + The node to duplicate. May not be null. + true to recursively clone the subtree under the specified node, false to clone only the node itself. + + + + Gets all Descendant nodes for this node and each of child nodes + + The depth level of the node to parse in the html tree + the current element as an HtmlNode + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Get all descendant nodes with matching name + + + + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all descendant nodes including this node + + + + + + + Gets first generation child node matching name + + + + + + + Gets matching first generation child nodes matching name + + + + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Inserts the specified node immediately after the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newNode is placed after the refNode. + The node being inserted. + + + + Inserts the specified node immediately before the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newChild is placed before this node. + The node being inserted. + + + + Adds the specified node to the beginning of the list of children of this node. + + The node to add. May not be null. + The node added. + + + + Adds the specified node list to the beginning of the list of children of this node. + + The node list to add. May not be null. + + + + Removes node from parent collection + + + + + Removes all the children and/or attributes of the current node. + + + + + Removes all the children of the current node. + + + + Removes all id for node described by node. + The node. + + + + Removes the specified child node. + + The node being removed. May not be null. + The node removed. + + + + Removes the specified child node. + + The node being removed. May not be null. + true to keep grand children of the node, false otherwise. + The node removed. + + + + Replaces the child node oldChild with newChild node. + + The new node to put in the child list. + The node being replaced in the list. + The node replaced. + + + + Helper method to set the value of an attribute of this node. If the attribute is not found, it will be created automatically. + + The name of the attribute to set. May not be null. + The value for the attribute. + The corresponding attribute instance. + + + + Saves all the children of the node to the specified TextWriter. + + The TextWriter to which you want to save. + Identifies the level we are in starting at root with 0 + + + + Saves all the children of the node to a string. + + The saved string. + + + + Saves the current node to the specified TextWriter. + + The TextWriter to which you want to save. + identifies the level we are in starting at root with 0 + + + + Saves the current node to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Saves the current node to a string. + + The saved string. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + true to throw Error if class name exists, false otherwise. + + + + Removes the class attribute from the node. + + + + + Removes the class attribute from the node. + + true to throw Error if class name doesn't exist, false otherwise. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + true to throw Error if class name doesn't exist, false otherwise. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + true to throw Error if class name doesn't exist, false otherwise. + + + Gets the CSS Class from the node. + + The CSS Class from the node + + + + Check if the node class has the parameter class. + The class. + True if node class has the parameter class, false if not. + + + + Fill an object and go through it's properties and fill them too. + + Type of object to want to fill. It should have atleast one property that defined XPath. + If htmlDocument includes data , leave this parameter null. Else pass your specific htmldocument. + Returns an object of type T including Encapsulated data. + + + + Fill an object and go through it's properties and fill them too. + + Type of object to want to fill. It should have atleast one property that defined XPath. + If htmlDocument includes data , leave this parameter null. Else pass your specific htmldocument. + Returns an object of type targetType including Encapsulated data. + + + + Creates a new XPathNavigator object for navigating this HTML node. + + An XPathNavigator object. The XPathNavigator is positioned on the node from which the method was called. It is not positioned on the root of the document. + + + + Creates an XPathNavigator using the root of this document. + + + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Selects the first XmlNode that matches the XPath expression. + + The XPath expression. May not be null. + The first that matches the XPath query or a null reference if no matching node was found. + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Includes tools that GetEncapsulatedData method uses them. + + + + + Determine if a type define an attribute or not , supporting both .NetStandard and .NetFramework2.0 + + Type you want to test it. + Attribute that type must have or not. + If true , The type parameter define attributeType parameter. + + + + Retrive properties of type that defined . + + Type that you want to find it's XPath-Defined properties. + IEnumerable of property infos of a type , that defined specific attribute. + + + + Determine if a has implemented BUT is considered as NONE-IEnumerable ! + + The property info you want to test. + True if property info is IEnumerable. + + + + Returns T type(first generic type) of or . + + IEnumerable-Implemented property + List of generic types. + + + + Find and Return a mehtod that defined in a class by it's name. + + Type of class include requested method. + Name of requested method as string. + Method info of requested method. + + + + Create of given type. + + Type that you want to make a List of it. + Returns IList of given type. + + + + Returns the part of value of you want as . + + A htmlNode instance. + Attribute that includes ReturnType + String that choosen from HtmlNode as result. + + + + Returns parts of values of you want as . + + that you want to retrive each value. + A instnce incules . + Type of IList generic you want. + + + + + Simulate Func method to use in Lambada Expression. + + + + + + + + + This method works like Where method in LINQ. + + + + + + + + + Check if the type can instantiated. + + + + + + + Returns count of elements stored in IEnumerable of T + + + + + + + + Specify which part of is requested. + + + + + Just mark and flag classes to show they have properties that defined . + + + + + Includes XPath and . XPath for finding html tags and for specify which part of you want to return. + + + + + Represents a combined list and collection of HTML nodes. + + + + + Initialize the HtmlNodeCollection with the base parent node + + The base node of the collection + + + + Gets a given node from the list. + + + + + Get node with tag name + + + + + + + Gets the number of elements actually contained in the list. + + + + + Is collection read only + + + + + Gets the node at the specified index. + + + + + Add node to the collection + + + + + + Add node to the collection + + + + + + + Clears out the collection of HtmlNodes. Removes each nodes reference to parentnode, nextnode and prevnode + + + + + Gets existence of node in collection + + + + + + + Copy collection to array + + + + + + + Get Enumerator + + + + + + Get Explicit Enumerator + + + + + + Get index of node + + + + + + + Insert node at index + + + + + + + Remove node + + + + + + + Remove at index + + + + + + Get first instance of node in supplied collection + + + + + + + + Add node to the end of the collection + + + + + + Get first instance of node with name + + + + + + + Get index of node + + + + + + + Add node to the beginning of the collection + + + + + + Remove node at index + + + + + + + Replace node at index + + + + + + + Get all node descended from this collection + + + + + + Get all node descended from this collection with matching name + + + + + + Gets all first generation elements in collection + + + + + + Gets all first generation elements matching name + + + + + + + All first generation nodes in collection + + + + + + Represents an HTML navigator on an HTML document seen as a data store. + + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + The minimum buffer size. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a TextReader. + + The TextReader used to feed the HTML data into the document. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + The character encoding to use. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Gets the base URI for the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the current HTML document. + + + + + Gets the current HTML node. + + + + + Gets a value indicating whether the current node has child nodes. + + + + + Gets a value indicating whether the current node has child nodes. + + + + + Gets a value indicating whether the current node is an empty element. + + + + + Gets the name of the current HTML node without the namespace prefix. + + + + + Gets the qualified name of the current node. + + + + + Gets the namespace URI (as defined in the W3C Namespace Specification) of the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the associated with this implementation. + + + + + Gets the type of the current node. + + + + + Gets the prefix associated with the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the text value of the current node. + + + + + Gets the xml:lang scope for the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Creates a new HtmlNavigator positioned at the same node as this HtmlNavigator. + + A new HtmlNavigator object positioned at the same node as the original HtmlNavigator. + + + + Gets the value of the HTML attribute with the specified LocalName and NamespaceURI. + + The local name of the HTML attribute. + The namespace URI of the attribute. Unsupported with the HtmlNavigator implementation. + The value of the specified HTML attribute. String.Empty or null if a matching attribute is not found or if the navigator is not positioned on an element node. + + + + Returns the value of the namespace node corresponding to the specified local name. + Always returns string.Empty for the HtmlNavigator implementation. + + The local name of the namespace node. + Always returns string.Empty for the HtmlNavigator implementation. + + + + Determines whether the current HtmlNavigator is at the same position as the specified HtmlNavigator. + + The HtmlNavigator that you want to compare against. + true if the two navigators have the same position, otherwise, false. + + + + Moves to the same position as the specified HtmlNavigator. + + The HtmlNavigator positioned on the node that you want to move to. + true if successful, otherwise false. If false, the position of the navigator is unchanged. + + + + Moves to the HTML attribute with matching LocalName and NamespaceURI. + + The local name of the HTML attribute. + The namespace URI of the attribute. Unsupported with the HtmlNavigator implementation. + true if the HTML attribute is found, otherwise, false. If false, the position of the navigator does not change. + + + + Moves to the first sibling of the current node. + + true if the navigator is successful moving to the first sibling node, false if there is no first sibling or if the navigator is currently positioned on an attribute node. + + + + Moves to the first HTML attribute. + + true if the navigator is successful moving to the first HTML attribute, otherwise, false. + + + + Moves to the first child of the current node. + + true if there is a first child node, otherwise false. + + + + Moves the XPathNavigator to the first namespace node of the current element. + Always returns false for the HtmlNavigator implementation. + + An XPathNamespaceScope value describing the namespace scope. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the node that has an attribute of type ID whose value matches the specified string. + + A string representing the ID value of the node to which you want to move. This argument does not need to be atomized. + true if the move was successful, otherwise false. If false, the position of the navigator is unchanged. + + + + Moves the XPathNavigator to the namespace node with the specified local name. + Always returns false for the HtmlNavigator implementation. + + The local name of the namespace node. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the next sibling of the current node. + + true if the navigator is successful moving to the next sibling node, false if there are no more siblings or if the navigator is currently positioned on an attribute node. If false, the position of the navigator is unchanged. + + + + Moves to the next HTML attribute. + + + + + + Moves the XPathNavigator to the next namespace node. + Always returns falsefor the HtmlNavigator implementation. + + An XPathNamespaceScope value describing the namespace scope. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the parent of the current node. + + true if there is a parent node, otherwise false. + + + + Moves to the previous sibling of the current node. + + true if the navigator is successful moving to the previous sibling node, false if there is no previous sibling or if the navigator is currently positioned on an attribute node. + + + + Moves to the root node to which the current node belongs. + + + + + Represents the type of a node. + + + + + The root of a document. + + + + + An HTML element. + + + + + An HTML comment. + + + + + A text node is always the child of an element or a document node. + + + + + Represents a parsing error found during document parsing. + + + + + Gets the type of error. + + + + + Gets the line number of this error in the document. + + + + + Gets the column number of this error in the document. + + + + + Gets a description for the error. + + + + + Gets the the full text of the line containing the error. + + + + + Gets the absolute stream position of this error in the document, relative to the start of the document. + + + + + Represents the type of parsing error. + + + + + A tag was not closed. + + + + + A tag was not opened. + + + + + There is a charset mismatch between stream and declared (META) encoding. + + + + + An end tag was not required. + + + + + An end tag is invalid at this position. + + + + + Represents an HTML text node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets or Sets the text of the node. + + + + + A utility class to get HTML document from HTTP. + + + + + Represents the method that will handle the PostResponse event. + + + + + Represents the method that will handle the PreHandleDocument event. + + + + + Represents the method that will handle the PreRequest event. + + + + + Occurs after an HTTP request has been executed. + + + + + Occurs before an HTML document is handled. + + + + + Occurs before an HTTP request is executed. + + + + + Gets or Sets a value indicating if document encoding must be automatically detected. + + + + + Gets or sets the Encoding used to override the response stream from any web request + + + + + Gets or Sets a value indicating whether to get document only from the cache. + If this is set to true and document is not found in the cache, nothing will be loaded. + + + + + Gets or Sets a value indicating whether to get document from the cache if exists, otherwise from the web + A value indicating whether to get document from the cache if exists, otherwise from the web + + + + + Gets or Sets the cache path. If null, no caching mechanism will be used. + + + + + Gets a value indicating if the last document was retrieved from the cache. + + + + + Gets the last request duration in milliseconds. + + + + + Gets the URI of the Internet resource that actually responded to the request. + + + + + Gets the last request status. + + + + + Gets or Sets the size of the buffer used for memory operations. + + + + + Gets or Sets a value indicating if cookies will be stored. + + + + Gets or sets a value indicating whether redirect should be captured instead of the current location. + True if capture redirect, false if not. + + + + Gets or Sets the User Agent HTTP 1.1 header sent on any webrequest + + + + + Gets or Sets a value indicating whether the caching mechanisms should be used or not. + + + + + Gets the MIME content type for a given path extension. + + The input path extension. + The default content type to return if any error occurs. + The path extension's MIME content type. + + + + Gets the path extension for a given MIME content type. + + The input MIME content type. + The default path extension to return if any error occurs. + The MIME content type's path extension. + + + + Creates an instance of the given type from the specified Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The requested type. + An newly created instance. + + + + Gets an HTML document from an Internet resource and saves it to the specified file. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + + + Gets an HTML document from an Internet resource and saves it to the specified file. - Proxy aware + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + + + + + Gets an HTML document from an Internet resource and saves it to the specified file. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + + + + Gets an HTML document from an Internet resource and saves it to the specified file. Understands Proxies + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + + + + + Gets the cache file path for a specified url. + + The url fo which to retrieve the cache path. May not be null. + The cache file path. + + + + Gets an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + A new HTML document. + + + + Gets an HTML document from an Internet resource. + + The requested Uri, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + A new HTML document. + + + + Gets an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + Host to use for Proxy + Port the Proxy is on + User Id for Authentication + Password for Authentication + A new HTML document. + + + + Gets an HTML document from an Internet resource. + + The requested Uri, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + Host to use for Proxy + Port the Proxy is on + User Id for Authentication + Password for Authentication + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + Proxy to use with this request + Credentials to use when authenticating + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested Uri, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + Proxy to use with this request + Credentials to use when authenticating + A new HTML document. + + + + Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The XmlTextWriter to which you want to save to. + + + + Begins the process of downloading an internet resource + + Url to the html document + + + + Begins the process of downloading an internet resource + + Url to the html document + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The credentials to use for authenticating the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The credentials to use for authenticating the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + The credentials to use for authenticating the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + The credentials to use for authenticating the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Creates an instance of the given type from the specified Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The URL that specifies the XSLT stylesheet to load. + An containing the namespace-qualified arguments used as input to the transform. + The requested type. + An newly created instance. + + + + Creates an instance of the given type from the specified Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The URL that specifies the XSLT stylesheet to load. + An containing the namespace-qualified arguments used as input to the transform. + The requested type. + A file path where the temporary XML before transformation will be saved. Mostly used for debugging purposes. + An newly created instance. + + + + Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter, after an XSLT transformation. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The URL that specifies the XSLT stylesheet to load. + An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. + The XmlTextWriter to which you want to save. + + + + Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter, after an XSLT transformation. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". May not be null. + The URL that specifies the XSLT stylesheet to load. + An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. + The XmlTextWriter to which you want to save. + A file path where the temporary XML before transformation will be saved. Mostly used for debugging purposes. + + + + An interface for getting permissions of the running application + + + + + Checks to see if Registry access is available to the caller + + + + + + Checks to see if DNS information is available to the caller + + + + + + Represents an exception thrown by the HtmlWeb utility class. + + + + + Creates an instance of the HtmlWebException. + + The exception's message. + + + + Represents a document with mixed code and text. ASP, ASPX, JSP, are good example of such documents. + + + + + Gets or sets the token representing code end. + + + + + Gets or sets the token representing code start. + + + + + Gets or sets the token representing code directive. + + + + + Gets or sets the token representing response write directive. + + + + + Creates a mixed code document instance. + + + + + Gets the code represented by the mixed code document seen as a template. + + + + + Gets the list of code fragments in the document. + + + + + Gets the list of all fragments in the document. + + + + + Gets the encoding of the stream used to read the document. + + + + + Gets the list of text fragments in the document. + + + + + Create a code fragment instances. + + The newly created code fragment instance. + + + + Create a text fragment instances. + + The newly created text fragment instance. + + + + Loads a mixed code document from a stream. + + The input stream. + + + + Loads a mixed code document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Loads the mixed code document from the specified TextReader. + + The TextReader used to feed the HTML data into the document. + + + + Loads a mixed document from a text + + The text to load. + + + + Saves the mixed document to the specified stream. + + The stream to which you want to save. + + + + Saves the mixed document to the specified stream. + + The stream to which you want to save. + The character encoding to use. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + The character encoding to use. + + + + Saves the mixed document to the specified StreamWriter. + + The StreamWriter to which you want to save. + + + + Saves the mixed document to the specified TextWriter. + + The TextWriter to which you want to save. + + + + Represents a fragment of code in a mixed code document. + + + + + Gets the fragment code text. + + + + + Represents a base class for fragments in a mixed code document. + + + + + Gets the fragement text. + + + + + Gets the type of fragment. + + + + + Gets the line number of the fragment. + + + + + Gets the line position (column) of the fragment. + + + + + Gets the fragment position in the document's stream. + + + + + Represents a list of mixed code fragments. + + + + + Gets the Document + + + + + Gets the number of fragments contained in the list. + + + + + Gets a fragment from the list using its index. + + + + + Gets an enumerator that can iterate through the fragment list. + + + + + Appends a fragment to the list of fragments. + + The fragment to append. May not be null. + + + + Gets an enumerator that can iterate through the fragment list. + + + + + Prepends a fragment to the list of fragments. + + The fragment to append. May not be null. + + + + Remove a fragment from the list of fragments. If this fragment was not in the list, an exception will be raised. + + The fragment to remove. May not be null. + + + + Remove all fragments from the list. + + + + + Remove a fragment from the list of fragments, using its index in the list. + + The index of the fragment to remove. + + + + Represents a fragment enumerator. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + Advances the enumerator to the next element of the collection. + + true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. + + + + Sets the enumerator to its initial position, which is before the first element in the collection. + + + + + Represents the type of fragment in a mixed code document. + + + + + The fragment contains code. + + + + + The fragment contains text. + + + + + Represents a fragment of text in a mixed code document. + + + + + Gets the fragment text. + + + + diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.XML b/Packages/HtmlAgilityPack.1.9.2/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.XML new file mode 100644 index 0000000..19bcd09 --- /dev/null +++ b/Packages/HtmlAgilityPack.1.9.2/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.XML @@ -0,0 +1,1739 @@ + + + + HtmlAgilityPack + + + + + A utility class to compute CRC32. + + + + + Compute a checksum for a given array of bytes. + + The array of bytes to compute the checksum for. + The computed checksum. + + + + Compute a checksum for a given string. + + The string to compute the checksum for. + The computed checksum. + + + + Represents an HTML attribute. + + + + + Gets the line number of this attribute in the document. + + + + + Gets the column number of this attribute in the document. + + + + + Gets the stream position of the value of this attribute in the document, relative to the start of the document. + + + + + Gets the length of the value. + + + + + Gets the qualified name of the attribute. + + + + + Name of attribute with original case + + + + + Gets the HTML document to which this attribute belongs. + + + + + Gets the HTML node to which this attribute belongs. + + + + + Specifies what type of quote the data should be wrapped in + + + + + Gets the stream position of this attribute in the document, relative to the start of the document. + + + + + Gets or sets the value of the attribute. + + + + + Gets the DeEntitized value of the attribute. + + + + + Gets a valid XPath string that points to this Attribute + + + + + Compares the current instance with another attribute. Comparison is based on attributes' name. + + An attribute to compare with this instance. + A 32-bit signed integer that indicates the relative order of the names comparison. + + + + Creates a duplicate of this attribute. + + The cloned attribute. + + + + Removes this attribute from it's parents collection + + + + + An Enum representing different types of Quotes used for surrounding attribute values + + + + + A single quote mark ' + + + + + A double quote mark " + + + + + Represents a combined list and collection of HTML nodes. + + + + + Gets the number of elements actually contained in the list. + + + + + Gets readonly status of colelction + + + + + Gets the attribute at the specified index. + + + + + Gets a given attribute from the list using its name. + + + + + Adds supplied item to collection + + + + + + Explicit clear + + + + + Retreives existence of supplied item + + + + + + + Copies collection to array + + + + + + + Get Explicit enumerator + + + + + + Explicit non-generic enumerator + + + + + + Retrieves the index for the supplied item, -1 if not found + + + + + + + Inserts given item into collection at supplied index + + + + + + + Explicit collection remove + + + + + + + Removes the attribute at the specified index. + + The index of the attribute to remove. + + + + Adds a new attribute to the collection with the given values + + + + + + + Inserts the specified attribute as the last attribute in the collection. + + The attribute to insert. May not be null. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The value of the attribute to insert. + The appended attribute. + + + + Checks for existance of attribute with given name + + + + + + + Inserts the specified attribute as the first node in the collection. + + The attribute to insert. May not be null. + The prepended attribute. + + + + Removes a given attribute from the list. + + The attribute to remove. May not be null. + + + + Removes an attribute from the list, using its name. If there are more than one attributes with this name, they will all be removed. + + The attribute's name. May not be null. + + + + Remove all attributes in the list. + + + + + Returns all attributes with specified name. Handles case insentivity + + Name of the attribute + + + + + Removes all attributes from the collection + + + + + Clears the attribute collection + + + + + Represents an HTML comment. + + + + + Gets or Sets the comment text of the node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Represents a complete HTML document. + + + + True to disable, false to enable the behavaior tag p. + + + Default builder to use in the HtmlDocument constructor + + + Action to execute before the Parse is executed + + + + Defines the max level we would go deep into the html document + + + + The HtmlDocument Text. Careful if you modify it. + + + True to stay backward compatible with previous version of HAP. This option does not guarantee 100% compatibility. + + + + Adds Debugging attributes to node. Default is false. + + + + + Defines if closing for non closed nodes must be done at the end or directly in the document. + Setting this to true can actually change how browsers render the page. Default is false. + + + + + Defines if non closed nodes will be checked at the end of parsing. Default is true. + + + + + Defines if a checksum must be computed for the document while parsing. Default is false. + + + + + Defines if SelectNodes method will return null or empty collection when no node matched the XPath expression. + Setting this to true will return empty collection and false will return null. Default is false. + + + + True to disable, false to enable the server side code. + + + + Defines the default stream encoding to use. Default is System.Text.Encoding.Default. + + + + + Defines if source text must be extracted while parsing errors. + If the document has a lot of errors, or cascading errors, parsing performance can be dramatically affected if set to true. + Default is false. + + + + + Defines the maximum length of source text or parse errors. Default is 100. + + + + + Defines if LI, TR, TH, TD tags must be partially fixed when nesting errors are detected. Default is false. + + + + + Defines if output must conform to XML, instead of HTML. Default is false. + + + + + If used together with and enabled, Xml namespaces in element names are preserved. Default is false. + + + + + Defines if attribute value output must be optimized (not bound with double quotes if it is possible). Default is false. + + + + + Defines if name must be output with it's original case. Useful for asp.net tags and attributes. Default is false. + + + + + Defines if name must be output in uppercase. Default is false. + + + + + Defines if declared encoding must be read from the document. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node. + Default is true. + + + + + Defines the name of a node that will throw the StopperNodeException when found as an end node. Default is null. + + + + + Defines if the 'id' attribute must be specifically used. Default is true. + + + + + Defines if empty nodes must be written as closed during output. Default is false. + + + + + Creates an instance of an HTML document. + + + + Gets the parsed text. + The parsed text. + + + + Defines the max level we would go deep into the html document. If this depth level is exceeded, and exception is + thrown. + + + + + Gets the document CRC32 checksum if OptionComputeChecksum was set to true before parsing, 0 otherwise. + + + + + Gets the document's declared encoding. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node (pre-HTML5) or the meta charset="XXXXX" html node (HTML5). + + + + + Gets the root node of the document. + + + + + Gets the document's output encoding. + + + + + Gets a list of parse errors found in the document. + + + + + Gets the remaining text. + Will always be null if OptionStopperNodeName is null. + + + + + Gets the offset of Remainder in the original Html text. + If OptionStopperNodeName is null, this will return the length of the original Html text. + + + + + Gets the document's stream encoding. + + + + + Gets a valid XML name. + + Any text. + A string that is a valid XML name. + + + + Applies HTML encoding to a specified string. + + The input string to encode. May not be null. + The encoded string. + + + + Determines if the specified character is considered as a whitespace character. + + The character to check. + true if if the specified character is considered as a whitespace character. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The new HTML attribute. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The value of the attribute. + The new HTML attribute. + + + + Creates an HTML comment node. + + The new HTML comment node. + + + + Creates an HTML comment node with the specified comment text. + + The comment text. May not be null. + The new HTML comment node. + + + + Creates an HTML element node with the specified name. + + The qualified name of the element. May not be null. + The new HTML node. + + + + Creates an HTML text node. + + The new HTML text node. + + + + Creates an HTML text node with the specified text. + + The text of the node. May not be null. + The new HTML text node. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The html is checked. + The detected encoding. + + + + Detects the encoding of an HTML text provided on a TextReader. + + The TextReader used to feed the HTML. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML text. + + The input html text. May not be null. + The detected encoding. + + + + Gets the HTML node with the specified 'id' attribute value. + + The attribute id to match. May not be null. + The HTML node with the matching id or null if not found. + + + + Loads an HTML document from a stream. + + The input stream. + + + + Loads an HTML document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + The minimum buffer size. + + + + Loads the HTML document from the specified TextReader. + + The TextReader used to feed the HTML data into the document. May not be null. + + + + Loads the HTML document from the specified string. + + String containing the HTML document to load. May not be null. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. May not be null. + The character encoding to use. May not be null. + + + + Saves the HTML document to the specified StreamWriter. + + The StreamWriter to which you want to save. + + + + Saves the HTML document to the specified TextWriter. + + The TextWriter to which you want to save. May not be null. + + + + Saves the HTML document to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Flags that describe the behavior of an Element node. + + + + + The node is a CDATA node. + + + + + The node is empty. META or IMG are example of such nodes. + + + + + The node will automatically be closed during parsing. + + + + + The node can overlap. + + + + + A utility class to replace special characters by entities and vice-versa. + Follows HTML 4.0 specification found at http://www.w3.org/TR/html4/sgml/entities.html + Follows Additional specification found at https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references + See also: https://html.spec.whatwg.org/multipage/named-characters.html#named-character-references + + + + + A collection of entities indexed by name. + + + + + A collection of entities indexed by value. + + + + + Replace known entities by characters. + + The source text. + The result text. + + + + Clone and entitize an HtmlNode. This will affect attribute values and nodes' text. It will also entitize all child nodes. + + The node to entitize. + An entitized cloned node. + + + + Replace characters above 127 by entities. + + The source text. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + If set to true, the [quote], [ampersand], [lower than] and [greather than] characters will be entitized. + The result text + + + + Represents an HTML node. + + + + + Gets the name of a comment node. It is actually defined as '#comment'. + + + + + Gets the name of the document node. It is actually defined as '#document'. + + + + + Gets the name of a text node. It is actually defined as '#text'. + + + + + Gets a collection of flags that define specific behaviors for specific element nodes. + The table contains a DictionaryEntry list with the lowercase tag name as the Key, and a combination of HtmlElementFlags as the Value. + + + + + Initialize HtmlNode. Builds a list of all tags that have special allowances + + + + + Initializes HtmlNode, providing type, owner and where it exists in a collection + + + + + + + + Gets the collection of HTML attributes for this node. May not be null. + + + + + Gets all the children of the node. + + + + + Gets a value indicating if this node has been closed or not. + + + + + Gets the collection of HTML attributes for the closing tag. May not be null. + + + + + Gets the closing tag of the node, null if the node is self-closing. + + + + + Gets the first child of the node. + + + + + Gets a value indicating whether the current node has any attributes. + + + + + Gets a value indicating whether this node has any child nodes. + + + + + Gets a value indicating whether the current node has any attributes on the closing tag. + + + + + Gets or sets the value of the 'id' HTML attribute. The document must have been parsed using the OptionUseIdAttribute set to true. + + + + + Gets or Sets the HTML between the start and end tags of the object. + + + + + Gets or Sets the text between the start and end tags of the object. + + + + + Gets the last child of the node. + + + + + Gets the line number of this node in the document. + + + + + Gets the column number of this node in the document. + + + + + Gets the stream position of the area between the opening and closing tag of the node, relative to the start of the document. + + + + + Gets the length of the area between the opening and closing tag of the node. + + + + + Gets the length of the entire node, opening and closing tag included. + + + + + Gets or sets this node's name. + + + + + Gets the HTML node immediately following this element. + + + + + Gets the type of this node. + + + + + The original unaltered name of the tag + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets the to which this node belongs. + + + + + Gets the parent of this node (for nodes that can have parents). + + + + + Gets the node immediately preceding this node. + + + + + Gets the stream position of this node in the document, relative to the start of the document. + + + + + Gets a valid XPath string that points to this node + + + + + Determines if an element node can be kept overlapped. + + The name of the element node to check. May not be null. + true if the name is the name of an element node that can be kept overlapped, false otherwise. + + + + Creates an HTML node from a string representing literal HTML. + + The HTML text. + The newly created node instance. + + + + Determines if an element node is a CDATA element node. + + The name of the element node to check. May not be null. + true if the name is the name of a CDATA element node, false otherwise. + + + + Determines if an element node is closed. + + The name of the element node to check. May not be null. + true if the name is the name of a closed element node, false otherwise. + + + + Determines if an element node is defined as empty. + + The name of the element node to check. May not be null. + true if the name is the name of an empty element node, false otherwise. + + + + Determines if a text corresponds to the closing tag of an node that can be kept overlapped. + + The text to check. May not be null. + true or false. + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Get Ancestors with matching name + + + + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Gets all anscestor nodes and the current node + + + + + + + Adds the specified node to the end of the list of children of this node. + + The node to add. May not be null. + The node added. + + + Sets child nodes identifier. + The chil node. + + + + Adds the specified node to the end of the list of children of this node. + + The node list to add. May not be null. + + + + Gets all Attributes with name + + + + + + + Creates a duplicate of the node + + + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + The cloned node. + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node. + + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node and the subtree under it. + + The node to duplicate. May not be null. + + + + Creates a duplicate of the node. + + The node to duplicate. May not be null. + true to recursively clone the subtree under the specified node, false to clone only the node itself. + + + + Gets all Descendant nodes for this node and each of child nodes + + The depth level of the node to parse in the html tree + the current element as an HtmlNode + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Get all descendant nodes with matching name + + + + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all descendant nodes including this node + + + + + + + Gets first generation child node matching name + + + + + + + Gets matching first generation child nodes matching name + + + + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Inserts the specified node immediately after the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newNode is placed after the refNode. + The node being inserted. + + + + Inserts the specified node immediately before the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newChild is placed before this node. + The node being inserted. + + + + Adds the specified node to the beginning of the list of children of this node. + + The node to add. May not be null. + The node added. + + + + Adds the specified node list to the beginning of the list of children of this node. + + The node list to add. May not be null. + + + + Removes node from parent collection + + + + + Removes all the children and/or attributes of the current node. + + + + + Removes all the children of the current node. + + + + Removes all id for node described by node. + The node. + + + + Removes the specified child node. + + The node being removed. May not be null. + The node removed. + + + + Removes the specified child node. + + The node being removed. May not be null. + true to keep grand children of the node, false otherwise. + The node removed. + + + + Replaces the child node oldChild with newChild node. + + The new node to put in the child list. + The node being replaced in the list. + The node replaced. + + + + Helper method to set the value of an attribute of this node. If the attribute is not found, it will be created automatically. + + The name of the attribute to set. May not be null. + The value for the attribute. + The corresponding attribute instance. + + + + Saves all the children of the node to the specified TextWriter. + + The TextWriter to which you want to save. + Identifies the level we are in starting at root with 0 + + + + Saves all the children of the node to a string. + + The saved string. + + + + Saves the current node to the specified TextWriter. + + The TextWriter to which you want to save. + identifies the level we are in starting at root with 0 + + + + Saves the current node to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Saves the current node to a string. + + The saved string. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + true to throw Error if class name exists, false otherwise. + + + + Removes the class attribute from the node. + + + + + Removes the class attribute from the node. + + true to throw Error if class name doesn't exist, false otherwise. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + true to throw Error if class name doesn't exist, false otherwise. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + true to throw Error if class name doesn't exist, false otherwise. + + + Gets the CSS Class from the node. + + The CSS Class from the node + + + + Check if the node class has the parameter class. + The class. + True if node class has the parameter class, false if not. + + + + Represents a combined list and collection of HTML nodes. + + + + + Initialize the HtmlNodeCollection with the base parent node + + The base node of the collection + + + + Gets a given node from the list. + + + + + Get node with tag name + + + + + + + Gets the number of elements actually contained in the list. + + + + + Is collection read only + + + + + Gets the node at the specified index. + + + + + Add node to the collection + + + + + + Add node to the collection + + + + + + + Clears out the collection of HtmlNodes. Removes each nodes reference to parentnode, nextnode and prevnode + + + + + Gets existence of node in collection + + + + + + + Copy collection to array + + + + + + + Get Enumerator + + + + + + Get Explicit Enumerator + + + + + + Get index of node + + + + + + + Insert node at index + + + + + + + Remove node + + + + + + + Remove at index + + + + + + Get first instance of node in supplied collection + + + + + + + + Add node to the end of the collection + + + + + + Get first instance of node with name + + + + + + + Get index of node + + + + + + + Add node to the beginning of the collection + + + + + + Remove node at index + + + + + + + Replace node at index + + + + + + + Get all node descended from this collection + + + + + + Get all node descended from this collection with matching name + + + + + + Gets all first generation elements in collection + + + + + + Gets all first generation elements matching name + + + + + + + All first generation nodes in collection + + + + + + Represents the type of a node. + + + + + The root of a document. + + + + + An HTML element. + + + + + An HTML comment. + + + + + A text node is always the child of an element or a document node. + + + + + Represents a parsing error found during document parsing. + + + + + Gets the type of error. + + + + + Gets the line number of this error in the document. + + + + + Gets the column number of this error in the document. + + + + + Gets a description for the error. + + + + + Gets the the full text of the line containing the error. + + + + + Gets the absolute stream position of this error in the document, relative to the start of the document. + + + + + Represents the type of parsing error. + + + + + A tag was not closed. + + + + + A tag was not opened. + + + + + There is a charset mismatch between stream and declared (META) encoding. + + + + + An end tag was not required. + + + + + An end tag is invalid at this position. + + + + + Represents an HTML text node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets or Sets the text of the node. + + + + + Represents an exception thrown by the HtmlWeb utility class. + + + + + Creates an instance of the HtmlWebException. + + The exception's message. + + + + Used for downloading and parsing html from the internet + + + + + Allows for setting document defaults before loading + + + + + Begins the process of downloading an internet resource + + Url to the html document + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The credentials to use for authenticating the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + The credentials to use for authenticating the web request + + + + The exception that is thrown when a program contains invalid Microsoft intermediate language (MSIL) or metadata. Generally this indicates a bug in the compiler that generated the program. + + 2 + + + + Initializes a new instance of the class with default properties. + + + + + Initializes a new instance of the class with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. The exception that is the cause of the current exception. If the parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. + + + diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll b/Packages/HtmlAgilityPack.1.9.2/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll new file mode 100644 index 0000000..47a21ea Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.pdb b/Packages/HtmlAgilityPack.1.9.2/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.pdb new file mode 100644 index 0000000..b1d3ee3 Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.pdb differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.XML b/Packages/HtmlAgilityPack.1.9.2/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.XML new file mode 100644 index 0000000..19bcd09 --- /dev/null +++ b/Packages/HtmlAgilityPack.1.9.2/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.XML @@ -0,0 +1,1739 @@ + + + + HtmlAgilityPack + + + + + A utility class to compute CRC32. + + + + + Compute a checksum for a given array of bytes. + + The array of bytes to compute the checksum for. + The computed checksum. + + + + Compute a checksum for a given string. + + The string to compute the checksum for. + The computed checksum. + + + + Represents an HTML attribute. + + + + + Gets the line number of this attribute in the document. + + + + + Gets the column number of this attribute in the document. + + + + + Gets the stream position of the value of this attribute in the document, relative to the start of the document. + + + + + Gets the length of the value. + + + + + Gets the qualified name of the attribute. + + + + + Name of attribute with original case + + + + + Gets the HTML document to which this attribute belongs. + + + + + Gets the HTML node to which this attribute belongs. + + + + + Specifies what type of quote the data should be wrapped in + + + + + Gets the stream position of this attribute in the document, relative to the start of the document. + + + + + Gets or sets the value of the attribute. + + + + + Gets the DeEntitized value of the attribute. + + + + + Gets a valid XPath string that points to this Attribute + + + + + Compares the current instance with another attribute. Comparison is based on attributes' name. + + An attribute to compare with this instance. + A 32-bit signed integer that indicates the relative order of the names comparison. + + + + Creates a duplicate of this attribute. + + The cloned attribute. + + + + Removes this attribute from it's parents collection + + + + + An Enum representing different types of Quotes used for surrounding attribute values + + + + + A single quote mark ' + + + + + A double quote mark " + + + + + Represents a combined list and collection of HTML nodes. + + + + + Gets the number of elements actually contained in the list. + + + + + Gets readonly status of colelction + + + + + Gets the attribute at the specified index. + + + + + Gets a given attribute from the list using its name. + + + + + Adds supplied item to collection + + + + + + Explicit clear + + + + + Retreives existence of supplied item + + + + + + + Copies collection to array + + + + + + + Get Explicit enumerator + + + + + + Explicit non-generic enumerator + + + + + + Retrieves the index for the supplied item, -1 if not found + + + + + + + Inserts given item into collection at supplied index + + + + + + + Explicit collection remove + + + + + + + Removes the attribute at the specified index. + + The index of the attribute to remove. + + + + Adds a new attribute to the collection with the given values + + + + + + + Inserts the specified attribute as the last attribute in the collection. + + The attribute to insert. May not be null. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The value of the attribute to insert. + The appended attribute. + + + + Checks for existance of attribute with given name + + + + + + + Inserts the specified attribute as the first node in the collection. + + The attribute to insert. May not be null. + The prepended attribute. + + + + Removes a given attribute from the list. + + The attribute to remove. May not be null. + + + + Removes an attribute from the list, using its name. If there are more than one attributes with this name, they will all be removed. + + The attribute's name. May not be null. + + + + Remove all attributes in the list. + + + + + Returns all attributes with specified name. Handles case insentivity + + Name of the attribute + + + + + Removes all attributes from the collection + + + + + Clears the attribute collection + + + + + Represents an HTML comment. + + + + + Gets or Sets the comment text of the node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Represents a complete HTML document. + + + + True to disable, false to enable the behavaior tag p. + + + Default builder to use in the HtmlDocument constructor + + + Action to execute before the Parse is executed + + + + Defines the max level we would go deep into the html document + + + + The HtmlDocument Text. Careful if you modify it. + + + True to stay backward compatible with previous version of HAP. This option does not guarantee 100% compatibility. + + + + Adds Debugging attributes to node. Default is false. + + + + + Defines if closing for non closed nodes must be done at the end or directly in the document. + Setting this to true can actually change how browsers render the page. Default is false. + + + + + Defines if non closed nodes will be checked at the end of parsing. Default is true. + + + + + Defines if a checksum must be computed for the document while parsing. Default is false. + + + + + Defines if SelectNodes method will return null or empty collection when no node matched the XPath expression. + Setting this to true will return empty collection and false will return null. Default is false. + + + + True to disable, false to enable the server side code. + + + + Defines the default stream encoding to use. Default is System.Text.Encoding.Default. + + + + + Defines if source text must be extracted while parsing errors. + If the document has a lot of errors, or cascading errors, parsing performance can be dramatically affected if set to true. + Default is false. + + + + + Defines the maximum length of source text or parse errors. Default is 100. + + + + + Defines if LI, TR, TH, TD tags must be partially fixed when nesting errors are detected. Default is false. + + + + + Defines if output must conform to XML, instead of HTML. Default is false. + + + + + If used together with and enabled, Xml namespaces in element names are preserved. Default is false. + + + + + Defines if attribute value output must be optimized (not bound with double quotes if it is possible). Default is false. + + + + + Defines if name must be output with it's original case. Useful for asp.net tags and attributes. Default is false. + + + + + Defines if name must be output in uppercase. Default is false. + + + + + Defines if declared encoding must be read from the document. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node. + Default is true. + + + + + Defines the name of a node that will throw the StopperNodeException when found as an end node. Default is null. + + + + + Defines if the 'id' attribute must be specifically used. Default is true. + + + + + Defines if empty nodes must be written as closed during output. Default is false. + + + + + Creates an instance of an HTML document. + + + + Gets the parsed text. + The parsed text. + + + + Defines the max level we would go deep into the html document. If this depth level is exceeded, and exception is + thrown. + + + + + Gets the document CRC32 checksum if OptionComputeChecksum was set to true before parsing, 0 otherwise. + + + + + Gets the document's declared encoding. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node (pre-HTML5) or the meta charset="XXXXX" html node (HTML5). + + + + + Gets the root node of the document. + + + + + Gets the document's output encoding. + + + + + Gets a list of parse errors found in the document. + + + + + Gets the remaining text. + Will always be null if OptionStopperNodeName is null. + + + + + Gets the offset of Remainder in the original Html text. + If OptionStopperNodeName is null, this will return the length of the original Html text. + + + + + Gets the document's stream encoding. + + + + + Gets a valid XML name. + + Any text. + A string that is a valid XML name. + + + + Applies HTML encoding to a specified string. + + The input string to encode. May not be null. + The encoded string. + + + + Determines if the specified character is considered as a whitespace character. + + The character to check. + true if if the specified character is considered as a whitespace character. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The new HTML attribute. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The value of the attribute. + The new HTML attribute. + + + + Creates an HTML comment node. + + The new HTML comment node. + + + + Creates an HTML comment node with the specified comment text. + + The comment text. May not be null. + The new HTML comment node. + + + + Creates an HTML element node with the specified name. + + The qualified name of the element. May not be null. + The new HTML node. + + + + Creates an HTML text node. + + The new HTML text node. + + + + Creates an HTML text node with the specified text. + + The text of the node. May not be null. + The new HTML text node. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The html is checked. + The detected encoding. + + + + Detects the encoding of an HTML text provided on a TextReader. + + The TextReader used to feed the HTML. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML text. + + The input html text. May not be null. + The detected encoding. + + + + Gets the HTML node with the specified 'id' attribute value. + + The attribute id to match. May not be null. + The HTML node with the matching id or null if not found. + + + + Loads an HTML document from a stream. + + The input stream. + + + + Loads an HTML document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + The minimum buffer size. + + + + Loads the HTML document from the specified TextReader. + + The TextReader used to feed the HTML data into the document. May not be null. + + + + Loads the HTML document from the specified string. + + String containing the HTML document to load. May not be null. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. May not be null. + The character encoding to use. May not be null. + + + + Saves the HTML document to the specified StreamWriter. + + The StreamWriter to which you want to save. + + + + Saves the HTML document to the specified TextWriter. + + The TextWriter to which you want to save. May not be null. + + + + Saves the HTML document to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Flags that describe the behavior of an Element node. + + + + + The node is a CDATA node. + + + + + The node is empty. META or IMG are example of such nodes. + + + + + The node will automatically be closed during parsing. + + + + + The node can overlap. + + + + + A utility class to replace special characters by entities and vice-versa. + Follows HTML 4.0 specification found at http://www.w3.org/TR/html4/sgml/entities.html + Follows Additional specification found at https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references + See also: https://html.spec.whatwg.org/multipage/named-characters.html#named-character-references + + + + + A collection of entities indexed by name. + + + + + A collection of entities indexed by value. + + + + + Replace known entities by characters. + + The source text. + The result text. + + + + Clone and entitize an HtmlNode. This will affect attribute values and nodes' text. It will also entitize all child nodes. + + The node to entitize. + An entitized cloned node. + + + + Replace characters above 127 by entities. + + The source text. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + If set to true, the [quote], [ampersand], [lower than] and [greather than] characters will be entitized. + The result text + + + + Represents an HTML node. + + + + + Gets the name of a comment node. It is actually defined as '#comment'. + + + + + Gets the name of the document node. It is actually defined as '#document'. + + + + + Gets the name of a text node. It is actually defined as '#text'. + + + + + Gets a collection of flags that define specific behaviors for specific element nodes. + The table contains a DictionaryEntry list with the lowercase tag name as the Key, and a combination of HtmlElementFlags as the Value. + + + + + Initialize HtmlNode. Builds a list of all tags that have special allowances + + + + + Initializes HtmlNode, providing type, owner and where it exists in a collection + + + + + + + + Gets the collection of HTML attributes for this node. May not be null. + + + + + Gets all the children of the node. + + + + + Gets a value indicating if this node has been closed or not. + + + + + Gets the collection of HTML attributes for the closing tag. May not be null. + + + + + Gets the closing tag of the node, null if the node is self-closing. + + + + + Gets the first child of the node. + + + + + Gets a value indicating whether the current node has any attributes. + + + + + Gets a value indicating whether this node has any child nodes. + + + + + Gets a value indicating whether the current node has any attributes on the closing tag. + + + + + Gets or sets the value of the 'id' HTML attribute. The document must have been parsed using the OptionUseIdAttribute set to true. + + + + + Gets or Sets the HTML between the start and end tags of the object. + + + + + Gets or Sets the text between the start and end tags of the object. + + + + + Gets the last child of the node. + + + + + Gets the line number of this node in the document. + + + + + Gets the column number of this node in the document. + + + + + Gets the stream position of the area between the opening and closing tag of the node, relative to the start of the document. + + + + + Gets the length of the area between the opening and closing tag of the node. + + + + + Gets the length of the entire node, opening and closing tag included. + + + + + Gets or sets this node's name. + + + + + Gets the HTML node immediately following this element. + + + + + Gets the type of this node. + + + + + The original unaltered name of the tag + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets the to which this node belongs. + + + + + Gets the parent of this node (for nodes that can have parents). + + + + + Gets the node immediately preceding this node. + + + + + Gets the stream position of this node in the document, relative to the start of the document. + + + + + Gets a valid XPath string that points to this node + + + + + Determines if an element node can be kept overlapped. + + The name of the element node to check. May not be null. + true if the name is the name of an element node that can be kept overlapped, false otherwise. + + + + Creates an HTML node from a string representing literal HTML. + + The HTML text. + The newly created node instance. + + + + Determines if an element node is a CDATA element node. + + The name of the element node to check. May not be null. + true if the name is the name of a CDATA element node, false otherwise. + + + + Determines if an element node is closed. + + The name of the element node to check. May not be null. + true if the name is the name of a closed element node, false otherwise. + + + + Determines if an element node is defined as empty. + + The name of the element node to check. May not be null. + true if the name is the name of an empty element node, false otherwise. + + + + Determines if a text corresponds to the closing tag of an node that can be kept overlapped. + + The text to check. May not be null. + true or false. + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Get Ancestors with matching name + + + + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Gets all anscestor nodes and the current node + + + + + + + Adds the specified node to the end of the list of children of this node. + + The node to add. May not be null. + The node added. + + + Sets child nodes identifier. + The chil node. + + + + Adds the specified node to the end of the list of children of this node. + + The node list to add. May not be null. + + + + Gets all Attributes with name + + + + + + + Creates a duplicate of the node + + + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + The cloned node. + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node. + + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node and the subtree under it. + + The node to duplicate. May not be null. + + + + Creates a duplicate of the node. + + The node to duplicate. May not be null. + true to recursively clone the subtree under the specified node, false to clone only the node itself. + + + + Gets all Descendant nodes for this node and each of child nodes + + The depth level of the node to parse in the html tree + the current element as an HtmlNode + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Get all descendant nodes with matching name + + + + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all descendant nodes including this node + + + + + + + Gets first generation child node matching name + + + + + + + Gets matching first generation child nodes matching name + + + + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Inserts the specified node immediately after the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newNode is placed after the refNode. + The node being inserted. + + + + Inserts the specified node immediately before the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newChild is placed before this node. + The node being inserted. + + + + Adds the specified node to the beginning of the list of children of this node. + + The node to add. May not be null. + The node added. + + + + Adds the specified node list to the beginning of the list of children of this node. + + The node list to add. May not be null. + + + + Removes node from parent collection + + + + + Removes all the children and/or attributes of the current node. + + + + + Removes all the children of the current node. + + + + Removes all id for node described by node. + The node. + + + + Removes the specified child node. + + The node being removed. May not be null. + The node removed. + + + + Removes the specified child node. + + The node being removed. May not be null. + true to keep grand children of the node, false otherwise. + The node removed. + + + + Replaces the child node oldChild with newChild node. + + The new node to put in the child list. + The node being replaced in the list. + The node replaced. + + + + Helper method to set the value of an attribute of this node. If the attribute is not found, it will be created automatically. + + The name of the attribute to set. May not be null. + The value for the attribute. + The corresponding attribute instance. + + + + Saves all the children of the node to the specified TextWriter. + + The TextWriter to which you want to save. + Identifies the level we are in starting at root with 0 + + + + Saves all the children of the node to a string. + + The saved string. + + + + Saves the current node to the specified TextWriter. + + The TextWriter to which you want to save. + identifies the level we are in starting at root with 0 + + + + Saves the current node to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Saves the current node to a string. + + The saved string. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + true to throw Error if class name exists, false otherwise. + + + + Removes the class attribute from the node. + + + + + Removes the class attribute from the node. + + true to throw Error if class name doesn't exist, false otherwise. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + true to throw Error if class name doesn't exist, false otherwise. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + true to throw Error if class name doesn't exist, false otherwise. + + + Gets the CSS Class from the node. + + The CSS Class from the node + + + + Check if the node class has the parameter class. + The class. + True if node class has the parameter class, false if not. + + + + Represents a combined list and collection of HTML nodes. + + + + + Initialize the HtmlNodeCollection with the base parent node + + The base node of the collection + + + + Gets a given node from the list. + + + + + Get node with tag name + + + + + + + Gets the number of elements actually contained in the list. + + + + + Is collection read only + + + + + Gets the node at the specified index. + + + + + Add node to the collection + + + + + + Add node to the collection + + + + + + + Clears out the collection of HtmlNodes. Removes each nodes reference to parentnode, nextnode and prevnode + + + + + Gets existence of node in collection + + + + + + + Copy collection to array + + + + + + + Get Enumerator + + + + + + Get Explicit Enumerator + + + + + + Get index of node + + + + + + + Insert node at index + + + + + + + Remove node + + + + + + + Remove at index + + + + + + Get first instance of node in supplied collection + + + + + + + + Add node to the end of the collection + + + + + + Get first instance of node with name + + + + + + + Get index of node + + + + + + + Add node to the beginning of the collection + + + + + + Remove node at index + + + + + + + Replace node at index + + + + + + + Get all node descended from this collection + + + + + + Get all node descended from this collection with matching name + + + + + + Gets all first generation elements in collection + + + + + + Gets all first generation elements matching name + + + + + + + All first generation nodes in collection + + + + + + Represents the type of a node. + + + + + The root of a document. + + + + + An HTML element. + + + + + An HTML comment. + + + + + A text node is always the child of an element or a document node. + + + + + Represents a parsing error found during document parsing. + + + + + Gets the type of error. + + + + + Gets the line number of this error in the document. + + + + + Gets the column number of this error in the document. + + + + + Gets a description for the error. + + + + + Gets the the full text of the line containing the error. + + + + + Gets the absolute stream position of this error in the document, relative to the start of the document. + + + + + Represents the type of parsing error. + + + + + A tag was not closed. + + + + + A tag was not opened. + + + + + There is a charset mismatch between stream and declared (META) encoding. + + + + + An end tag was not required. + + + + + An end tag is invalid at this position. + + + + + Represents an HTML text node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets or Sets the text of the node. + + + + + Represents an exception thrown by the HtmlWeb utility class. + + + + + Creates an instance of the HtmlWebException. + + The exception's message. + + + + Used for downloading and parsing html from the internet + + + + + Allows for setting document defaults before loading + + + + + Begins the process of downloading an internet resource + + Url to the html document + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The credentials to use for authenticating the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + The credentials to use for authenticating the web request + + + + The exception that is thrown when a program contains invalid Microsoft intermediate language (MSIL) or metadata. Generally this indicates a bug in the compiler that generated the program. + + 2 + + + + Initializes a new instance of the class with default properties. + + + + + Initializes a new instance of the class with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. The exception that is the cause of the current exception. If the parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. + + + diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll b/Packages/HtmlAgilityPack.1.9.2/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll new file mode 100644 index 0000000..121fb3a Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.pdb b/Packages/HtmlAgilityPack.1.9.2/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.pdb new file mode 100644 index 0000000..e417099 Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.pdb differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/uap10.0/HtmlAgilityPack.XML b/Packages/HtmlAgilityPack.1.9.2/lib/uap10.0/HtmlAgilityPack.XML new file mode 100644 index 0000000..659f839 --- /dev/null +++ b/Packages/HtmlAgilityPack.1.9.2/lib/uap10.0/HtmlAgilityPack.XML @@ -0,0 +1,2700 @@ + + + + HtmlAgilityPack + + + + + A utility class to compute CRC32. + + + + + Compute a checksum for a given array of bytes. + + The array of bytes to compute the checksum for. + The computed checksum. + + + + Compute a checksum for a given string. + + The string to compute the checksum for. + The computed checksum. + + + + Represents an HTML attribute. + + + + + Gets the line number of this attribute in the document. + + + + + Gets the column number of this attribute in the document. + + + + + Gets the stream position of the value of this attribute in the document, relative to the start of the document. + + + + + Gets the length of the value. + + + + + Gets the qualified name of the attribute. + + + + + Name of attribute with original case + + + + + Gets the HTML document to which this attribute belongs. + + + + + Gets the HTML node to which this attribute belongs. + + + + + Specifies what type of quote the data should be wrapped in + + + + + Gets the stream position of this attribute in the document, relative to the start of the document. + + + + + Gets or sets the value of the attribute. + + + + + Gets the DeEntitized value of the attribute. + + + + + Gets a valid XPath string that points to this Attribute + + + + + Compares the current instance with another attribute. Comparison is based on attributes' name. + + An attribute to compare with this instance. + A 32-bit signed integer that indicates the relative order of the names comparison. + + + + Creates a duplicate of this attribute. + + The cloned attribute. + + + + Removes this attribute from it's parents collection + + + + + An Enum representing different types of Quotes used for surrounding attribute values + + + + + A single quote mark ' + + + + + A double quote mark " + + + + + Represents a combined list and collection of HTML nodes. + + + + + Gets the number of elements actually contained in the list. + + + + + Gets readonly status of colelction + + + + + Gets the attribute at the specified index. + + + + + Gets a given attribute from the list using its name. + + + + + Adds supplied item to collection + + + + + + Explicit clear + + + + + Retreives existence of supplied item + + + + + + + Copies collection to array + + + + + + + Get Explicit enumerator + + + + + + Explicit non-generic enumerator + + + + + + Retrieves the index for the supplied item, -1 if not found + + + + + + + Inserts given item into collection at supplied index + + + + + + + Explicit collection remove + + + + + + + Removes the attribute at the specified index. + + The index of the attribute to remove. + + + + Adds a new attribute to the collection with the given values + + + + + + + Inserts the specified attribute as the last attribute in the collection. + + The attribute to insert. May not be null. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The appended attribute. + + + + Creates and inserts a new attribute as the last attribute in the collection. + + The name of the attribute to insert. + The value of the attribute to insert. + The appended attribute. + + + + Checks for existance of attribute with given name + + + + + + + Inserts the specified attribute as the first node in the collection. + + The attribute to insert. May not be null. + The prepended attribute. + + + + Removes a given attribute from the list. + + The attribute to remove. May not be null. + + + + Removes an attribute from the list, using its name. If there are more than one attributes with this name, they will all be removed. + + The attribute's name. May not be null. + + + + Remove all attributes in the list. + + + + + Returns all attributes with specified name. Handles case insentivity + + Name of the attribute + + + + + Removes all attributes from the collection + + + + + Clears the attribute collection + + + + + Represents an HTML comment. + + + + + Gets or Sets the comment text of the node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Represents a complete HTML document. + + + + True to disable, false to enable the behavaior tag p. + + + Default builder to use in the HtmlDocument constructor + + + Action to execute before the Parse is executed + + + + Defines the max level we would go deep into the html document + + + + The HtmlDocument Text. Careful if you modify it. + + + True to stay backward compatible with previous version of HAP. This option does not guarantee 100% compatibility. + + + + Adds Debugging attributes to node. Default is false. + + + + + Defines if closing for non closed nodes must be done at the end or directly in the document. + Setting this to true can actually change how browsers render the page. Default is false. + + + + + Defines if non closed nodes will be checked at the end of parsing. Default is true. + + + + + Defines if a checksum must be computed for the document while parsing. Default is false. + + + + + Defines if SelectNodes method will return null or empty collection when no node matched the XPath expression. + Setting this to true will return empty collection and false will return null. Default is false. + + + + True to disable, false to enable the server side code. + + + + Defines the default stream encoding to use. Default is System.Text.Encoding.Default. + + + + + Defines if source text must be extracted while parsing errors. + If the document has a lot of errors, or cascading errors, parsing performance can be dramatically affected if set to true. + Default is false. + + + + + Defines the maximum length of source text or parse errors. Default is 100. + + + + + Defines if LI, TR, TH, TD tags must be partially fixed when nesting errors are detected. Default is false. + + + + + Defines if output must conform to XML, instead of HTML. Default is false. + + + + + If used together with and enabled, Xml namespaces in element names are preserved. Default is false. + + + + + Defines if attribute value output must be optimized (not bound with double quotes if it is possible). Default is false. + + + + + Defines if name must be output with it's original case. Useful for asp.net tags and attributes. Default is false. + + + + + Defines if name must be output in uppercase. Default is false. + + + + + Defines if declared encoding must be read from the document. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node. + Default is true. + + + + + Defines the name of a node that will throw the StopperNodeException when found as an end node. Default is null. + + + + + Defines if the 'id' attribute must be specifically used. Default is true. + + + + + Defines if empty nodes must be written as closed during output. Default is false. + + + + + Creates an instance of an HTML document. + + + + Gets the parsed text. + The parsed text. + + + + Defines the max level we would go deep into the html document. If this depth level is exceeded, and exception is + thrown. + + + + + Gets the document CRC32 checksum if OptionComputeChecksum was set to true before parsing, 0 otherwise. + + + + + Gets the document's declared encoding. + Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node (pre-HTML5) or the meta charset="XXXXX" html node (HTML5). + + + + + Gets the root node of the document. + + + + + Gets the document's output encoding. + + + + + Gets a list of parse errors found in the document. + + + + + Gets the remaining text. + Will always be null if OptionStopperNodeName is null. + + + + + Gets the offset of Remainder in the original Html text. + If OptionStopperNodeName is null, this will return the length of the original Html text. + + + + + Gets the document's stream encoding. + + + + + Gets a valid XML name. + + Any text. + A string that is a valid XML name. + + + + Applies HTML encoding to a specified string. + + The input string to encode. May not be null. + The encoded string. + + + + Determines if the specified character is considered as a whitespace character. + + The character to check. + true if if the specified character is considered as a whitespace character. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The new HTML attribute. + + + + Creates an HTML attribute with the specified name. + + The name of the attribute. May not be null. + The value of the attribute. + The new HTML attribute. + + + + Creates an HTML comment node. + + The new HTML comment node. + + + + Creates an HTML comment node with the specified comment text. + + The comment text. May not be null. + The new HTML comment node. + + + + Creates an HTML element node with the specified name. + + The qualified name of the element. May not be null. + The new HTML node. + + + + Creates an HTML text node. + + The new HTML text node. + + + + Creates an HTML text node with the specified text. + + The text of the node. May not be null. + The new HTML text node. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML stream. + + The input stream. May not be null. + The html is checked. + The detected encoding. + + + + Detects the encoding of an HTML text provided on a TextReader. + + The TextReader used to feed the HTML. May not be null. + The detected encoding. + + + + Detects the encoding of an HTML text. + + The input html text. May not be null. + The detected encoding. + + + + Gets the HTML node with the specified 'id' attribute value. + + The attribute id to match. May not be null. + The HTML node with the matching id or null if not found. + + + + Loads an HTML document from a stream. + + The input stream. + + + + Loads an HTML document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + The minimum buffer size. + + + + Loads the HTML document from the specified TextReader. + + The TextReader used to feed the HTML data into the document. May not be null. + + + + Loads the HTML document from the specified string. + + String containing the HTML document to load. May not be null. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. + + + + Saves the HTML document to the specified stream. + + The stream to which you want to save. May not be null. + The character encoding to use. May not be null. + + + + Saves the HTML document to the specified StreamWriter. + + The StreamWriter to which you want to save. + + + + Saves the HTML document to the specified TextWriter. + + The TextWriter to which you want to save. May not be null. + + + + Saves the HTML document to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Detects the encoding of an HTML document from a file first, and then loads the file. + + The complete file path to be read. + + + + Detects the encoding of an HTML document from a file first, and then loads the file. + + The complete file path to be read. May not be null. + true to detect encoding, false otherwise. + + + + Detects the encoding of an HTML file. + + Path for the file containing the HTML document to detect. May not be null. + The detected encoding. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads an HTML document from a file. + + The complete file path to be read. May not be null. + The character encoding to use. May not be null. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. May not be null. + The character encoding to use. May not be null. + + + + Creates a new XPathNavigator object for navigating this HTML document. + + An XPathNavigator object. The XPathNavigator is positioned on the root of the document. + + + + Flags that describe the behavior of an Element node. + + + + + The node is a CDATA node. + + + + + The node is empty. META or IMG are example of such nodes. + + + + + The node will automatically be closed during parsing. + + + + + The node can overlap. + + + + + A utility class to replace special characters by entities and vice-versa. + Follows HTML 4.0 specification found at http://www.w3.org/TR/html4/sgml/entities.html + Follows Additional specification found at https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references + See also: https://html.spec.whatwg.org/multipage/named-characters.html#named-character-references + + + + + A collection of entities indexed by name. + + + + + A collection of entities indexed by value. + + + + + Replace known entities by characters. + + The source text. + The result text. + + + + Clone and entitize an HtmlNode. This will affect attribute values and nodes' text. It will also entitize all child nodes. + + The node to entitize. + An entitized cloned node. + + + + Replace characters above 127 by entities. + + The source text. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + The result text. + + + + Replace characters above 127 by entities. + + The source text. + If set to false, the function will not use known entities name. Default is true. + If set to true, the [quote], [ampersand], [lower than] and [greather than] characters will be entitized. + The result text + + + + Represents an HTML node. + + + + + Gets the name of a comment node. It is actually defined as '#comment'. + + + + + Gets the name of the document node. It is actually defined as '#document'. + + + + + Gets the name of a text node. It is actually defined as '#text'. + + + + + Gets a collection of flags that define specific behaviors for specific element nodes. + The table contains a DictionaryEntry list with the lowercase tag name as the Key, and a combination of HtmlElementFlags as the Value. + + + + + Initialize HtmlNode. Builds a list of all tags that have special allowances + + + + + Initializes HtmlNode, providing type, owner and where it exists in a collection + + + + + + + + Gets the collection of HTML attributes for this node. May not be null. + + + + + Gets all the children of the node. + + + + + Gets a value indicating if this node has been closed or not. + + + + + Gets the collection of HTML attributes for the closing tag. May not be null. + + + + + Gets the closing tag of the node, null if the node is self-closing. + + + + + Gets the first child of the node. + + + + + Gets a value indicating whether the current node has any attributes. + + + + + Gets a value indicating whether this node has any child nodes. + + + + + Gets a value indicating whether the current node has any attributes on the closing tag. + + + + + Gets or sets the value of the 'id' HTML attribute. The document must have been parsed using the OptionUseIdAttribute set to true. + + + + + Gets or Sets the HTML between the start and end tags of the object. + + + + + Gets or Sets the text between the start and end tags of the object. + + + + + Gets the last child of the node. + + + + + Gets the line number of this node in the document. + + + + + Gets the column number of this node in the document. + + + + + Gets the stream position of the area between the opening and closing tag of the node, relative to the start of the document. + + + + + Gets the length of the area between the opening and closing tag of the node. + + + + + Gets the length of the entire node, opening and closing tag included. + + + + + Gets or sets this node's name. + + + + + Gets the HTML node immediately following this element. + + + + + Gets the type of this node. + + + + + The original unaltered name of the tag + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets the to which this node belongs. + + + + + Gets the parent of this node (for nodes that can have parents). + + + + + Gets the node immediately preceding this node. + + + + + Gets the stream position of this node in the document, relative to the start of the document. + + + + + Gets a valid XPath string that points to this node + + + + + Determines if an element node can be kept overlapped. + + The name of the element node to check. May not be null. + true if the name is the name of an element node that can be kept overlapped, false otherwise. + + + + Creates an HTML node from a string representing literal HTML. + + The HTML text. + The newly created node instance. + + + + Determines if an element node is a CDATA element node. + + The name of the element node to check. May not be null. + true if the name is the name of a CDATA element node, false otherwise. + + + + Determines if an element node is closed. + + The name of the element node to check. May not be null. + true if the name is the name of a closed element node, false otherwise. + + + + Determines if an element node is defined as empty. + + The name of the element node to check. May not be null. + true if the name is the name of an empty element node, false otherwise. + + + + Determines if a text corresponds to the closing tag of an node that can be kept overlapped. + + The text to check. May not be null. + true or false. + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Get Ancestors with matching name + + + + + + + Returns a collection of all ancestor nodes of this element. + + + + + + Gets all anscestor nodes and the current node + + + + + + + Adds the specified node to the end of the list of children of this node. + + The node to add. May not be null. + The node added. + + + Sets child nodes identifier. + The chil node. + + + + Adds the specified node to the end of the list of children of this node. + + The node list to add. May not be null. + + + + Gets all Attributes with name + + + + + + + Creates a duplicate of the node + + + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + The cloned node. + + + + Creates a duplicate of the node and changes its name at the same time. + + The new name of the cloned node. May not be null. + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node. + + true to recursively clone the subtree under the specified node; false to clone only the node itself. + The cloned node. + + + + Creates a duplicate of the node and the subtree under it. + + The node to duplicate. May not be null. + + + + Creates a duplicate of the node. + + The node to duplicate. May not be null. + true to recursively clone the subtree under the specified node, false to clone only the node itself. + + + + Gets all Descendant nodes for this node and each of child nodes + + The depth level of the node to parse in the html tree + the current element as an HtmlNode + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Gets all Descendant nodes in enumerated list + + + + + + Get all descendant nodes with matching name + + + + + + + Returns a collection of all descendant nodes of this element, in document order + + + + + + Gets all descendant nodes including this node + + + + + + + Gets first generation child node matching name + + + + + + + Gets matching first generation child nodes matching name + + + + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned. + + The name of the attribute to get. May not be null. + The default value to return if not found. + The value of the attribute if found, the default value if not found. + + + + Inserts the specified node immediately after the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newNode is placed after the refNode. + The node being inserted. + + + + Inserts the specified node immediately before the specified reference node. + + The node to insert. May not be null. + The node that is the reference node. The newChild is placed before this node. + The node being inserted. + + + + Adds the specified node to the beginning of the list of children of this node. + + The node to add. May not be null. + The node added. + + + + Adds the specified node list to the beginning of the list of children of this node. + + The node list to add. May not be null. + + + + Removes node from parent collection + + + + + Removes all the children and/or attributes of the current node. + + + + + Removes all the children of the current node. + + + + Removes all id for node described by node. + The node. + + + + Removes the specified child node. + + The node being removed. May not be null. + The node removed. + + + + Removes the specified child node. + + The node being removed. May not be null. + true to keep grand children of the node, false otherwise. + The node removed. + + + + Replaces the child node oldChild with newChild node. + + The new node to put in the child list. + The node being replaced in the list. + The node replaced. + + + + Helper method to set the value of an attribute of this node. If the attribute is not found, it will be created automatically. + + The name of the attribute to set. May not be null. + The value for the attribute. + The corresponding attribute instance. + + + + Saves all the children of the node to the specified TextWriter. + + The TextWriter to which you want to save. + Identifies the level we are in starting at root with 0 + + + + Saves all the children of the node to a string. + + The saved string. + + + + Saves the current node to the specified TextWriter. + + The TextWriter to which you want to save. + identifies the level we are in starting at root with 0 + + + + Saves the current node to the specified XmlWriter. + + The XmlWriter to which you want to save. + + + + Saves the current node to a string. + + The saved string. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + + + + Adds one or more classes to this node. + + The node list to add. May not be null. + true to throw Error if class name exists, false otherwise. + + + + Removes the class attribute from the node. + + + + + Removes the class attribute from the node. + + true to throw Error if class name doesn't exist, false otherwise. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + + + + Removes the specified class from the node. + + The class being removed. May not be null. + true to throw Error if class name doesn't exist, false otherwise. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + + + + Replaces the class name oldClass with newClass name. + + The new class name. + The class being replaced. + true to throw Error if class name doesn't exist, false otherwise. + + + Gets the CSS Class from the node. + + The CSS Class from the node + + + + Check if the node class has the parameter class. + The class. + True if node class has the parameter class, false if not. + + + + Creates a new XPathNavigator object for navigating this HTML node. + + An XPathNavigator object. The XPathNavigator is positioned on the node from which the method was called. It is not positioned on the root of the document. + + + + Creates an XPathNavigator using the root of this document. + + + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Selects the first XmlNode that matches the XPath expression. + + The XPath expression. May not be null. + The first that matches the XPath query or a null reference if no matching node was found. + + + + Selects a list of nodes matching the expression. + + The XPath expression. + An containing a collection of nodes matching the query, or null if no node matched the XPath expression. + + + + Represents a combined list and collection of HTML nodes. + + + + + Initialize the HtmlNodeCollection with the base parent node + + The base node of the collection + + + + Gets a given node from the list. + + + + + Get node with tag name + + + + + + + Gets the number of elements actually contained in the list. + + + + + Is collection read only + + + + + Gets the node at the specified index. + + + + + Add node to the collection + + + + + + Add node to the collection + + + + + + + Clears out the collection of HtmlNodes. Removes each nodes reference to parentnode, nextnode and prevnode + + + + + Gets existence of node in collection + + + + + + + Copy collection to array + + + + + + + Get Enumerator + + + + + + Get Explicit Enumerator + + + + + + Get index of node + + + + + + + Insert node at index + + + + + + + Remove node + + + + + + + Remove at index + + + + + + Get first instance of node in supplied collection + + + + + + + + Add node to the end of the collection + + + + + + Get first instance of node with name + + + + + + + Get index of node + + + + + + + Add node to the beginning of the collection + + + + + + Remove node at index + + + + + + + Replace node at index + + + + + + + Get all node descended from this collection + + + + + + Get all node descended from this collection with matching name + + + + + + Gets all first generation elements in collection + + + + + + Gets all first generation elements matching name + + + + + + + All first generation nodes in collection + + + + + + Represents an HTML navigator on an HTML document seen as a data store. + + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the stream. + The minimum buffer size. + + + + Initializes a new instance of the HtmlNavigator and loads an HTML document from a TextReader. + + The TextReader used to feed the HTML data into the document. + + + + Gets the base URI for the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the current HTML document. + + + + + Gets the current HTML node. + + + + + Gets a value indicating whether the current node has child nodes. + + + + + Gets a value indicating whether the current node has child nodes. + + + + + Gets a value indicating whether the current node is an empty element. + + + + + Gets the name of the current HTML node without the namespace prefix. + + + + + Gets the qualified name of the current node. + + + + + Gets the namespace URI (as defined in the W3C Namespace Specification) of the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the associated with this implementation. + + + + + Gets the type of the current node. + + + + + Gets the prefix associated with the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Gets the text value of the current node. + + + + + Gets the xml:lang scope for the current node. + Always returns string.Empty in the case of HtmlNavigator implementation. + + + + + Creates a new HtmlNavigator positioned at the same node as this HtmlNavigator. + + A new HtmlNavigator object positioned at the same node as the original HtmlNavigator. + + + + Gets the value of the HTML attribute with the specified LocalName and NamespaceURI. + + The local name of the HTML attribute. + The namespace URI of the attribute. Unsupported with the HtmlNavigator implementation. + The value of the specified HTML attribute. String.Empty or null if a matching attribute is not found or if the navigator is not positioned on an element node. + + + + Returns the value of the namespace node corresponding to the specified local name. + Always returns string.Empty for the HtmlNavigator implementation. + + The local name of the namespace node. + Always returns string.Empty for the HtmlNavigator implementation. + + + + Determines whether the current HtmlNavigator is at the same position as the specified HtmlNavigator. + + The HtmlNavigator that you want to compare against. + true if the two navigators have the same position, otherwise, false. + + + + Moves to the same position as the specified HtmlNavigator. + + The HtmlNavigator positioned on the node that you want to move to. + true if successful, otherwise false. If false, the position of the navigator is unchanged. + + + + Moves to the HTML attribute with matching LocalName and NamespaceURI. + + The local name of the HTML attribute. + The namespace URI of the attribute. Unsupported with the HtmlNavigator implementation. + true if the HTML attribute is found, otherwise, false. If false, the position of the navigator does not change. + + + + Moves to the first sibling of the current node. + + true if the navigator is successful moving to the first sibling node, false if there is no first sibling or if the navigator is currently positioned on an attribute node. + + + + Moves to the first HTML attribute. + + true if the navigator is successful moving to the first HTML attribute, otherwise, false. + + + + Moves to the first child of the current node. + + true if there is a first child node, otherwise false. + + + + Moves the XPathNavigator to the first namespace node of the current element. + Always returns false for the HtmlNavigator implementation. + + An XPathNamespaceScope value describing the namespace scope. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the node that has an attribute of type ID whose value matches the specified string. + + A string representing the ID value of the node to which you want to move. This argument does not need to be atomized. + true if the move was successful, otherwise false. If false, the position of the navigator is unchanged. + + + + Moves the XPathNavigator to the namespace node with the specified local name. + Always returns false for the HtmlNavigator implementation. + + The local name of the namespace node. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the next sibling of the current node. + + true if the navigator is successful moving to the next sibling node, false if there are no more siblings or if the navigator is currently positioned on an attribute node. If false, the position of the navigator is unchanged. + + + + Moves to the next HTML attribute. + + + + + + Moves the XPathNavigator to the next namespace node. + Always returns falsefor the HtmlNavigator implementation. + + An XPathNamespaceScope value describing the namespace scope. + Always returns false for the HtmlNavigator implementation. + + + + Moves to the parent of the current node. + + true if there is a parent node, otherwise false. + + + + Moves to the previous sibling of the current node. + + true if the navigator is successful moving to the previous sibling node, false if there is no previous sibling or if the navigator is currently positioned on an attribute node. + + + + Moves to the root node to which the current node belongs. + + + + + Represents the type of a node. + + + + + The root of a document. + + + + + An HTML element. + + + + + An HTML comment. + + + + + A text node is always the child of an element or a document node. + + + + + Represents a parsing error found during document parsing. + + + + + Gets the type of error. + + + + + Gets the line number of this error in the document. + + + + + Gets the column number of this error in the document. + + + + + Gets a description for the error. + + + + + Gets the the full text of the line containing the error. + + + + + Gets the absolute stream position of this error in the document, relative to the start of the document. + + + + + Represents the type of parsing error. + + + + + A tag was not closed. + + + + + A tag was not opened. + + + + + There is a charset mismatch between stream and declared (META) encoding. + + + + + An end tag was not required. + + + + + An end tag is invalid at this position. + + + + + Represents an HTML text node. + + + + + Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml. + + + + + Gets or Sets the object and its content in HTML. + + + + + Gets or Sets the text of the node. + + + + + A utility class to get HTML document from HTTP. + + + + + Represents the method that will handle the PostResponse event. + + + + + Represents the method that will handle the PreHandleDocument event. + + + + + Represents the method that will handle the PostResponse event. + + + + + Occurs after an HTTP request has been executed. + + + + + Occurs before an HTML document is handled. + + + + + Occurs before an HTTP request is executed. + + + + + Gets or Sets a value indicating if document encoding must be automatically detected. + + + + + Gets or sets the Encoding used to override the response stream from any web request + + + + + Gets or Sets a value indicating whether to get document only from the cache. + If this is set to true and document is not found in the cache, nothing will be loaded. + + + + + Gets or Sets a value indicating whether to get document from the cache if exists, otherwise from the web + A value indicating whether to get document from the cache if exists, otherwise from the web + + + + + Gets or Sets the cache path. If null, no caching mechanism will be used. + + + + + Gets a value indicating if the last document was retrieved from the cache. + + + + + Gets the last request duration in milliseconds. + + + + + Gets the URI of the Internet resource that actually responded to the request. + + + + + Gets the last request status. + + + + + Gets or Sets the size of the buffer used for memory operations. + + + + + Gets or Sets a value indicating if cookies will be stored. + + + + Gets or sets a value indicating whether redirect should be captured instead of the current location. + True if capture redirect, false if not. + + + + Gets or Sets the User Agent HTTP 1.1 header sent on any webrequest + + + + + Gets or Sets a value indicating whether the caching mechanisms should be used or not. + + + + + Gets an HTML document from an Internet resource and saves it to the specified file. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + + + Gets an HTML document from an Internet resource and saves it to the specified file. - Proxy aware + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + + + + + Gets an HTML document from an Internet resource and saves it to the specified file. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + + + + Gets an HTML document from an Internet resource and saves it to the specified file. Understands Proxies + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The location of the file where you want to save the document. + + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + + + + + Gets the cache file path for a specified url. + + The url fo which to retrieve the cache path. May not be null. + The cache file path. + + + + Gets an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + A new HTML document. + + + + Gets an HTML document from an Internet resource. + + The requested Uri, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + Proxy to use with this request + Credentials to use when authenticating + A new HTML document. + + + + Loads an HTML document from an Internet resource. + + The requested Uri, such as new Uri("http://Myserver/Mypath/Myfile.asp"). + The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. + Proxy to use with this request + Credentials to use when authenticating + A new HTML document. + + + + Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter. + + The requested URL, such as "http://Myserver/Mypath/Myfile.asp". + The XmlTextWriter to which you want to save to. + + + + Begins the process of downloading an internet resource + + Url to the html document + + + + Begins the process of downloading an internet resource + + Url to the html document + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + Domain to use for credentials in the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + Username to use for credentials in the web request + Password to use for credentials in the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The credentials to use for authenticating the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The credentials to use for authenticating the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + The credentials to use for authenticating the web request + + + + Begins the process of downloading an internet resource + + Url to the html document + The encoding to use while downloading the document + The credentials to use for authenticating the web request + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + + An interface for getting permissions of the running application + + + + + Checks to see if Registry access is available to the caller + + + + + + Checks to see if DNS information is available to the caller + + + + + + Represents an exception thrown by the HtmlWeb utility class. + + + + + Creates an instance of the HtmlWebException. + + The exception's message. + + + + Represents a document with mixed code and text. ASP, ASPX, JSP, are good example of such documents. + + + + + Gets or sets the token representing code end. + + + + + Gets or sets the token representing code start. + + + + + Gets or sets the token representing code directive. + + + + + Gets or sets the token representing response write directive. + + + + + Creates a mixed code document instance. + + + + + Gets the code represented by the mixed code document seen as a template. + + + + + Gets the list of code fragments in the document. + + + + + Gets the list of all fragments in the document. + + + + + Gets the encoding of the stream used to read the document. + + + + + Gets the list of text fragments in the document. + + + + + Create a code fragment instances. + + The newly created code fragment instance. + + + + Create a text fragment instances. + + The newly created text fragment instance. + + + + Loads a mixed code document from a stream. + + The input stream. + + + + Loads a mixed code document from a stream. + + The input stream. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a stream. + + The input stream. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + + + + Loads a mixed code document from a file. + + The complete file path to be read. + The character encoding to use. + Indicates whether to look for byte order marks at the beginning of the file. + The minimum buffer size. + + + + Loads the mixed code document from the specified TextReader. + + The TextReader used to feed the HTML data into the document. + + + + Loads a mixed document from a text + + The text to load. + + + + Saves the mixed document to the specified stream. + + The stream to which you want to save. + + + + Saves the mixed document to the specified stream. + + The stream to which you want to save. + The character encoding to use. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + + + + Saves the mixed document to the specified file. + + The location of the file where you want to save the document. + The character encoding to use. + + + + Saves the mixed document to the specified StreamWriter. + + The StreamWriter to which you want to save. + + + + Saves the mixed document to the specified TextWriter. + + The TextWriter to which you want to save. + + + + Represents a fragment of code in a mixed code document. + + + + + Gets the fragment code text. + + + + + Represents a base class for fragments in a mixed code document. + + + + + Gets the fragement text. + + + + + Gets the type of fragment. + + + + + Gets the line number of the fragment. + + + + + Gets the line position (column) of the fragment. + + + + + Gets the fragment position in the document's stream. + + + + + Represents a list of mixed code fragments. + + + + + Gets the Document + + + + + Gets the number of fragments contained in the list. + + + + + Gets a fragment from the list using its index. + + + + + Gets an enumerator that can iterate through the fragment list. + + + + + Appends a fragment to the list of fragments. + + The fragment to append. May not be null. + + + + Gets an enumerator that can iterate through the fragment list. + + + + + Prepends a fragment to the list of fragments. + + The fragment to append. May not be null. + + + + Remove a fragment from the list of fragments. If this fragment was not in the list, an exception will be raised. + + The fragment to remove. May not be null. + + + + Remove all fragments from the list. + + + + + Remove a fragment from the list of fragments, using its index in the list. + + The index of the fragment to remove. + + + + Represents a fragment enumerator. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + Advances the enumerator to the next element of the collection. + + true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. + + + + Sets the enumerator to its initial position, which is before the first element in the collection. + + + + + Represents the type of fragment in a mixed code document. + + + + + The fragment contains code. + + + + + The fragment contains text. + + + + + Represents a fragment of text in a mixed code document. + + + + + Gets the fragment text. + + + + diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/uap10.0/HtmlAgilityPack.dll b/Packages/HtmlAgilityPack.1.9.2/lib/uap10.0/HtmlAgilityPack.dll new file mode 100644 index 0000000..60c91cb Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/uap10.0/HtmlAgilityPack.dll differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/uap10.0/HtmlAgilityPack.pdb b/Packages/HtmlAgilityPack.1.9.2/lib/uap10.0/HtmlAgilityPack.pdb new file mode 100644 index 0000000..bc73b9d Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/uap10.0/HtmlAgilityPack.pdb differ diff --git a/Packages/HtmlAgilityPack.1.9.2/lib/uap10.0/HtmlAgilityPack.pri b/Packages/HtmlAgilityPack.1.9.2/lib/uap10.0/HtmlAgilityPack.pri new file mode 100644 index 0000000..57aa09b Binary files /dev/null and b/Packages/HtmlAgilityPack.1.9.2/lib/uap10.0/HtmlAgilityPack.pri differ diff --git a/Packages/LibOrbisPkg.dll b/Packages/LibOrbisPkg.dll new file mode 100644 index 0000000..f906612 Binary files /dev/null and b/Packages/LibOrbisPkg.dll differ diff --git a/README.md b/README.md index fca4b3b..3b12738 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,80 @@ -# GayMaker-Studio -GMS1.4.9999 -> PS4 Export +# v1.1 +Added version manager - now you can use any verison of GMS1.4 you want +Updated default version to 1.4.9999 +Fixed a bug where changing the project wouldnt update the preview. +Fixed a bug where if you never opened "Global Game Settings" in GameMaker +Then GayMaker would crash (IT WAS A STRANGE PARSER DIFFERNTAL xD) +See issue [#9 on GayMaker](https://bitbucket.org/SilicaAndPina/gaymaker/issues/9/global-game-settings) +Added an update-checker it'll ask you if you want to update when a new update is avalible. + +Download: https://bitbucket.org/SilicaAndPina/gaymaker-studio/downloads/GayMaker-Studio%201.1.zip + +# v1.0 +Inital Release! + +Download: https://bitbucket.org/SilicaAndPina/gaymaker-studio/downloads/GayMaker-Studio.zip + +#GayMaker: Studio + +Homebrew GM:S Export tool (Based off the original [GayMaker Tool for PSVita](https://bitbucket.org/SilicaAndPina/gaymaker)) + +Run the program. and browse to a GameMaker Studio project file (.gmx). +you can also change the images, Title. and TitleID and then your game will be +"compiled" for PS4 and saved as a PKG to whereever you choose to save it + +All projects are compiled using GameMaker 1.4.1804 - the latest version that works on 5.05 +Packages are created using LibOrbisPkg, No changes made to the original source of the Libary. +However some snippits where taken from the PkgEditor and changed to not read from clipboard / drag n drop + +Please show me any games you make with it! (though, please note i wont be too interested unless a girl dies) + +#Shaders +When you compile a project that uses Shaders for the first time. you'll be prompted to browse to 'orbis-wave-psslc.exe' +This file will then be placed into the GayMaker: Studio install folder and you wont have to do it again after that. +Shaders will compile into the GXP format. which will then work on the console itself. + +For *reasons*, i will not provide a link to orbis-wave-psslc.exe + + +# Controller Mapping + +To Check DS4 Controls use the [GamePad](https://docs.yoyogames.com/source/dadiospice/002_reference/mouse,%20keyboard%20and%20other%20controls/gamepad%20input/index.html) commands +Here is what each control maps to: + +gp_face1 = CROSS +gp_face2 = SQUARE +gp_face3 = CIRCLE +gp_face4 = TRIANGLE + +gp_shoulderl = L1 +gp_shoulderr = R1 +gp_shoulderlb = L2 +gp_shoulderrb = R2 + +gp_select = SELECT +gp_start = START + +gp_stickl = L3 +gp_stickr = R3 + +gp_padu = DPAD UP +gp_padd = DPAD DOWN +gp_padl = DPAD LEFT +gp_padr = DPAD RIGHT + +gp_axislh = LEFT ANOLOUGE HORIZONTAL AXIES +gp_axislv = LEFT ANOLOUGE VERTICAL AXIES + +gp_axisrh = RIGHT ANOLOUGE HORIZONTAL AXIES +gp_axisrv = RIGHT ANOLOUGE VERTICAL AXIES + +# Homebrew Repo +This repository has some GameMaker: Studio Homebrew games / ports. +https://bitbucket.org/SilicaAndPina/gm-shb + +# Credits +Thanks YoYoGames for GameMaker, "YOYO_DEV_ENABLE", and having a unsecured CDN +Thanks To the devs of DnSpy for indirectly making this possible ;) +Thanks To MaxTon for [LibOrbisPkg](https://github.com/maxton/LibOrbisPkg) +Thanks To ignacio1420 and Nagato for Testing! +Thanks To flat_z for [make_fself.py](https://twitter.com/flat_z/status/954856357664100354) \ No newline at end of file diff --git a/latest.md b/latest.md new file mode 100644 index 0000000..67b3e4a --- /dev/null +++ b/latest.md @@ -0,0 +1 @@ +1.1~https://bitbucket.org/SilicaAndPina/gaymaker-studio/downloads/GayMaker-Studio%201.1.zip \ No newline at end of file diff --git a/make-fself/build.bat b/make-fself/build.bat new file mode 100644 index 0000000..ae60f29 --- /dev/null +++ b/make-fself/build.bat @@ -0,0 +1,22 @@ +@echo off +echo requires nuitka +echo requires x86 Python2.7.15 +echo RUN IN VS2017 COMMAND LINE + +set PY27DIR=C:\Python27-86 + +%PY27DIR%\Scripts\nuitka --standalone --show-progress --remove-output --python-flag=no_site make_fself.py + +rd ..\GayMaker-Studio\bin\Debug\make_fself +rd ..\GayMaker-Studio\bin\Release\make_fself + +mkdir ..\GayMaker-Studio\bin\Debug\make_fself +mkdir ..\GayMaker-Studio\bin\Release\make_fself + +copy make_fself.dist\make_fself.exe ..\GayMaker-Studio\bin\Debug\make_fself +copy make_fself.dist\python27.dll ..\GayMaker-Studio\bin\Debug\make_fself + +copy make_fself.dist\make_fself.exe ..\GayMaker-Studio\bin\Release\make_fself +copy make_fself.dist\python27.dll ..\GayMaker-Studio\bin\Release\make_fself + +rd make_fself.dist /S /Q diff --git a/make-fself/make_fself.py b/make-fself/make_fself.py new file mode 100644 index 0000000..6506752 --- /dev/null +++ b/make-fself/make_fself.py @@ -0,0 +1,816 @@ +#!/usr/bin/env python + +import sys, os, struct, traceback +import hashlib, hmac +import argparse, re, string + +def int_with_base_type(val): + return int(val, 0) + +def try_parse_int(x, base=0): + try: + return int(x, base) if isinstance(x, str) else int(x) + except: + return None + +def align_up(x, alignment): + return (x + (alignment - 1)) & ~(alignment - 1) + +def align_down(x, alignment): + return x & ~(alignment - 1) + +def ilog2(x): + if x <= 0: + raise ValueError('math domain error') + return len(bin(x)) - 3 + +def is_intervals_overlap(p1, p2): + return p1[0] <= p2[1] and p1[1] <= p2[0] + +def check_file_magic(f, expected_magic): + old_offset = f.tell() + try: + magic = f.read(len(expected_magic)) + except: + return False + finally: + f.seek(old_offset) + return magic == expected_magic + +def parse_version(version): + major, minor, patch = (version >> 8) & 0xFF, version & 0xFF, 0 # FIXME + major = 10 * (major >> 4) + (major & 0xF) + minor = 10 * (minor >> 4) + (minor & 0xF) + return '{0:d}.{1:02d}.{2:03d}'.format(major, minor, patch) + +def sha256(data): + return hashlib.sha256(data).digest() + +def hmac_sha256(key, data): + return hmac.new(key=key, msg=data, digestmod=hashlib.sha256).digest() + +class ElfError(Exception): + def __init__(self, msg): + self.msg = msg + + def __str__(self): + return repr(self.msg) + +class ElfEHdr(object): + FMT = '<4s5B6xB' + EX_FMT = '<2HI3QI6H' + + MAGIC = '\x7FELF' + CLASS64 = 0x2 + DATA2LSB = 0x1 + EM_X86_64 = 0x3E + EV_CURRENT = 0x1 + + ET_EXEC = 0x2 + ET_SCE_EXEC = 0xFE00 + ET_SCE_EXEC_ASLR = 0xFE10 + ET_SCE_DYNAMIC = 0xFE18 + + def __init__(self): + self.magic = None + self.machine_class = None + self.data_encoding = None + self.version = None + self.os_abi = None + self.abi_version = None + self.nident_size = None + self.type = None + self.machine = None + self.version = None + self.entry = None + self.phoff = None + self.shoff = None + self.flags = None + self.ehsize = None + self.phentsize = None + self.phnum = None + self.shentsize = None + self.shnum = None + self.shstridx = None + + def load(self, f): + if not check_file_magic(f, ElfEHdr.MAGIC): + raise ElfError('Invalid magic.') + + self.magic, self.machine_class, self.data_encoding, self.version, self.os_abi, self.abi_version, self.nident_size = struct.unpack(ElfEHdr.FMT, f.read(struct.calcsize(ElfEHdr.FMT))) + if self.machine_class != ElfEHdr.CLASS64 or self.data_encoding != ElfEHdr.DATA2LSB: + raise ElfError('Unsupported class or data encoding.') + self.type, self.machine, self.version, self.entry, self.phoff, self.shoff, self.flags, self.ehsize, self.phentsize, self.phnum, self.shentsize, self.shnum, self.shstridx = struct.unpack(ElfEHdr.EX_FMT, f.read(struct.calcsize(ElfEHdr.EX_FMT))) + if self.machine != ElfEHdr.EM_X86_64 or self.version != ElfEHdr.EV_CURRENT: + raise ElfError('Unsupported machine type or version.') + if self.phentsize != struct.calcsize(ElfPHdr.FMT) or (self.shentsize > 0 and self.shentsize != struct.calcsize(ElfSHdr.FMT)): + raise ElfError('Unsupported header entry size.') + if self.type not in [ElfEHdr.ET_EXEC, ElfEHdr.ET_SCE_EXEC, ElfEHdr.ET_SCE_EXEC_ASLR, ElfEHdr.ET_SCE_DYNAMIC]: + raise ElfError('Unsupported type.') + + def save(self, f): + f.write(struct.pack(ElfEHdr.FMT, self.magic, self.machine_class, self.data_encoding, self.version, self.os_abi, self.abi_version, self.nident_size)) + f.write(struct.pack(ElfEHdr.EX_FMT, self.type, self.machine, self.version, self.entry, self.phoff, self.shoff, self.flags, self.ehsize, self.phentsize, self.phnum, self.shentsize, self.shnum, self.shstridx)) + + def has_segments(self): + return self.phentsize > 0 and self.phnum > 0 + + def has_sections(self): + return self.shentsize > 0 and self.shnum > 0 + +class ElfPHdr(object): + FMT = '<2I6Q' + + PT_LOAD = 0x1 + PT_DYNAMIC = 0x2 + PT_INTERP = 0x3 + PT_TLS = 0x7 + PT_GNU_EH_FRAME = 0x6474E550 + PT_GNU_STACK = 0x6474E551 + PT_SCE_RELA = 0x60000000, + PT_SCE_DYNLIBDATA = 0x61000000 + PT_SCE_PROCPARAM = 0x61000001 + PT_SCE_MODULE_PARAM = 0x61000002 + PT_SCE_RELRO = 0x61000010 + PT_SCE_COMMENT = 0x6FFFFF00 + PT_SCE_VERSION = 0x6FFFFF01 + + PF_EXEC = 0x1 + PF_WRITE = 0x2 + PF_READ = 0x4 + PF_READ_EXEC = PF_READ | PF_EXEC + PF_READ_WRITE = PF_READ | PF_WRITE + + def __init__(self, idx): + self.idx = idx + self.type = None + self.flags = None + self.offset = None + self.vaddr = None + self.paddr = None + self.filesz = None + self.memsz = None + self.align = None + + def load(self, f): + self.type, self.flags, self.offset, self.vaddr, self.paddr, self.filesz, self.memsz, self.align = struct.unpack(ElfPHdr.FMT, f.read(struct.calcsize(ElfPHdr.FMT))) + + def save(self, f): + f.write(struct.pack(ElfPHdr.FMT, self.type, self.flags, self.offset, self.vaddr, self.paddr, self.filesz, self.memsz, self.align)) + + def name(self): + if self.type == ElfPHdr.PT_LOAD: + if (self.flags & ElfPHdr.PF_READ_EXEC) == ElfPHdr.PF_READ_EXEC: + return '.text' + elif (self.flags & ElfPHdr.PF_READ_WRITE) == ElfPHdr.PF_READ_WRITE: + return '.data' + else: + return '.load_{0:02}'.format(self.idx) + else: + return { + ElfPHdr.PT_DYNAMIC: '.dynamic', + ElfPHdr.PT_INTERP: '.interp', + ElfPHdr.PT_TLS: '.tls', + ElfPHdr.PT_GNU_EH_FRAME: '.eh_frame_hdr', + ElfPHdr.PT_SCE_DYNLIBDATA: '.sce_dynlib_data', + ElfPHdr.PT_SCE_PROCPARAM: '.sce_process_param', + ElfPHdr.PT_SCE_MODULE_PARAM: '.sce_module_param', + ElfPHdr.PT_SCE_COMMENT: '.sce_comment', + }.get(self.type, None) + + def class_name(self): + if (self.flags & ElfPHdr.PF_READ_EXEC) == ElfPHdr.PF_READ_EXEC: + return 'CODE' + else: + return 'DATA' + +class ElfSHdr(object): + FMT = '<2I4Q2I2Q' + + def __init__(self, idx): + self.idx = idx + self.name = None + self.type = None + self.flags = None + self.addr = None + self.offset = None + self.size = None + self.link = None + self.info = None + self.align = None + self.entsize = None + + def load(self, f): + self.name, self.type, self.flags, self.addr, self.offset, self.size, self.link, self.info, self.align, self.entsize = struct.unpack(ElfSHdr.FMT, f.read(struct.calcsize(ElfSHdr.FMT))) + + def save(self, f): + f.write(struct.pack(ElfSHdr.FMT, self.name, self.type, self.flags, self.addr, self.offset, self.size, self.link, self.info, self.align, self.entsize)) + +class ElfFile(object): + def __init__(self, **kwargs): + self.ehdr = None + self.phdrs = None + self.shdrs = None + self.file_size = None + self.digest = None + self.segments = None + self.sections = None + self.ignore_shdrs = 'ignore_shdrs' in kwargs and kwargs['ignore_shdrs'] + + def load(self, f): + start_offset = f.tell() + data = f.read() + self.file_size = len(data) + self.digest = sha256(data) + f.seek(start_offset) + + self.ehdr = ElfEHdr() + self.ehdr.load(f) + + if self.ignore_shdrs: + self.ehdr.shnum = 0 + + self.phdrs = [] + self.segments = [] + if self.ehdr.has_segments(): + for i in xrange(self.ehdr.phnum): + f.seek(start_offset + self.ehdr.phoff + i * self.ehdr.phentsize) + phdr = ElfPHdr(i) + phdr.load(f) + self.phdrs.append(phdr) + if phdr.filesz > 0: + f.seek(start_offset + phdr.offset) + data = f.read(phdr.filesz) + else: + data = '' + self.segments.append(data) + + self.shdrs = [] + self.sections = [] + if self.ehdr.has_sections(): + for i in xrange(self.ehdr.shnum): + f.seek(start_offset + self.ehdr.shoff + i * self.ehdr.shentsize) + shdr = ElfSHdr(i) + shdr.load(f) + self.shdrs.append(shdr) + if phdr.filesz > 0: + f.seek(start_offset + shdr.offset) + data = f.read(phdr.filesz) + else: + data = '' + self.sections.append(data) + + def save(self, f, no_sections=False): + start_offset = f.tell() + + self.ehdr.save(f) + + if not no_sections: + if self.ehdr.has_sections(): + for i in xrange(self.ehdr.shnum): + f.seek(start_offset + self.ehdr.shoff + i * self.ehdr.shentsize) + shdr = self.shdrs[i] + shdr.save(f) + + if self.ehdr.has_segments(): + for i in xrange(self.ehdr.phnum): + f.seek(start_offset + self.ehdr.phoff + i * self.ehdr.phentsize) + phdr = self.phdrs[i] + phdr.save(f) + +DIGEST_SIZE = 0x20 +SIGNATURE_SIZE = 0x100 +BLOCK_SIZE = 0x4000 +DEFAULT_BLOCK_SIZE = 0x1000 + +SELF_CONTROL_BLOCK_TYPE_NPDRM = 0x3 +SELF_NPDRM_CONTROL_BLOCK_CONTENT_ID_SIZE = 0x13 +SELF_NPDRM_CONTROL_BLOCK_RANDOM_PAD_SIZE = 0xD + +EMPTY_DIGEST = '\0' * DIGEST_SIZE +EMPTY_SIGNATURE = '\0' * SIGNATURE_SIZE + +class SignedElfEntry(object): + FMT = '<4Q' + + PROPS_ORDER_SHIFT = 0 + PROPS_ORDER_MASK = 0x1 + PROPS_ENCRYPTED_SHIFT = 1 + PROPS_ENCRYPTED_MASK = 0x1 + PROPS_SIGNED_SHIFT = 2 + PROPS_SIGNED_MASK = 0x1 + PROPS_COMPRESSED_SHIFT = 3 + PROPS_COMPRESSED_MASK = 0x1 + PROPS_WINDOW_BITS_SHIFT = 8 + PROPS_WINDOW_BITS_MASK = 0x7 + PROPS_HAS_BLOCKS_SHIFT = 11 + PROPS_HAS_BLOCKS_MASK = 0x1 + PROPS_BLOCK_SIZE_SHIFT = 12 + PROPS_BLOCK_SIZE_MASK = 0xF + PROPS_HAS_DIGESTS_SHIFT = 16 + PROPS_HAS_DIGESTS_MASK = 0x1 + PROPS_HAS_EXTENTS_SHIFT = 17 + PROPS_HAS_EXTENTS_MASK = 0x1 + PROPS_HAS_META_SEGMENT_SHIFT = 20 + PROPS_HAS_META_SEGMENT_MASK = 0x1 + PROPS_SEGMENT_INDEX_SHIFT = 20 + PROPS_SEGMENT_INDEX_MASK = 0xFFFF + PROPS_DEFAULT_BLOCK_SIZE = 0x1000 + PROPS_META_SEGMENT_MASK = 0xF0000 + + def __init__(self, index): + self.index = index + + self.props = None + self.offset = None + self.filesz = None + self.memsz = None + + self.data = None + + def save(self, f): + f.write(struct.pack(SignedElfEntry.FMT, self.props, self.offset, self.filesz, self.memsz)) + + @property + def order(self): + return (self.props >> SignedElfEntry.PROPS_ORDER_SHIFT) & SignedElfEntry.PROPS_ORDER_MASK + + @order.setter + def order(self, value): + self.props &= ~(SignedElfEntry.PROPS_ORDER_MASK << SignedElfEntry.PROPS_ORDER_SHIFT) + self.props |= (value & SignedElfEntry.PROPS_ORDER_MASK) << SignedElfEntry.PROPS_ORDER_SHIFT + + @property + def encrypted(self): + return ((self.props >> SignedElfEntry.PROPS_ENCRYPTED_SHIFT) & SignedElfEntry.PROPS_ENCRYPTED_MASK) != 0 + + @encrypted.setter + def encrypted(self, value): + self.props &= ~(SignedElfEntry.PROPS_ENCRYPTED_MASK << SignedElfEntry.PROPS_ENCRYPTED_SHIFT) + if value: + self.props |= SignedElfEntry.PROPS_ENCRYPTED_MASK << SignedElfEntry.PROPS_ENCRYPTED_SHIFT + + @property + def signed(self): + return ((self.props >> SignedElfEntry.PROPS_SIGNED_SHIFT) & SignedElfEntry.PROPS_SIGNED_MASK) != 0 + + @signed.setter + def signed(self, value): + self.props &= ~(SignedElfEntry.PROPS_SIGNED_MASK << SignedElfEntry.PROPS_SIGNED_SHIFT) + if value: + self.props |= SignedElfEntry.PROPS_SIGNED_MASK << SignedElfEntry.PROPS_SIGNED_SHIFT + + @property + def compressed(self): + return ((self.props >> SignedElfEntry.PROPS_COMPRESSED_SHIFT) & SignedElfEntry.PROPS_COMPRESSED_MASK) != 0 + + @compressed.setter + def compressed(self, value): + self.props &= ~(SignedElfEntry.PROPS_COMPRESSED_MASK << SignedElfEntry.PROPS_COMPRESSED_SHIFT) + if value: + self.props |= SignedElfEntry.PROPS_COMPRESSED_MASK << SignedElfEntry.PROPS_COMPRESSED_SHIFT + + @property + def has_blocks(self): + return ((self.props >> SignedElfEntry.PROPS_HAS_BLOCKS_SHIFT) & SignedElfEntry.PROPS_HAS_BLOCKS_MASK) != 0 + + @has_blocks.setter + def has_blocks(self, value): + self.props &= ~(SignedElfEntry.PROPS_HAS_BLOCKS_MASK << SignedElfEntry.PROPS_HAS_BLOCKS_SHIFT) + if value: + self.props |= SignedElfEntry.PROPS_HAS_BLOCKS_MASK << SignedElfEntry.PROPS_HAS_BLOCKS_SHIFT + + @property + def has_digests(self): + return ((self.props >> SignedElfEntry.PROPS_HAS_DIGESTS_SHIFT) & SignedElfEntry.PROPS_HAS_DIGESTS_MASK) != 0 + + @has_digests.setter + def has_digests(self, value): + self.props &= ~(SignedElfEntry.PROPS_HAS_DIGESTS_MASK << SignedElfEntry.PROPS_HAS_DIGESTS_SHIFT) + if value: + self.props |= SignedElfEntry.PROPS_HAS_DIGESTS_MASK << SignedElfEntry.PROPS_HAS_DIGESTS_SHIFT + + @property + def has_extents(self): + return ((self.props >> SignedElfEntry.PROPS_HAS_EXTENTS_SHIFT) & SignedElfEntry.PROPS_HAS_EXTENTS_MASK) != 0 + + @has_extents.setter + def has_extents(self, value): + self.props &= ~(SignedElfEntry.PROPS_HAS_EXTENTS_MASK << SignedElfEntry.PROPS_HAS_EXTENTS_SHIFT) + if value: + self.props |= SignedElfEntry.PROPS_HAS_EXTENTS_MASK << SignedElfEntry.PROPS_HAS_EXTENTS_SHIFT + + @property + def has_meta_segment(self): + return ((self.props >> SignedElfEntry.PROPS_HAS_META_SEGMENT_SHIFT) & SignedElfEntry.PROPS_HAS_META_SEGMENT_MASK) != 0 + + @has_meta_segment.setter + def has_meta_segment(self, value): + self.props &= ~(SignedElfEntry.PROPS_HAS_META_SEGMENT_MASK << SignedElfEntry.PROPS_HAS_META_SEGMENT_SHIFT) + if value: + self.props |= SignedElfEntry.PROPS_HAS_META_SEGMENT_MASK << SignedElfEntry.PROPS_HAS_META_SEGMENT_SHIFT + + @property + def wbits(self): + return (self.props >> SignedElfEntry.PROPS_WINDOW_BITS_SHIFT) & SignedElfEntry.PROPS_WINDOW_BITS_MASK + + @wbits.setter + def wbits(self, value): + self.props &= ~(SignedElfEntry.PROPS_WINDOW_BITS_MASK << SignedElfEntry.PROPS_WINDOW_BITS_SHIFT) + self.props |= (value & SignedElfEntry.PROPS_WINDOW_BITS_MASK) << SignedElfEntry.PROPS_WINDOW_BITS_SHIFT + + @property + def block_size(self): + if self.has_blocks: + return 1 << (12 + (self.props >> SignedElfEntry.PROPS_BLOCK_SIZE_SHIFT) & SignedElfEntry.PROPS_BLOCK_SIZE_MASK) + else: + return DEFAULT_BLOCK_SIZE + + @block_size.setter + def block_size(self, value): + self.props &= ~(SignedElfEntry.PROPS_BLOCK_SIZE_MASK << SignedElfEntry.PROPS_BLOCK_SIZE_SHIFT) + if self.has_blocks: + value = ilog2(value) - 12 + else: + value = 0 # TODO: check + self.props |= (value & SignedElfEntry.PROPS_BLOCK_SIZE_MASK) << SignedElfEntry.PROPS_BLOCK_SIZE_SHIFT + + @property + def segment_index(self): + return (self.props >> SignedElfEntry.PROPS_SEGMENT_INDEX_SHIFT) & SignedElfEntry.PROPS_SEGMENT_INDEX_MASK + + @wbits.setter + def segment_index(self, value): + self.props &= ~(SignedElfEntry.PROPS_SEGMENT_INDEX_MASK << SignedElfEntry.PROPS_SEGMENT_INDEX_SHIFT) + self.props |= (value & SignedElfEntry.PROPS_SEGMENT_INDEX_MASK) << SignedElfEntry.PROPS_SEGMENT_INDEX_SHIFT + + def is_meta_segment(self): # TODO: check + return (self.props & SignedElfEntry.PROPS_META_SEGMENT_MASK) != 0 + + def __repr__(self): + return 'prs:0x{0:X} ofs:0x{1:X} fsz:0x{2:X} msz:0x{3:X}'.format(self.props, self.offset, self.filesz, self.memsz) + +class SignedElfExInfo(object): + FMT = '<4Q32s' + + PTYPE_FAKE = 0x1 + PTYPE_NPDRM_EXEC = 0x4 + PTYPE_NPDRM_DYNLIB = 0x5 + PTYPE_SYSTEM_EXEC = 0x8 + PTYPE_SYSTEM_DYNLIB = 0x9 # including Mono binaries + PTYPE_HOST_KERNEL = 0xC + PTYPE_SECURE_MODULE = 0xE + PTYPE_SECURE_KERNEL = 0xF + + def __init__(self): + self.paid = None + self.ptype = None + self.app_version = None + self.fw_version = None + self.digest = None + + def save(self, f): + f.write(struct.pack(SignedElfExInfo.FMT, self.paid, self.ptype, self.app_version, self.fw_version, self.digest)) + +class SignedElfNpdrmControlBlock(object): + FMT = ' 0: + if val.startswith('0x') or val.startswith('0X'): + val = val[2:] + if len(val) % 2 != 0 or not all(x in string.hexdigits for x in val): + return None + val = val.decode('hex') + val_size = len(val) + + if not exact_size is None and val_size != exact_size: + return None + else: + if not min_size is None and val_size < min_size: + return None + if not max_size is None and val_size > max_size: + return None + + return val + +def input_file_type(val): + if not os.access(val, os.F_OK | os.R_OK) or not os.path.isfile(val): + raise argparse.ArgumentTypeError('invalid input file: {0}'.format(val)) + return val + +def output_file_type(val): + if os.access(val, os.F_OK) and (not os.path.isfile(val) or not os.access(val, os.F_OK | os.W_OK)): + raise argparse.ArgumentTypeError('invalid output file: {0}'.format(val)) + return val + +def auth_info_type(val): + new_val = ensure_hex_string(val, exact_size=0x88) + if new_val is None: + raise argparse.ArgumentTypeError('invalid auth info: {0}'.format(val)) + return new_val + +class MyParser(argparse.ArgumentParser): + def error(self, message): + self.print_help() + sys.stderr.write('\nerror: {0}\n'.format(message)) + sys.exit(2) + +parser = MyParser(description='fake signed elf maker') +parser.add_argument('input', type=input_file_type, default=None, help='elf/prx file path') +parser.add_argument('output', type=output_file_type, default=None, help='self/sprx file path') +parser.add_argument('--paid', type=int_with_base_type, default=0x3100000000000002, help='program authentication id') +parser.add_argument('--ptype', default=None, help='program type {fake, npdrm_exec, npdrm_dynlib, system_exec, system_dynlib, host_kernel, secure_module, secure_kernel}') +parser.add_argument('--app-version', type=int_with_base_type, default=0, help='application version') +parser.add_argument('--fw-version', type=int_with_base_type, default=0, help='firmware version') +parser.add_argument('--auth-info', type=auth_info_type, default=None, help='authentication info') + +if len(sys.argv) == 1: + parser.print_usage() + sys.exit(1) + +args = parser.parse_args() + +paid = args.paid +if not (0 <= paid <= 0xFFFFFFFFFFFFFFFF): + parser.error('invalid program authentication id: 0x{0:016X}'.format(paid)) + +ptype = SignedElfExInfo.PTYPE_FAKE +if not args.ptype is None: + ptype = { + 'fake': SignedElfExInfo.PTYPE_FAKE, + 'npdrm_exec': SignedElfExInfo.PTYPE_NPDRM_EXEC, + 'npdrm_dynlib': SignedElfExInfo.PTYPE_NPDRM_DYNLIB, + 'system_exec': SignedElfExInfo.PTYPE_SYSTEM_EXEC, + 'system_dynlib': SignedElfExInfo.PTYPE_SYSTEM_DYNLIB, + 'host_kernel': SignedElfExInfo.PTYPE_HOST_KERNEL, + 'secure_module': SignedElfExInfo.PTYPE_SECURE_MODULE, + 'secure_kernel': SignedElfExInfo.PTYPE_SECURE_KERNEL, + }.get(args.ptype.strip().lower(), None) + if ptype is None: + ptype = try_parse_int(args.ptype) + if ptype is None: + parser.error('invalid program type: 0x{0:016X}'.format(ptype)) +if not (0 <= ptype <= 0xFFFFFFFFFFFFFFFF): + parser.error('invalid program type: 0x{0:016X}'.format(ptype)) + +app_version = args.app_version +if not (0 <= app_version <= 0xFFFFFFFFFFFFFFFF): + parser.error('invalid application version: 0x{0:016X}'.format(app_version)) + +fw_version = args.fw_version +if not (0 <= fw_version <= 0xFFFFFFFFFFFFFFFF): + parser.error('invalid firmware version: 0x{0:016X}'.format(fw_version)) + +auth_info = args.auth_info + +elf_file_path = args.input +fself_file_path = args.output + +print('loading elf file: {0}'.format(elf_file_path)) +try: + with open(elf_file_path, 'rb') as f: + elf_file = ElfFile(ignore_shdrs=True) + elf_file.load(f) +except Exception as err: + traceback.print_exc() + print('') + parser.error('unable to load elf file: {0} ({1})'.format(elf_file_path, err)) + +print('saving fake signed elf file: {0}'.format(fself_file_path)) +try: + with open(fself_file_path, 'wb') as f: + self_file = SignedElfFile(elf_file, paid=paid, ptype=ptype, app_version=app_version, fw_version=fw_version, auth_info=auth_info) + self_file.save(f) +except Exception as err: + traceback.print_exc() + print('') + parser.error('unable to save fself file: {0} ({1})'.format(elf_file_path, err)) + +print('done')