Fingerprint_Card
Loading...
Searching...
No Matches
ZipFile.cs File Reference

Classes

class  ICSharpCode.SharpZipLib.Zip.KeysRequiredEventArgs
 Arguments used with KeysRequiredEvent. More...
class  ICSharpCode.SharpZipLib.Zip.TestStatus
 Status returned returned by ZipTestResultHandler during testing. More...
class  ICSharpCode.SharpZipLib.Zip.ZipFile
 This class represents a Zip archive. You can ask for the contained entries, or get an input stream for a file entry. The entry is automatically decompressed. More...
class  ICSharpCode.SharpZipLib.Zip.ZipFile.UpdateComparer
 Class used to sort updates. More...
class  ICSharpCode.SharpZipLib.Zip.ZipFile.ZipUpdate
 Represents a pending update to a Zip file. More...
class  ICSharpCode.SharpZipLib.Zip.ZipFile.ZipString
 Represents a string from a ZipFile which is stored as an array of bytes. More...
class  ICSharpCode.SharpZipLib.Zip.ZipFile.ZipEntryEnumerator
 An enumerator for Zip entries More...
class  ICSharpCode.SharpZipLib.Zip.ZipFile.UncompressedStream
 An UncompressedStream is a stream that you can write uncompressed data to and flush, but cannot read, seek or do anything else to. More...
class  ICSharpCode.SharpZipLib.Zip.ZipFile.PartialInputStream
 A PartialInputStream is an InflaterInputStream whose data is only a part or subsection of a file. More...
interface  ICSharpCode.SharpZipLib.Zip.IStaticDataSource
 Provides a static way to obtain a source of data for an entry. More...
interface  ICSharpCode.SharpZipLib.Zip.IDynamicDataSource
 Represents a source of data that can dynamically provide multiple data sources based on the parameters passed. More...
class  ICSharpCode.SharpZipLib.Zip.StaticDiskDataSource
 Default implementation of a IStaticDataSource for use with files stored on disk. More...
class  ICSharpCode.SharpZipLib.Zip.DynamicDiskDataSource
 Default implementation of IDynamicDataSource for files stored on disk. More...
interface  ICSharpCode.SharpZipLib.Zip.IArchiveStorage
 Defines facilities for data storage when updating Zip Archives. More...
class  ICSharpCode.SharpZipLib.Zip.BaseArchiveStorage
 An abstract IArchiveStorage suitable for extension by inheritance. More...
class  ICSharpCode.SharpZipLib.Zip.DiskArchiveStorage
 An IArchiveStorage implementation suitable for hard disks. More...
class  ICSharpCode.SharpZipLib.Zip.MemoryArchiveStorage
 An IArchiveStorage implementation suitable for in memory streams. More...

Namespaces

namespace  ICSharpCode
namespace  ICSharpCode.SharpZipLib
namespace  ICSharpCode.SharpZipLib.Zip

Enumerations

enum  ICSharpCode.SharpZipLib.Zip.TestStrategy { ICSharpCode.SharpZipLib.Zip.FindFirstError , ICSharpCode.SharpZipLib.Zip.FindAllErrors }
 The strategy to apply to testing. More...
enum  ICSharpCode.SharpZipLib.Zip.TestOperation {
  ICSharpCode.SharpZipLib.Zip.Initialising , ICSharpCode.SharpZipLib.Zip.EntryHeader , ICSharpCode.SharpZipLib.Zip.EntryData , ICSharpCode.SharpZipLib.Zip.EntryComplete ,
  ICSharpCode.SharpZipLib.Zip.MiscellaneousTests , ICSharpCode.SharpZipLib.Zip.Complete
}
 The operation in progress reported by a ZipTestResultHandler during testing. More...
enum  ICSharpCode.SharpZipLib.Zip.FileUpdateMode { ICSharpCode.SharpZipLib.Zip.Safe , ICSharpCode.SharpZipLib.Zip.Direct }
 The possible ways of applying updates to an archive. More...

Functions

delegate void ICSharpCode.SharpZipLib.Zip.ZipTestResultHandler (TestStatus status, string message)
 Delegate invoked during testing if supplied indicating current progress and status.