Set the raw binary content of the stream.

 

   

Syntax
 

[C#]
virtual void SetData(byte[] value)

[Visual Basic]
Overridable Sub SetData(value() As Byte)

 

   

Params
 
Name Description
value The raw binary content of the stream.

 

   

Notes
 

Set the raw binary content of the stream.

Compression settings are unaltered. So if - for example - you have a stream which is Flate compressed you must use SetData with Flate compressed data.

For this reason you may wish to call ClearData before using SetData.

 

   

Example
 

None.