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
| Signature | Description |
|---|
CfbStream(name: string, data: byte[]?) | Creates a new CfbStream with the specified parameters. |
Properties
| Name | Type | Access | Description |
|---|
Data | byte[] | Read | Raw byte content of this CFB stream entry. |
See Also