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

SQL Anywhere 11.0.1 (Français) » QAnywhere » QAnywhere Reference » QAnywhere .NET API reference » QAnywhere .NET API for clients (.NET 2.0) » QABinaryMessage interface

 

WriteString method

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

Syntax
Visual Basic
Public Sub WriteString( _
   ByVal val As String _
)
C#
public void WriteString(
   string  val
);
Parameters
  • val   The string value to write to the message body.

Remarks

Note: The receiving application needs to invoke ReadString for each WriteString invocation. See ReadString method.

Note: The UTF-8 representation of the string to be written can be at most 32767 bytes.

See also