RemoteBinaryStreamWrite(Byte, Int32, Int32) Method
Writes a specified number of bytes from a byte array to the stream.
Namespace: SnapDB.IOAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public override void Write(
byte[] buffer,
int offset,
int count
)
Public Overrides Sub Write (
buffer As Byte(),
offset As Integer,
count As Integer
)
public:
virtual void Write(
array<unsigned char>^ buffer,
int offset,
int count
) override
function Write(buffer, offset, count);
Parameters
- buffer Byte
- The byte array containing the data to be written to the stream.
- offset Int32
- The offset in the byte array where writing will start.
- count Int32
- The number of bytes to write from the byte array.