SerializationWriterWriteBytesDirect Method |
Writes a byte[] directly into the stream.
The size of the array is not stored so only use this method when
the number of bytes will be known at deserialization time.
A null value will throw an exception
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax public void WriteBytesDirect(
byte[] value
)
Public Sub WriteBytesDirect (
value As Byte()
)
Parameters
- value
- Type: SystemByte
The byte[] to store. Must not be null.
See Also