[TIBCO.EMS .NET Admin client library 6.3 documentation]

Get the info for the queues that match the given pattern.

Namespace:  TIBCO.EMS.ADMIN
Assembly:  TIBCO.EMS.ADMIN (in TIBCO.EMS.ADMIN.dll)

Syntax

public QueueInfo[] GetQueues(
	string pattern
)
Public Function GetQueues ( _
	pattern As String _
) As QueueInfo()
public:
array<QueueInfo^>^ GetQueues(
	String^ pattern
)

Parameters

pattern
Type: System..::.String
The pattern that must be matched

Return Value

The QueueInfos that match the pattern.

Remarks

The pattern may contain the wildcards "*" and ">". See the TIBCO EMS documentation for how wildcards work in queue names. A pattern of "", ">", or null will return all the queues.

Exceptions

ExceptionCondition
TIBCO.EMS.ADMIN..::.AdminExceptionif not authorized or an error occurred.

See Also