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

SQL Anywhere 10.0.1 » QAnywhere » QAnywhere .NET API Reference » iAnywhere.QAnywhere.Client namespace (.NET 1.0) » QAManagerBase interface

BrowseMessagesByID method Next Page

BrowseMessagesByQueue method


Browses the next available messages waiting that have been sent to the given address.

Syntax

Visual Basic
Public Function BrowseMessagesByQueue( _
ByVal address As String _
) As System.Collections.IEnumerator

C#
public System.Collections.IEnumerator BrowseMessagesByQueue(
string address
);

Parameters
Return value

An enumerator over the available messages.

Remarks

The messages are just being browsed, so they cannot be acknowledged. Because browsing messages allocates native resources, you should call the Reset() method of the enumerator when you are done with it. If it is not called, the native resources will not be freed until this QAManagerBase object is freed.

Use QAManagerBase.GetMessage to receive messages so they can be acknowledged.

See also