Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.0 » QAnywhere » QAnywhere API Reference » QAnywhere .NET API reference » iAnywhere.QAnywhere.Client namespace (.NET 2.0) » QABinaryMessage interface

 

WriteBinary method

Appends a byte array value to the QABinaryMessage instance's message body.

Syntax
Visual Basic
Public Sub WriteBinary( _
   ByVal val As Byte(), _
   ByVal offset As Integer, _
   ByVal len As Integer _
)
C#
public void WriteBinary(
   byte[] val,
   int offset,
   int len
);
Parameters
  • val   The byte array value to write to the message body.

  • len   The number of bytes to write.

  • offset   The offset within the byte array to begin writing.

See also