|
Terraria v1.4.4.9
Terraria source code documentation
|
Classes | |
| class | DirectToArchiveWriterStream |
Public Member Functions | |
| void | Delete () |
| Stream | Open () |
| override string | ToString () |
Package Types | |
| enum | BitFlagValues : ushort { DataDescriptor = 8 , UnicodeFileName = 0x800 } |
| enum | CompressionMethodValues : ushort { Stored = 0 , Deflate = 8 , Deflate64 = 9 , BZip2 = 12 , LZMA = 14 } |
Static Package Functions | |
| static string | ParseFileName (string path, ZipVersionMadeByPlatform madeByPlatform) |
Package Attributes | |
| ZipVersionNeededValues | _versionToExtract |
Properties | |
| ZipArchive | Archive [get] |
| uint | Crc32 [get] |
| long | CompressedLength [get] |
| int | ExternalAttributes [get, set] |
| string | FullName [get, private set] |
| DateTimeOffset | LastWriteTime [get, set] |
| long | Length [get] |
| string | Name [get] |
| bool | EverOpenedForWrite [get] |
| long | OffsetOfCompressedData [get] |
| MemoryStream | UncompressedData [get] |
| CompressionMethodValues | CompressionMethod [get, set] |
Static Private Member Functions | |
| static string | GetFileName_Windows (string path) |
| static string | GetFileName_Unix (string path) |
Private Attributes | |
| ZipArchive | _archive |
| readonly bool | _originallyInArchive |
| readonly int | _diskNumberStart |
| readonly ZipVersionMadeByPlatform | _versionMadeByPlatform |
| ZipVersionNeededValues | _versionMadeBySpecification |
| BitFlagValues | _generalPurposeBitFlag |
| CompressionMethodValues | _storedCompressionMethod |
| DateTimeOffset | _lastModified |
| long | _compressedSize |
| long | _uncompressedSize |
| long | _offsetOfLocalHeader |
| long? | _storedOffsetOfCompressedData |
| uint | _crc32 |
| byte[][] | _compressedBytes |
| MemoryStream | _storedUncompressedData |
| bool | _currentlyOpenForWrite |
| bool | _everOpenedForWrite |
| Stream | _outstandingWriteStream |
| uint | _externalFileAttr |
| string | _storedEntryName |
| byte[] | _storedEntryNameBytes |
| List< ZipGenericExtraField > | _cdUnknownExtraFields |
| List< ZipGenericExtraField > | _lhUnknownExtraFields |
| readonly byte[] | _fileComment |
| readonly? CompressionLevel | _compressionLevel |
Static Private Attributes | |
| static readonly bool | s_allowLargeZipArchiveEntriesInUpdateMode = IntPtr.Size > 4 |
Definition at line 10 of file ZipArchiveEntry.cs.