.NET Framework Class Librar ...


.NET Framework Class Library
System.IO.Packaging Namespace

Provides classes that support storage of multiple data objects in a single container.

Package is an abstract class that can be used to organize objects into a single entity of a defined physical format for portability and efficient access.

A ZIP file is the primary physical format for the Package. Other Package implementations might use other physical formats such as an XML document, a database, or Web service.

Like a file system, items contained in a Package are referenced in a hierarchical organization of folders and files.

Although Package is an abstract class, the ZipPackage derived class is used as default by the Package..::.Open method.

A PackagePart ("part") is the abstract class that represents an object that is stored in a Package.

A PackageRelationship ("relationship") defines an association between a source Package or PackagePart and a target object. A PackageRelationship can be one of two types, each of which can be one of two forms:

The relationship's source Package or source PackagePart is considered the "owner" of the relationship. When the source object is deleted, all the relationships owned by the source object are also deleted. The process of creating or deleting a relationship does not physically change either the source or target objects in any way.

A PackageDigitalSignature ("digital signature") is a composition of parts and relationships representing a digital signature included with a Package. The digital signature identifies the originator and validates that the signed parts and relationships contained in the Package have not been modified.

Packages also support Digital Rights Management (DRM), which allows content elements in a Package to be encrypted with specific access rights granted to authorized users.

Based on the Package architecture, an XpsDocument is a package type designed for storing documents based on the open XML Paper Specification (XPS).

Windows Presentation Foundation (WPF) uses packages to store content, resources, and relationships for pages and documents using a standard ZIP file by default. As with any ZIP file, your application can use the System.IO.Packaging classes to store and optionally protect any type or number of data files in a single efficient-to-access container.

For more information, see the Open Packaging Conventions (OPC) specification, available for download at the XPS section of Windows Hardware Developer Central.

For a list of System.IO.Packaging related example programs, see the following:

Classes

  ClassDescription
Public classEncryptedPackageEnvelopeRepresents an OLE compound file that contains an encrypted package.
Public classPackageRepresents a container that can store multiple data objects.
Public classPackageDigitalSignatureRepresents a digital signature that is applied to a set of package parts and relationships.
Public classPackageDigitalSignatureManagerProvides a utility class for the creation and verification of digital signatures in a Package.
Public classPackagePartProvides a base class for parts stored in a Package. This class is abstract.
Public classPackagePartCollectionRepresents a collection of PackagePart objects.
Public classPackagePropertiesRepresents the core properties of a Package.
Public classPackageRelationshipRepresents an association between a source Package or PackagePart, and a target object which can be a PackagePart or external resource.
Public classPackageRelationshipCollectionRepresents a collection of PackageRelationship elements that are owned by a given PackagePart or the Package.
Public classPackageRelationshipSelectorDefines PackageRelationship criteria to select part-level or package-level relationships.
Public classPackageStoreRepresents a collection of application-specific Package instances used in combination with PackWebRequest.
Public classPackUriHelperProvides utility methods to compose and parse pack URI objects.
Public classPackWebRequestMakes a request to an entire PackagePart or to a PackagePart in a package, identified by a pack URI.
Public classPackWebRequestFactoryRepresents the class that is invoked when an instance of a pack URI PackWebRequest is created.
Public classPackWebResponseRepresents a response of a PackWebRequest.
Public classRightsManagementInformationRepresents Digital Rights Management (DRM) information that is stored in an EncryptedPackageEnvelope.
Public classSignatureVerificationEventArgs Specifies the event args provided to the InvalidSignatureEventHandler.
Public classStorageInfoProvides access and information for manipulating data stores in a Package.
Public classStreamInfoProvides access and information for manipulating I/O streams within a Package.
Public classZipPackageImplements a derived subclass of the abstract Package base class—the ZipPackage class uses a ZIP archive as the container store. This class cannot be inherited.
Public classZipPackagePartRepresents a part that is stored in a ZipPackage.
Delegates

  DelegateDescription
Public delegateInvalidSignatureEventHandlerRepresents the method that handles the InvalidSignatureEvent that is raised when VerifySignatures detects an invalid signature.
Enumerations

  EnumerationDescription
Public enumerationCertificateEmbeddingOptionSpecifies the location where the X.509 certificate that is used in signing is stored.
Public enumerationCompressionOptionSpecifies the compression level for content that is stored in a PackagePart.
Public enumerationEncryptionOptionSpecifies the encryption option for parts in a Package.
Public enumerationPackageRelationshipSelectorTypeSpecifies the type of selection criteria that is used to match and return PackageRelationship selections through a PackageRelationshipSelector.
Public enumerationTargetModeSpecifies whether the target of a PackageRelationship is inside or outside the Package.
Public enumerationVerifyResultSpecifies the result of a certificate or signature verification.
See Also

Reference

Other Resources

Tags :


Community Content

eastglacierpark
Add a reference to WindowsBase to access the System.IO.Packaging namespace
To work with the System.IO.Packaging namespace in the .NET Framework 3.5, add a reference to the WindowsBase component. In the Add References dialog, choose the .NET tab, and select WindowsBase from the list of components.

cheeso
check out DotNetZip to zip and unzip from VB, C#
The Packaging namespace is useful for packages, which are actually just zip files with a particular format. Some applications just need to handle regular zip files, and take advantage of the features of zip files, like password-protection, ZIP64, AES encryption, self-extracting archives, and so on.
If that's what you want to do, then the classes in the System.IO.Packaging namespace can be hard to use and non-intuitive.
Check out the DotNetZip library for handling zip files. It's free, open source, and works with .NET 2.0 and above. It's faster than the Packaging classes, requires simpler code, and has better zip features.
Available at http://dotnetzip.codeplex.com .
Tags : zip

Page view tracker