CfbStream

Overview

CfbStream is a CFB directory entry that holds raw binary data, analogous to a file. It inherits from CfbNode and adds the Data property which stores the stream content as a byte array. Create a CfbStream with a name and optional data, then add it to a CfbStorage before serializing the document with CfbWriter.

Constructors

SignatureDescription
CfbStream(name: string, data: byte[]?)Creates a new CfbStream with the specified parameters.

Properties

NameTypeAccessDescription
Databyte[]ReadRaw byte content of this CFB stream entry.

See Also