ZipArchive.UpdateStream(String, Stream) Method
In This Article
Updates the content of the zip stream item.
Namespace: DevExpress.Compression
Assembly: DevExpress.Docs.v24.2.dll
NuGet Package: DevExpress.Document.Processor
#Declaration
public ZipStreamItem UpdateStream(
string name,
Stream stream
)
#Parameters
Name | Type | Description |
---|---|---|
name | String | A string that is the name of the zip stream item to update. |
stream | Stream | A Stream object that is the new stream of data for the zip stream item. |
#Returns
Type | Description |
---|---|
Zip |
A Zip |
#Remarks
The UpdateStream method removes an item from the archive, creates a new zip stream item with the same name along with a new stream and adds it to the archive.
If an item is not found, it is created.
Use the ZipArchive.Read to load the archive to be updated. To save the updated archive, use the ZipArchive.Save method.
See Also