Writes a Byte Array to the output stream.

C# |
public void WriteByteArray( byte[] x, int offset, int length )

- x (array<Byte>[]()[])
- The Byte Array to be written to the output stream.
- offset (Int32)
- The position in the byte array from which to start writing.The number of bytes to write.
- length (Int32)

Writes length bytes to the output stream from the given Byte Array, starting from position offset in the array.

Exception | Condition |
---|---|
[SoamException] | If the value could not be written to the output stream. |