Package::CreatePart Method (Uri, String, CompressionOption)
Creates a new part with a given URI, content type, and compression option.
Assembly: WindowsBase (in WindowsBase.dll)
public:
PackagePart^ CreatePart(
Uri^ partUri,
String^ contentType,
CompressionOption compressionOption
)
Parameters
- partUri
- Type: System::Uri
The URI of the new part.
- contentType
- Type: System::String
The content type of the data stream.
- compressionOption
- Type: System.IO.Packaging::CompressionOption
The compression option for the data stream, NotCompressed or Normal compression.
| Exception | Condition |
|---|---|
| ArgumentNullException | partUri or contentType is nullptr. |
| ArgumentException | partUri is not a valid PackagePart uniform resource identifier (URI). |
| InvalidOperationException | A part with the specified partUri is already present in the package. |
| ArgumentOutOfRangeException | The compressionOption value is not valid. |
| ObjectDisposedException | |
| IOException | The package is read-only (a new part cannot be added). |
For the default ZipPackage derived class, the CreatePart method only supports two compressionOption values, NotCompressed or Normal compression. Other CompressionOption values of Maximum, Fast, or SuperFast use Normal compression.
CreatePart creates an empty Stream for the new part. The PackagePart::GetStream method can be used to obtain a reference to the stream instance associated with the part.
For additional information, see the Open Packaging Conventions (OPC) specification available for download at http://go.microsoft.com/fwlink/?LinkID=71255.
Notes to InheritorsCreatePart internally calls the derived class's CreatePartCore method to actually create the part based on the physical format implemented in the derived class.
The following example shows how to create a new PackagePart and then store data into the part. For the complete sample, see Writing a Package Sample.
Windows 7, Windows Vista SP1 or later, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.